clang
8.0.0
|
Precise control over the wrapping of braces. More...
#include "clang/Format/Format.h"
Public Attributes | |
bool | AfterClass |
Wrap class definitions. More... | |
bool | AfterControlStatement |
Wrap control statements (if /for /while /switch /..). More... | |
bool | AfterEnum |
Wrap enum definitions. More... | |
bool | AfterFunction |
Wrap function definitions. More... | |
bool | AfterNamespace |
Wrap namespace definitions. More... | |
bool | AfterObjCDeclaration |
Wrap ObjC definitions (interfaces, implementations...). More... | |
bool | AfterStruct |
Wrap struct definitions. More... | |
bool | AfterUnion |
Wrap union definitions. More... | |
bool | AfterExternBlock |
Wrap extern blocks. More... | |
bool | BeforeCatch |
Wrap before catch . More... | |
bool | BeforeElse |
Wrap before else . More... | |
bool | IndentBraces |
Indent the wrapped braces themselves. More... | |
bool | SplitEmptyFunction |
If false , empty function body can be put on a single line. More... | |
bool | SplitEmptyRecord |
If false , empty record (e.g. More... | |
bool | SplitEmptyNamespace |
If false , empty namespace body can be put on a single line. More... | |
Precise control over the wrapping of braces.
bool clang::format::FormatStyle::BraceWrappingFlags::AfterClass |
Wrap class definitions.
Definition at line 633 of file Format.h.
Referenced by clang::format::expandPresets(), and clang::format::ShouldBreakBeforeBrace().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterControlStatement |
Wrap control statements (if
/for
/while
/switch
/..).
Definition at line 651 of file Format.h.
Referenced by clang::format::CompoundStatementIndenter::CompoundStatementIndenter(), and clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterEnum |
Wrap enum definitions.
Definition at line 663 of file Format.h.
Referenced by clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterExternBlock |
Wrap extern blocks.
Definition at line 741 of file Format.h.
Referenced by clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterFunction |
Wrap function definitions.
Definition at line 679 of file Format.h.
Referenced by clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterNamespace |
Wrap namespace definitions.
Definition at line 695 of file Format.h.
Referenced by clang::format::expandPresets(), and clang::format::ShouldBreakBeforeBrace().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterObjCDeclaration |
Wrap ObjC definitions (interfaces, implementations...).
AfterControlStatement
flag. Definition at line 699 of file Format.h.
Referenced by clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterStruct |
Wrap struct definitions.
Definition at line 713 of file Format.h.
Referenced by clang::format::expandPresets(), and clang::format::ShouldBreakBeforeBrace().
bool clang::format::FormatStyle::BraceWrappingFlags::AfterUnion |
Wrap union definitions.
Definition at line 727 of file Format.h.
Referenced by clang::format::expandPresets(), and clang::format::ShouldBreakBeforeBrace().
bool clang::format::FormatStyle::BraceWrappingFlags::BeforeCatch |
Wrap before catch
.
Definition at line 757 of file Format.h.
Referenced by clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::BeforeElse |
Wrap before else
.
Definition at line 771 of file Format.h.
Referenced by clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::IndentBraces |
Indent the wrapped braces themselves.
Definition at line 773 of file Format.h.
Referenced by clang::format::CompoundStatementIndenter::CompoundStatementIndenter().
bool clang::format::FormatStyle::BraceWrappingFlags::SplitEmptyFunction |
If false
, empty function body can be put on a single line.
This option is used only if the opening brace of the function has already been wrapped, i.e. the AfterFunction
brace wrapping mode is set, and the function could/should not be put on a single line (as per AllowShortFunctionsOnASingleLine
and constructor formatting options).
Definition at line 785 of file Format.h.
Referenced by clang::format::expandPresets().
bool clang::format::FormatStyle::BraceWrappingFlags::SplitEmptyNamespace |
bool clang::format::FormatStyle::BraceWrappingFlags::SplitEmptyRecord |
If false
, empty record (e.g.
class, struct or union) body can be put on a single line. This option is used only if the opening brace of the record has already been wrapped, i.e. the AfterClass
(for classes) brace wrapping mode is set.
Definition at line 796 of file Format.h.
Referenced by clang::format::expandPresets().