reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/unittests/Format/FormatTest.cpp
 4380   Style.BreakConstructorInitializers = FormatStyle::BCIS_BeforeComma;
 4381   Style.ColumnLimit = 60;
 4382   Style.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
 4383   Style.AllowAllConstructorInitializersOnNextLine = true;
 4384   Style.BinPackParameters = false;
 4388     Style.AllowAllParametersOfDeclarationOnNextLine = i & 1;
 4389     Style.AllowAllArgumentsOnNextLine = i & 2;
 4391     Style.AllowAllConstructorInitializersOnNextLine = true;
 4392     Style.BreakConstructorInitializers = FormatStyle::BCIS_BeforeComma;
 4395                  Style);
 4396     verifyFormat("Constructor() : a(a), b(b) {}", Style);
 4398     Style.AllowAllConstructorInitializersOnNextLine = false;
 4402                  Style);
 4403     verifyFormat("Constructor() : a(a), b(b) {}", Style);
 4405     Style.BreakConstructorInitializers = FormatStyle::BCIS_BeforeColon;
 4406     Style.AllowAllConstructorInitializersOnNextLine = true;
 4409                  Style);
 4411     Style.AllowAllConstructorInitializersOnNextLine = false;
 4415                  Style);
 4417     Style.BreakConstructorInitializers = FormatStyle::BCIS_AfterColon;
 4418     Style.AllowAllConstructorInitializersOnNextLine = true;
 4421                  Style);
 4423     Style.AllowAllConstructorInitializersOnNextLine = false;
 4427                  Style);
 4433   Style.BreakConstructorInitializers = FormatStyle::BCIS_BeforeComma;
 4434   Style.AllowAllParametersOfDeclarationOnNextLine = true;
 4435   Style.AllowAllConstructorInitializersOnNextLine = false;
 4440                Style);
 4442   Style.AllowAllConstructorInitializersOnNextLine = true;
 4448                Style);
 4450   Style.AllowAllParametersOfDeclarationOnNextLine = false;
 4451   Style.AllowAllConstructorInitializersOnNextLine = false;
 4457                Style);
 4459   Style.BreakConstructorInitializers = FormatStyle::BCIS_BeforeColon;
 4461   Style.AllowAllParametersOfDeclarationOnNextLine = true;
 4466                Style);
 4468   Style.AllowAllConstructorInitializersOnNextLine = true;
 4474                Style);
 4476   Style.AllowAllParametersOfDeclarationOnNextLine = false;
 4477   Style.AllowAllConstructorInitializersOnNextLine = false;
 4483                Style);
 4485   Style.BreakConstructorInitializers = FormatStyle::BCIS_AfterColon;
 4486   Style.AllowAllParametersOfDeclarationOnNextLine = true;
 4491                Style);
 4493   Style.AllowAllConstructorInitializersOnNextLine = true;
 4499                Style);
 4501   Style.AllowAllParametersOfDeclarationOnNextLine = false;
 4502   Style.AllowAllConstructorInitializersOnNextLine = false;
 4508                Style);