Home | History | Annotate | Download | only in Format

Lines Matching refs:BreakBeforeBraces

2325   Style.BreakBeforeBraces = FormatStyle::BS_Attach;
2332 Style.BreakBeforeBraces = FormatStyle::BS_Stroustrup;
2354 Style.BreakBeforeBraces = FormatStyle::BS_Allman;
2364 Style.BreakBeforeBraces = FormatStyle::BS_GNU;
3867 Style.BreakBeforeBraces = FormatStyle::BS_Allman;
4645 AfterType.BreakBeforeBraces = FormatStyle::BS_Stroustrup;
8370 LinuxBraceStyle.BreakBeforeBraces = FormatStyle::BS_Linux;
8409 StroustrupBraceStyle.BreakBeforeBraces = FormatStyle::BS_Stroustrup;
8471 AllmanBraceStyle.BreakBeforeBraces = FormatStyle::BS_Allman;
8657 GNUBraceStyle.BreakBeforeBraces = FormatStyle::BS_GNU;
9034 Style.BreakBeforeBraces = FormatStyle::BS_Stroustrup;
9035 CHECK_PARSE("BreakBeforeBraces: Attach", BreakBeforeBraces,
9037 CHECK_PARSE("BreakBeforeBraces: Linux", BreakBeforeBraces,
9039 CHECK_PARSE("BreakBeforeBraces: Stroustrup", BreakBeforeBraces,
9041 CHECK_PARSE("BreakBeforeBraces: Allman", BreakBeforeBraces,
9043 CHECK_PARSE("BreakBeforeBraces: GNU", BreakBeforeBraces, FormatStyle::BS_GNU);
9123 Style.BreakBeforeBraces = FormatStyle::BS_Linux;
9127 "BreakBeforeBraces: Allman\n"
9134 "BreakBeforeBraces: Stroustrup\n"
9140 EXPECT_EQ(FormatStyle::BS_Stroustrup, Style.BreakBeforeBraces);