| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | Parser.cpp | 483 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in"); in Initialize() 484 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out"); in Initialize() 485 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout"); in Initialize() 486 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway"); in Initialize() 488 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref"); in Initialize() 492 = &PP.getIdentifierTable().get("null_unspecified"); in Initialize() 504 Ident_super = &PP.getIdentifierTable().get("super"); in Initialize() 511 Ident_vector = &PP.getIdentifierTable().get("vector"); in Initialize() 512 Ident_bool = &PP.getIdentifierTable().get("bool"); in Initialize() 513 Ident_Bool = &PP.getIdentifierTable().get("_Bool"); in Initialize() [all …]
|
| H A D | ParseDeclCXX.cpp | 2289 Ident_final = &PP.getIdentifierTable().get("final"); in isCXX11VirtSpecifier() 2291 Ident_GNU_final = &PP.getIdentifierTable().get("__final"); in isCXX11VirtSpecifier() 2293 Ident_sealed = &PP.getIdentifierTable().get("sealed"); in isCXX11VirtSpecifier() 2294 Ident_abstract = &PP.getIdentifierTable().get("abstract"); in isCXX11VirtSpecifier() 2296 Ident_override = &PP.getIdentifierTable().get("override"); in isCXX11VirtSpecifier() 4115 return &PP.getIdentifierTable().get("_Clang"); in TryParseCXX11AttributeIdentifier() 4140 return &PP.getIdentifierTable().get(Spelling); in TryParseCXX11AttributeIdentifier()
|
| H A D | ParseObjc.cpp | 762 PP.getIdentifierTable(), PP.getSelectorTable(), in ParseObjCInterfaceDeclList() 1034 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok); in ParseObjCSelectorPiece()
|
| H A D | ParseExprCXX.cpp | 2643 II = &PP.getIdentifierTable().get(Literal.getUDSuffix()); in ParseUnqualifiedIdOperator()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCoroutine.cpp | 111 LookupResult R(S, &S.PP.getIdentifierTable().get("promise_type"), KwLoc, in lookupPromiseType() 153 LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_handle"), in lookupCoroutineHandleType() 301 LookupResult Found(S, &S.PP.getIdentifierTable().get("from_address"), Loc, in buildCoroutineHandle() 330 DeclarationNameInfo NameInfo(&S.PP.getIdentifierTable().get(Name), Loc); in buildMemberCall() 525 &PP.getIdentifierTable().get("__promise"), T, in buildCoroutinePromise() 1000 LookupResult Result(S, &S.PP.getIdentifierTable().get("nothrow"), Loc, in buildStdNoThrowDeclRef() 1544 &S.PP.getIdentifierTable().get("__coro_gro"), GroType, in makeGroDeclAndReturnStmt() 1670 &PP.getIdentifierTable().get("coroutine_traits"), in lookupCoroutineTraits()
|
| H A D | SemaExprMember.cpp | 1509 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in LookupMemberExpr() 1561 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in LookupMemberExpr()
|
| H A D | SemaPseudoObject.cpp | 642 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in findSetter() 665 IdentifierInfo *AltMember = &S.PP.getIdentifierTable().get(PropertyName); in findSetter()
|
| H A D | SemaStmt.cpp | 2403 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name); in BuildForRangeVarDecl() 2528 &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc); in BuildNonArrayForRange() 2529 DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"), in BuildNonArrayForRange()
|
| H A D | SemaExprObjC.cpp | 2056 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in HandleExprPropertyRefExpr() 2216 PP.getIdentifierTable(), PP.getSelectorTable(), &propertyName); in ActOnClassPropertyRefExpr()
|
| H A D | SemaExprCXX.cpp | 651 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info"); in ActOnCXXTypeid() 2951 &PP.getIdentifierTable().get("bad_alloc"), in DeclareGlobalNewDelete() 2960 &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true); in DeclareGlobalNewDelete()
|
| H A D | SemaDeclCXX.cpp | 1016 LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait), in lookupStdTypeTraitMember() 11096 LookupResult Result(*this, &PP.getIdentifierTable().get("experimental"), in lookupStdExperimentalNamespace() 11253 &PP.getIdentifierTable().get("std"), in getOrCreateStdNamespace() 11296 &PP.getIdentifierTable().get("initializer_list") || in isStdInitializerList() 11328 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), in LookupStdInitializerList()
|
| H A D | SemaOpenMP.cpp | 1399 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name); in buildVarDecl() 12681 TileCntDecl->setDeclName(&PP.getIdentifierTable().get(TileCntName)); in ActOnOpenMPTileDirective() 12988 InnerIVDecl->setDeclName(&PP.getIdentifierTable().get(InnerIVName)); in ActOnOpenMPUnrollDirective() 18102 IdentifierInfo *II = &S.PP.getIdentifierTable().get("omp_depend_t"); in findOMPDependT() 20193 IdentifierInfo *II = &S.PP.getIdentifierTable().get("omp_event_handle_t"); in findOMPEventHandleT() 21083 IdentifierInfo &II = S.PP.getIdentifierTable().get("omp_alloctrait_t"); in findOMPAlloctraitT()
|
| H A D | SemaDeclAttr.cpp | 1749 Module = &S.PP.getIdentifierTable().get(ModuleName); in handleOwnershipAttr()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ChainedIncludesSource.cpp | 173 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in createChainedIncludesSource()
|
| H A D | FrontendAction.cpp | 664 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in BeginSourceFile() 905 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in BeginSourceFile() 1003 CI.getPreprocessor().getIdentifierTable().PrintStats(); in EndSourceFile()
|
| H A D | CompilerInstance.cpp | 553 PP.getIdentifierTable(), PP.getSelectorTable(), in createASTContext() 1921 auto &II = PP->getIdentifierTable().get( in loadModule()
|
| H A D | ASTUnit.cpp | 809 PP.getIdentifierTable(), PP.getSelectorTable(), in LoadFromASTFile()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 685 RemoveAllCppKeywords(m_compiler->getPreprocessor().getIdentifierTable()); in ClangExpressionParser() 710 builtin_context.initializeBuiltins(PP.getIdentifierTable(), in ClangExpressionParser()
|
| H A D | ClangModulesDeclVendor.cpp | 445 .getIdentifierTable() in ForEachMacro()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | Preprocessor.h | 930 IdentifierTable &getIdentifierTable() { return Identifiers; } in getIdentifierTable() function 931 const IdentifierTable &getIdentifierTable() const { return Identifiers; } in getIdentifierTable() function
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 1175 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty() 1198 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ASTReader.h | 2279 IdentifierTable &getIdentifierTable();
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 976 II = &Reader.getIdentifierTable().getOwn(k); in ReadData() 3216 PP.getIdentifierTable().setExternalIdentifierLookup(this); in ReadASTBlock() 4332 auto &II = PP.getIdentifierTable().getOwn(Key); in ReadAST() 4372 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(), in ReadAST() 4373 IdEnd = PP.getIdentifierTable().end(); in ReadAST() 8546 auto &II = PP.getIdentifierTable().get(Key); in DecodeIdentifierInfo() 9052 IdentifierTable &ASTReader::getIdentifierTable() { in getIdentifierTable() function in ASTReader 9053 return PP.getIdentifierTable(); in getIdentifierTable()
|
| H A D | ASTWriter.cpp | 2201 for (auto &Id : PP.getIdentifierTable()) in WritePreprocessor() 3430 for (const auto &ID : PP.getIdentifierTable()) in WriteIdentifierTable() 4563 for (const auto &ID : PP.getIdentifierTable()) { in WriteASTCore()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Lex/ |
| H A D | Lexer.cpp | 2122 PP->setCodeCompletionIdentifierInfo(&PP->getIdentifierTable().get( in codeCompleteIncludedFile()
|