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

References

tools/clang/lib/Format/ContinuationIndenter.cpp
  252   State.Line = Line;
  373       (State.Column + State.Line->Last->TotalLength - Previous.TotalLength >
  382       State.Line->startsWith(TT_ObjCMethodSpecifier))
  548       (State.Line->First->is(tok::kw_for) || Current.NestingLevel == 0) &&
  569       (State.Line->Type == LT_PreprocessorDirective ||
  570        State.Line->Type == LT_ImportStatement)) {
  788             (shouldIndentWrappedSelectorName(Style, State.Line->Type)
  845         State.Line->InPPDirective && State.Line->Type != LT_ImportStatement;
  845         State.Line->InPPDirective && State.Line->Type != LT_ImportStatement;
  898          State.Line->MustBeDeclaration) ||
  900          !State.Line->MustBeDeclaration) ||
  938       State.Line->First->is(tok::kw_enum))
  939     return (Style.IndentWidth * State.Line->First->IndentLevel) +
 1015       if (shouldIndentWrappedSelectorName(Style, State.Line->Type))
 1371         (State.Line->Type != LT_ObjCDecl && Style.BinPackParameters) ||
 1372         (State.Line->Type == LT_ObjCDecl && ObjCBinPackProtocolList);
 1376         (State.Line->MustBeDeclaration && !BinPackDeclaration) ||
 1377         (!State.Line->MustBeDeclaration && !Style.BinPackArguments) ||
 1436        (Current.is(tok::r_brace) && State.NextToken != State.Line->First) ||
 1680   } else if (State.Line->Type != LT_ImportStatement) {
 1776     if (State.Line->Type == LT_PreprocessorDirective)
 1810           State.Line->InPPDirective, Encoding, Style);
 1822         State.Line->InPPDirective, Encoding, Style, Whitespaces.useCRLF());
 2213   return Style.ColumnLimit - (State.Line->InPPDirective ? 2 : 0);
tools/clang/lib/Format/UnwrappedLineFormatter.cpp
  807           /*StartOfTokenColumn=*/State.Column, State.Line->InPPDirective);
  893     if (State.Line->Type == LT_ObjCMethodDecl)