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

References

tools/clang/lib/Format/ContinuationIndenter.cpp
  249       (Line->Type == LT_PreprocessorDirective ||
  250        Line->Type == LT_ImportStatement))
  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;
 1015       if (shouldIndentWrappedSelectorName(Style, State.Line->Type))
 1371         (State.Line->Type != LT_ObjCDecl && Style.BinPackParameters) ||
 1372         (State.Line->Type == LT_ObjCDecl && ObjCBinPackProtocolList);
 1680   } else if (State.Line->Type != LT_ImportStatement) {
 1776     if (State.Line->Type == LT_PreprocessorDirective)
tools/clang/lib/Format/TokenAnnotator.cpp
 2026            (NextNonCommentLine->Type == LT_PreprocessorDirective ||
 2027             NextNonCommentLine->Type == LT_ImportStatement))
 2052   Line.Type = Parser.parseLine();
 2059     Line.Type = LT_Invalid;
 2061   if (Line.Type == LT_Invalid)
 2068     Line.Type = LT_ObjCMethodDecl;
 2070     Line.Type = LT_ObjCDecl;
 2072     Line.Type = LT_ObjCProperty;
 2442   if (Line.Type == LT_ObjCDecl && Left.is(tok::l_paren) && Left.Previous &&
 2518   if (Style.ObjCSpaceAfterProperty && Line.Type == LT_ObjCProperty &&
 2536   if (Right.is(tok::less) && Line.Type == LT_ObjCDecl) {
 2653     return Line.Type == LT_ObjCDecl || Left.is(tok::semi) ||
 2658              Left.isIf(Line.Type != LT_PreprocessorDirective) ||
 2667             Line.Type != LT_PreprocessorDirective);
 2861   if (Line.Type == LT_ObjCMethodDecl) {
 2870   if (Line.Type == LT_ObjCProperty &&
 3047   if (Style.JavaScriptWrapImports || Line.Type != LT_ImportStatement) {
 3432   if (Left.is(tok::r_paren) && Line.Type == LT_ObjCProperty)
 3449       Line.Type == LT_VirtualFunctionDecl && Left.NestingLevel == 0)
tools/clang/lib/Format/UnwrappedLineFormatter.cpp
  205     if (I[1]->Type == LT_Invalid || I[1]->First->MustBreakBefore)
  593         if (I + 2 == E || I[2]->Type == LT_Invalid)
  893     if (State.Line->Type == LT_ObjCMethodDecl)
 1100     if (ShouldFormat && TheLine.Type == LT_Invalid && Status) {
 1106     if (ShouldFormat && TheLine.Type != LT_Invalid) {
 1117           (TheLine.Type == LT_ImportStatement &&
 1234       (Line.Type == LT_PreprocessorDirective ||
 1235        Line.Type == LT_ImportStatement))