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

References

tools/clang/lib/Format/UnwrappedLineFormatter.cpp
  459     if (Limit == 0 || I + 1 == E ||
  460         I[1]->First->isOneOf(tok::kw_case, tok::kw_default))
  462     if (I[0]->Last->is(tok::l_brace) || I[1]->First->is(tok::l_brace))
  462     if (I[0]->Last->is(tok::l_brace) || I[1]->First->is(tok::l_brace))
  467     bool InPPDirective = I[0]->InPPDirective;
  468     const unsigned Level = I[0]->Level;
  470       if (I + 1 + NumStmts == E)
  472       const AnnotatedLine *Line = I[1 + NumStmts];
  484         SmallVectorImpl<AnnotatedLine *>::const_iterator J = I + 2 + NumStmts;
  498       Length += I[1 + NumStmts]->Last->TotalLength + 1; // 1 for the space.