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

References

tools/clang/include/clang/Format/Format.h
 2057            BreakBeforeTernaryOperators == R.BreakBeforeTernaryOperators &&
 2057            BreakBeforeTernaryOperators == R.BreakBeforeTernaryOperators &&
tools/clang/lib/Format/ContinuationIndenter.cpp
  352        (Style.BreakBeforeTernaryOperators && Current.is(TT_ConditionalExpr) &&
  354        (!Style.BreakBeforeTernaryOperators &&
  670         (P->is(TT_ConditionalExpr) && Style.BreakBeforeTernaryOperators);
 1105   if (Style.BreakBeforeTernaryOperators && Current.is(tok::question))
 1107   if (!Style.BreakBeforeTernaryOperators && Current.isNot(tok::colon)) {
tools/clang/lib/Format/Format.cpp
  444                    Style.BreakBeforeTernaryOperators);
  744   LLVMStyle.BreakBeforeTernaryOperators = true;
  929     GoogleStyle.BreakBeforeTernaryOperators = false;
 1077   Style.BreakBeforeTernaryOperators = true;
tools/clang/lib/Format/TokenAnnotator.cpp
 3376     return Style.BreakBeforeTernaryOperators;
 3378     return !Style.BreakBeforeTernaryOperators;
tools/clang/unittests/Format/FormatTest.cpp
 5805   Style.BreakBeforeTernaryOperators = false;
12430   CHECK_PARSE_BOOL(BreakBeforeTernaryOperators);
12925   Style.BreakBeforeTernaryOperators = true;
12927   EXPECT_FALSE(Style.BreakBeforeTernaryOperators);
12929   Style.BreakBeforeTernaryOperators = true;
12938   EXPECT_FALSE(Style.BreakBeforeTernaryOperators);