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

References

tools/clang/lib/Format/ContinuationIndenter.cpp
  547   if (Current.is(tok::equal) &&
  548       (State.Line->First->is(tok::kw_for) || Current.NestingLevel == 0) &&
  563   unsigned Spaces = Current.SpacesRequiredBefore + ExtraSpaces;
  582     Whitespaces.replaceWhitespace(Current, /*Newlines=*/0, Spaces,
  588       Current.is(TT_InheritanceColon))
  594   if (Current.is(TT_SelectorName) &&
  599     unsigned FirstColonPos = State.Column + Spaces + Current.ColumnWidth;
  600     if (Current.LongestObjCSelectorName == 0)
  602     else if (MinIndent + Current.LongestObjCSelectorName > FirstColonPos)
  603       State.Stack.back().ColonPos = MinIndent + Current.LongestObjCSelectorName;
  625       Current.FakeLParens.size() > 0 &&
  626       Current.FakeLParens.back() > prec::Unknown)
  633       (Current.isNot(TT_LineComment) || Previous.BlockKind == BK_BracedInit))
  635   if (State.Stack.back().AvoidBinPacking && startsNextParameter(Current, Style))
  637   if (startsSegmentOfBuilderTypeCall(Current) &&
  641   if (Current.is(TT_LambdaArrow) && Style.Language == FormatStyle::LK_Java)
  643   if (Current.isMemberAccess() && Previous.is(tok::r_paren) &&
  658   const FormatToken *P = Current.getPreviousNonComment();
  659   if (!Current.is(tok::comment) && P &&
  682   if (Current.isNot(tok::comment) && Previous.is(tok::l_paren) &&
  689   } else if (!Current.isOneOf(tok::comment, tok::caret) &&
  704               Current.StartsBinaryExpression)) {