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

References

tools/clang/tools/extra/clang-tidy/readability/AvoidConstParamsInDecls.cpp
   62   while (!RawLexer.LexFromRawLexer(Tok)) {
   63     if (Sources.isBeforeInTranslationUnit(Range.getEnd(), Tok.getLocation()))
   65     if (Tok.is(tok::raw_identifier)) {
   67           Sources.getCharacterData(Tok.getLocation()), Tok.getLength()));
   67           Sources.getCharacterData(Tok.getLocation()), Tok.getLength()));
   68       Tok.setIdentifierInfo(&Info);
   69       Tok.setKind(Info.getTokenID());
   71     if (Tok.is(tok::kw_const))
   72       ConstTok = Tok;