| /openbsd-src/gnu/llvm/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() 487 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy"); in Initialize() 488 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref"); in Initialize() 489 ObjCTypeQuals[objc_nonnull] = &PP.getIdentifierTable().get("nonnull"); in Initialize() 490 ObjCTypeQuals[objc_nullable] = &PP.getIdentifierTable().get("nullable"); in Initialize() 492 = &PP.getIdentifierTable().get("null_unspecified"); in Initialize() 504 Ident_super = &PP.getIdentifierTable().get("super"); in Initialize() [all …]
|
| H A D | ParseDeclCXX.cpp | 2370 Ident_final = &PP.getIdentifierTable().get("final"); in isCXX11VirtSpecifier() 2372 Ident_GNU_final = &PP.getIdentifierTable().get("__final"); in isCXX11VirtSpecifier() 2374 Ident_sealed = &PP.getIdentifierTable().get("sealed"); in isCXX11VirtSpecifier() 2375 Ident_abstract = &PP.getIdentifierTable().get("abstract"); in isCXX11VirtSpecifier() 2377 Ident_override = &PP.getIdentifierTable().get("override"); in isCXX11VirtSpecifier() 4224 return &PP.getIdentifierTable().get("_Clang"); in TryParseCXX11AttributeIdentifier() 4249 return &PP.getIdentifierTable().get(Spelling); in TryParseCXX11AttributeIdentifier()
|
| H A D | ParseObjc.cpp | 796 PP.getIdentifierTable(), PP.getSelectorTable(), in ParseObjCInterfaceDeclList() 1068 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok); in ParseObjCSelectorPiece()
|
| H A D | ParseExprCXX.cpp | 2738 II = &PP.getIdentifierTable().get(Literal.getUDSuffix()); in ParseUnqualifiedIdOperator()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaCoroutine.cpp | 106 LookupResult R(S, &S.PP.getIdentifierTable().get("promise_type"), KwLoc, in lookupPromiseType() 148 LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_handle"), in lookupCoroutineHandleType() 274 LookupResult Found(S, &S.PP.getIdentifierTable().get("from_address"), Loc, in buildCoroutineHandle() 303 DeclarationNameInfo NameInfo(&S.PP.getIdentifierTable().get(Name), Loc); in buildMemberCall() 498 &PP.getIdentifierTable().get("__promise"), T, in buildCoroutinePromise() 1016 LookupResult Result(S, &S.PP.getIdentifierTable().get("nothrow"), Loc, in buildStdNoThrowDeclRef() 1855 PP.getIdentifierTable().get("coroutine_traits"); in lookupCoroutineTraits()
|
| H A D | SemaRISCVVectorLookup.cpp | 397 IdentifierInfo &IntrinsicII = PP.getIdentifierTable().get(IDef.BuiltinName); in CreateRVVIntrinsicDecl()
|
| H A D | SemaExprMember.cpp | 1525 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in LookupMemberExpr() 1577 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 | 2449 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name); in BuildForRangeVarDecl() 2575 &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc); in BuildNonArrayForRange() 2576 DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"), in BuildNonArrayForRange()
|
| H A D | SemaExprObjC.cpp | 2054 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in HandleExprPropertyRefExpr() 2214 PP.getIdentifierTable(), PP.getSelectorTable(), &propertyName); in ActOnClassPropertyRefExpr()
|
| H A D | SemaExprCXX.cpp | 657 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info"); in ActOnCXXTypeid() 3020 &PP.getIdentifierTable().get("bad_alloc"), in DeclareGlobalNewDelete() 3037 &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true); in DeclareGlobalNewDelete()
|
| H A D | SemaDeclCXX.cpp | 1051 LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait), in lookupStdTypeTraitMember() 11393 LookupResult Result(*this, &PP.getIdentifierTable().get("experimental"), in lookupStdExperimentalNamespace() 11549 &PP.getIdentifierTable().get("std"), in getOrCreateStdNamespace() 11592 &PP.getIdentifierTable().get("initializer_list") || in isStdInitializerList() 11624 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), in LookupStdInitializerList()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | ChainedIncludesSource.cpp | 150 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in createChainedIncludesSource()
|
| H A D | FrontendAction.cpp | 700 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in BeginSourceFile() 1009 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in BeginSourceFile() 1110 CI.getPreprocessor().getIdentifierTable().PrintStats(); in EndSourceFile()
|
| H A D | CompilerInstance.cpp | 562 PP.getIdentifierTable(), PP.getSelectorTable(), in createASTContext() 2020 auto &II = PP->getIdentifierTable().get( in loadModule()
|
| H A D | ASTUnit.cpp | 836 PP.getIdentifierTable(), PP.getSelectorTable(), in LoadFromASTFile()
|
| /openbsd-src/gnu/llvm/clang/tools/clang-import-test/ |
| H A D | clang-import-test.cpp | 224 PP.getIdentifierTable(), ST, BC, PP.TUKind); in BuildASTContext()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 674 RemoveAllCppKeywords(m_compiler->getPreprocessor().getIdentifierTable()); in ClangExpressionParser() 699 builtin_context.initializeBuiltins(PP.getIdentifierTable(), in ClangExpressionParser()
|
| H A D | ClangModulesDeclVendor.cpp | 505 .getIdentifierTable() in ForEachMacro()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Lex/ |
| H A D | Preprocessor.h | 1203 IdentifierTable &getIdentifierTable() { return Identifiers; } in getIdentifierTable() function 1204 const IdentifierTable &getIdentifierTable() const { return Identifiers; } in getIdentifierTable() function
|
| /openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 1174 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty() 1197 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty()
|
| /openbsd-src/gnu/llvm/clang/lib/Lex/ |
| H A D | Preprocessor.cpp | 843 Diag(Identifier, getIdentifierTable().getFutureCompatDiagKind(II, getLangOpts())) in HandleIdentifier()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 1003 II = &Reader.getIdentifierTable().getOwn(k); in ReadData() 3241 PP.getIdentifierTable().setExternalIdentifierLookup(this); in ReadASTBlock() 4353 auto &II = PP.getIdentifierTable().getOwn(Key); in ReadAST() 4393 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(), in ReadAST() 4394 IdEnd = PP.getIdentifierTable().end(); in ReadAST() 8633 auto &II = PP.getIdentifierTable().get(Key); in DecodeIdentifierInfo() 9138 IdentifierTable &ASTReader::getIdentifierTable() { in getIdentifierTable() function in ASTReader 9139 return PP.getIdentifierTable(); in getIdentifierTable()
|
| H A D | ASTWriter.cpp | 2355 for (auto &Id : PP.getIdentifierTable()) in WritePreprocessor() 3647 for (const auto &ID : PP.getIdentifierTable()) in WriteIdentifierTable() 4869 for (const auto &ID : PP.getIdentifierTable()) { in WriteASTCore()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Serialization/ |
| H A D | ASTReader.h | 2337 IdentifierTable &getIdentifierTable();
|