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

References

tools/clang/lib/ARCMigrate/ObjCMT.cpp
 1185   SelectorTable::constructSetterSelector(PP.getIdentifierTable(),
 1208         SelectorTable::constructSetterSelector(PP.getIdentifierTable(),
tools/clang/lib/Frontend/ASTUnit.cpp
  812                               PP.getIdentifierTable(), PP.getSelectorTable(),
tools/clang/lib/Frontend/ChainedIncludesSource.cpp
  171       PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(),
tools/clang/lib/Frontend/CompilerInstance.cpp
  485                                  PP.getIdentifierTable(), PP.getSelectorTable(),
 1872         auto &II = PP->getIdentifierTable().get(
tools/clang/lib/Frontend/FrontendAction.cpp
  648     PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(),
  889     PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(),
  987     CI.getPreprocessor().getIdentifierTable().PrintStats();
tools/clang/lib/Lex/Lexer.cpp
 2099   PP->setCodeCompletionIdentifierInfo(&PP->getIdentifierTable().get(
tools/clang/lib/Parse/ParseDeclCXX.cpp
 2216     Ident_final = &PP.getIdentifierTable().get("final");
 2218       Ident_GNU_final = &PP.getIdentifierTable().get("__final");
 2220       Ident_sealed = &PP.getIdentifierTable().get("sealed");
 2221     Ident_override = &PP.getIdentifierTable().get("override");
 3890         return &PP.getIdentifierTable().get("_Clang");
 3915       return &PP.getIdentifierTable().get(Spelling);
tools/clang/lib/Parse/ParseExprCXX.cpp
 2568       II = &PP.getIdentifierTable().get(Literal.getUDSuffix());
tools/clang/lib/Parse/ParseObjc.cpp
  759               PP.getIdentifierTable(), PP.getSelectorTable(),
 1025       IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok);
tools/clang/lib/Parse/Parser.cpp
  454     ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
  455     ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
  456     ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
  457     ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
  458     ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
  459     ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
  460     ObjCTypeQuals[objc_nonnull] = &PP.getIdentifierTable().get("nonnull");
  461     ObjCTypeQuals[objc_nullable] = &PP.getIdentifierTable().get("nullable");
  463       = &PP.getIdentifierTable().get("null_unspecified");
  474   Ident_super = &PP.getIdentifierTable().get("super");
  480     Ident_vector = &PP.getIdentifierTable().get("vector");
  481     Ident_bool = &PP.getIdentifierTable().get("bool");
  484     Ident_pixel = &PP.getIdentifierTable().get("pixel");
tools/clang/lib/Sema/SemaCoroutine.cpp
  109   LookupResult R(S, &S.PP.getIdentifierTable().get("promise_type"), KwLoc,
  151   LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_handle"),
  319   LookupResult Found(S, &S.PP.getIdentifierTable().get("from_address"), Loc,
  348   DeclarationNameInfo NameInfo(&S.PP.getIdentifierTable().get(Name), Loc);
  497                              &PP.getIdentifierTable().get("__promise"), T,
  905   LookupResult Result(S, &S.PP.getIdentifierTable().get("nothrow"), Loc,
 1449       &S.PP.getIdentifierTable().get("__coro_gro"), GroType,
 1574                           &PP.getIdentifierTable().get("coroutine_traits"),
tools/clang/lib/Sema/SemaDeclAttr.cpp
 1677     Module = &S.PP.getIdentifierTable().get(ModuleName);
tools/clang/lib/Sema/SemaDeclCXX.cpp
  979   LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait),
 9487       LookupResult Result(*this, &PP.getIdentifierTable().get("experimental"),
 9637                                          &PP.getIdentifierTable().get("std"),
 9680             &PP.getIdentifierTable().get("initializer_list") ||
 9712   LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
tools/clang/lib/Sema/SemaExprCXX.cpp
  551     IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
  676     IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID");
 2709                                       &PP.getIdentifierTable().get("bad_alloc"),
 2718         &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true);
tools/clang/lib/Sema/SemaExprMember.cpp
 1511             SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(),
 1563         SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(),
tools/clang/lib/Sema/SemaExprObjC.cpp
 1897     SelectorTable::constructSetterSelector(PP.getIdentifierTable(),
 2056         PP.getIdentifierTable(), PP.getSelectorTable(), &propertyName);
tools/clang/lib/Sema/SemaOpenMP.cpp
 1104   IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
tools/clang/lib/Sema/SemaPseudoObject.cpp
  650         SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(),
  673         IdentifierInfo *AltMember = &S.PP.getIdentifierTable().get(PropertyName);
tools/clang/lib/Sema/SemaStmt.cpp
 2060   IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
 2175       &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc);
 2176   DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"),
tools/clang/lib/Serialization/ASTReader.cpp
 3178         PP.getIdentifierTable().setExternalIdentifierLookup(this);
 4257       auto &II = PP.getIdentifierTable().getOwn(Key);
 4299     for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(),
 4300                                 IdEnd = PP.getIdentifierTable().end();
 8898     auto &II = PP.getIdentifierTable().get(StringRef(Str, StrLen));
 9719   return PP.getIdentifierTable();
tools/clang/lib/Serialization/ASTWriter.cpp
 3787     for (const auto &ID : PP.getIdentifierTable())
 4968     for (const auto &ID : PP.getIdentifierTable()) {
tools/clang/tools/clang-import-test/clang-import-test.cpp
  218       CI.getPreprocessor().getIdentifierTable(), ST, BC);
tools/clang/tools/libclang/CIndex.cpp
 7495               PP.getIdentifierTable().get(Tok.getRawIdentifier());
 8859   IdentifierInfo &II = PP.getIdentifierTable().get(Tok.getRawIdentifier());
tools/clang/unittests/Lex/PPCallbacksTest.cpp
  281     ASTContext Context(OpenCLLangOpts, SourceMgr, PP.getIdentifierTable(),
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
  601   builtin_context.initializeBuiltins(PP.getIdentifierTable(),
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
  426                   .getIdentifierTable()