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

References

tools/clang/unittests/Format/FormatTest.cpp
  563   AllowSimpleBracedStatements.ColumnLimit = 40;
  564   AllowSimpleBracedStatements.AllowShortBlocksOnASingleLine =
  567   AllowSimpleBracedStatements.AllowShortIfStatementsOnASingleLine =
  569   AllowSimpleBracedStatements.AllowShortLoopsOnASingleLine = true;
  571   AllowSimpleBracedStatements.BreakBeforeBraces = FormatStyle::BS_Custom;
  572   AllowSimpleBracedStatements.BraceWrapping.AfterFunction = true;
  573   AllowSimpleBracedStatements.BraceWrapping.SplitEmptyRecord = false;
  575   verifyFormat("if (true) {}", AllowSimpleBracedStatements);
  576   verifyFormat("if constexpr (true) {}", AllowSimpleBracedStatements);
  577   verifyFormat("if CONSTEXPR (true) {}", AllowSimpleBracedStatements);
  578   verifyFormat("while (true) {}", AllowSimpleBracedStatements);
  579   verifyFormat("for (;;) {}", AllowSimpleBracedStatements);
  580   verifyFormat("if (true) { f(); }", AllowSimpleBracedStatements);
  581   verifyFormat("if constexpr (true) { f(); }", AllowSimpleBracedStatements);
  582   verifyFormat("if CONSTEXPR (true) { f(); }", AllowSimpleBracedStatements);
  583   verifyFormat("while (true) { f(); }", AllowSimpleBracedStatements);
  584   verifyFormat("for (;;) { f(); }", AllowSimpleBracedStatements);
  588                AllowSimpleBracedStatements);
  592                AllowSimpleBracedStatements);
  597                AllowSimpleBracedStatements);
  603                AllowSimpleBracedStatements);
  608                AllowSimpleBracedStatements);
  612                AllowSimpleBracedStatements);
  616                AllowSimpleBracedStatements);
  618   AllowSimpleBracedStatements.AllowShortIfStatementsOnASingleLine =
  620   verifyFormat("if (true) {}", AllowSimpleBracedStatements);
  624                AllowSimpleBracedStatements);
  630                AllowSimpleBracedStatements);
  632   AllowSimpleBracedStatements.AllowShortLoopsOnASingleLine = false;
  633   verifyFormat("while (true) {}", AllowSimpleBracedStatements);
  637                AllowSimpleBracedStatements);
  638   verifyFormat("for (;;) {}", AllowSimpleBracedStatements);
  642                AllowSimpleBracedStatements);
  644   AllowSimpleBracedStatements.AllowShortIfStatementsOnASingleLine =
  646   AllowSimpleBracedStatements.AllowShortLoopsOnASingleLine = true;
  647   AllowSimpleBracedStatements.BraceWrapping.AfterControlStatement =
  650   verifyFormat("if (true) {}", AllowSimpleBracedStatements);
  651   verifyFormat("if constexpr (true) {}", AllowSimpleBracedStatements);
  652   verifyFormat("if CONSTEXPR (true) {}", AllowSimpleBracedStatements);
  653   verifyFormat("while (true) {}", AllowSimpleBracedStatements);
  654   verifyFormat("for (;;) {}", AllowSimpleBracedStatements);
  655   verifyFormat("if (true) { f(); }", AllowSimpleBracedStatements);
  656   verifyFormat("if constexpr (true) { f(); }", AllowSimpleBracedStatements);
  657   verifyFormat("if CONSTEXPR (true) { f(); }", AllowSimpleBracedStatements);
  658   verifyFormat("while (true) { f(); }", AllowSimpleBracedStatements);
  659   verifyFormat("for (;;) { f(); }", AllowSimpleBracedStatements);
  664                AllowSimpleBracedStatements);
  669                AllowSimpleBracedStatements);
  675                AllowSimpleBracedStatements);
  683                AllowSimpleBracedStatements);
  685   AllowSimpleBracedStatements.AllowShortIfStatementsOnASingleLine =
  687   verifyFormat("if (true) {}", AllowSimpleBracedStatements);
  692                AllowSimpleBracedStatements);
  700                AllowSimpleBracedStatements);
  702   AllowSimpleBracedStatements.AllowShortLoopsOnASingleLine = false;
  703   verifyFormat("while (true) {}", AllowSimpleBracedStatements);
  708                AllowSimpleBracedStatements);
  709   verifyFormat("for (;;) {}", AllowSimpleBracedStatements);
  714                AllowSimpleBracedStatements);