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

References

tools/clang/tools/extra/clang-tidy/readability/BracesAroundStatementsCheck.cpp
   60   assert(Loc.isValid());
   62   tok::TokenKind TokKind = getTokenKind(Loc, SM, Context);
   70   Loc = Lexer::getLocForEndOfToken(Loc, 0, SM, Context->getLangOpts());
   70   Loc = Lexer::getLocForEndOfToken(Loc, 0, SM, Context->getLangOpts());
   73     Loc = forwardSkipWhitespaceAndComments(Loc, SM, Context);
   73     Loc = forwardSkipWhitespaceAndComments(Loc, SM, Context);
   74     tok::TokenKind TokKind = getTokenKind(Loc, SM, Context);
   76       Loc = Lexer::getLocForEndOfToken(Loc, 0, SM, Context->getLangOpts());
   76       Loc = Lexer::getLocForEndOfToken(Loc, 0, SM, Context->getLangOpts());
   80     assert(Loc.isValid());
   81     while (isHorizontalWhitespace(*SM.getCharacterData(Loc))) {
   82       Loc = Loc.getLocWithOffset(1);
   82       Loc = Loc.getLocWithOffset(1);
   85     if (isVerticalWhitespace(*SM.getCharacterData(Loc))) {
   89     tok::TokenKind TokKind = getTokenKind(Loc, SM, Context);
   96         Lexer::getLocForEndOfToken(Loc, 0, SM, Context->getLangOpts());
   97     SourceRange TokRange(Loc, TokEndLoc);
  107     Loc = TokEndLoc;
  109   return Loc;