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

References

tools/clang/tools/extra/clang-tidy/utils/LexerUtils.cpp
  105   while (!RawLexer.LexFromRawLexer(Tok) &&
  106          Range.getEnd() != Tok.getLocation() &&
  107          !SM.isBeforeInTranslationUnit(Range.getEnd(), Tok.getLocation())) {
  108     if (Tok.is(tok::raw_identifier)) {
  110           StringRef(SM.getCharacterData(Tok.getLocation()), Tok.getLength()));
  110           StringRef(SM.getCharacterData(Tok.getLocation()), Tok.getLength()));
  111       Tok.setIdentifierInfo(&Info);
  112       Tok.setKind(Info.getTokenID());
  114     if (Tok.is(tok::kw_const) && !FirstConstTok)
  115       FirstConstTok = Tok;
  116     LastTokInRange = Tok;