Home
last modified time | relevance | path

Searched refs:getIdentifierTable (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParser.cpp447 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in"); in Initialize()
448 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out"); in Initialize()
449 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout"); in Initialize()
450 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway"); in Initialize()
451 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy"); in Initialize()
452 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref"); in Initialize()
456 = &PP.getIdentifierTable().get("null_unspecified"); in Initialize()
465 Ident_super = &PP.getIdentifierTable().get("super"); in Initialize()
471 Ident_vector = &PP.getIdentifierTable().get("vector"); in Initialize()
472 Ident_bool = &PP.getIdentifierTable().get("bool"); in Initialize()
[all …]
H A DParseDeclCXX.cpp2180 Ident_final = &PP.getIdentifierTable().get("final"); in isCXX11VirtSpecifier()
2182 Ident_GNU_final = &PP.getIdentifierTable().get("__final"); in isCXX11VirtSpecifier()
2184 Ident_sealed = &PP.getIdentifierTable().get("sealed"); in isCXX11VirtSpecifier()
2185 Ident_override = &PP.getIdentifierTable().get("override"); in isCXX11VirtSpecifier()
3824 return &PP.getIdentifierTable().get("_Clang"); in TryParseCXX11AttributeIdentifier()
3849 return &PP.getIdentifierTable().get(Spelling); in TryParseCXX11AttributeIdentifier()
H A DParseObjc.cpp750 PP.getIdentifierTable(), PP.getSelectorTable(), in ParseObjCInterfaceDeclList()
1016 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok); in ParseObjCSelectorPiece()
H A DParseExprCXX.cpp2383 II = &PP.getIdentifierTable().get(Literal.getUDSuffix()); in ParseUnqualifiedIdOperator()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCoroutine.cpp110 LookupResult R(S, &S.PP.getIdentifierTable().get("promise_type"), KwLoc, in lookupPromiseType()
152 LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_handle"), in lookupCoroutineHandleType()
342 LookupResult Found(S, &S.PP.getIdentifierTable().get("from_address"), Loc, in buildCoroutineHandle()
371 DeclarationNameInfo NameInfo(&S.PP.getIdentifierTable().get(Name), Loc); in buildMemberCall()
520 &PP.getIdentifierTable().get("__promise"), T, in buildCoroutinePromise()
881 LookupResult Result(S, &S.PP.getIdentifierTable().get("nothrow"), Loc, in buildStdNoThrowDeclRef()
1422 &S.PP.getIdentifierTable().get("__coro_gro"), GroType, in makeGroDeclAndReturnStmt()
1547 &PP.getIdentifierTable().get("coroutine_traits"), in lookupCoroutineTraits()
H A DSemaPseudoObject.cpp652 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in findSetter()
675 IdentifierInfo *AltMember = &S.PP.getIdentifierTable().get(PropertyName); in findSetter()
H A DSemaExprMember.cpp1494 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in LookupMemberExpr()
1546 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in LookupMemberExpr()
H A DSemaStmt.cpp2044 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name); in BuildForRangeVarDecl()
2159 &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc); in BuildNonArrayForRange()
2160 DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"), in BuildNonArrayForRange()
H A DSemaExprCXX.cpp544 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info"); in ActOnCXXTypeid()
669 IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID"); in ActOnCXXUuidof()
2715 &PP.getIdentifierTable().get("bad_alloc"), in DeclareGlobalNewDelete()
2724 &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true); in DeclareGlobalNewDelete()
H A DSemaExprObjC.cpp1878 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in HandleExprPropertyRefExpr()
2038 PP.getIdentifierTable(), PP.getSelectorTable(), &propertyName); in ActOnClassPropertyRefExpr()
H A DSemaDeclCXX.cpp951 LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait), in lookupStdTypeTraitMember()
9018 LookupResult Result(*this, &PP.getIdentifierTable().get("experimental"), in lookupStdExperimentalNamespace()
9168 &PP.getIdentifierTable().get("std"), in getOrCreateStdNamespace()
9211 &PP.getIdentifierTable().get("initializer_list") || in isStdInitializerList()
9243 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), in LookupStdInitializerList()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp648 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in BeginSourceFile()
889 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in BeginSourceFile()
981 CI.getPreprocessor().getIdentifierTable().PrintStats(); in EndSourceFile()
H A DChainedIncludesSource.cpp172 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), in createChainedIncludesSource()
H A DCompilerInstance.cpp479 PP.getIdentifierTable(), PP.getSelectorTable(), in createASTContext()
1858 auto &II = PP->getIdentifierTable().get( in loadModule()
H A DASTUnit.cpp789 PP.getIdentifierTable(), PP.getSelectorTable(), in LoadFromASTFile()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DPreprocessor.h823 IdentifierTable &getIdentifierTable() { return Identifiers; } in getIdentifierTable() function
824 const IdentifierTable &getIdentifierTable() const { return Identifiers; } in getIdentifierTable() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp392 .getIdentifierTable() in ForEachMacro()
H A DClangExpressionParser.cpp514 builtin_context.initializeBuiltins(PP.getIdentifierTable(), in ClangExpressionParser()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp1174 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty()
1197 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTContext.h96 clang::IdentifierTable *getIdentifierTable();
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp950 II = &Reader.getIdentifierTable().getOwn(k); in ReadData()
2905 PP.getIdentifierTable().setExternalIdentifierLookup(this); in ReadASTBlock()
3962 auto &II = PP.getIdentifierTable().getOwn(Key); in ReadAST()
4004 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(), in ReadAST()
4005 IdEnd = PP.getIdentifierTable().end(); in ReadAST()
8377 auto &II = PP.getIdentifierTable().get(StringRef(Str, StrLen)); in DecodeIdentifierInfo()
9126 IdentifierTable &ASTReader::getIdentifierTable() { in getIdentifierTable() function in ASTReader
9127 return PP.getIdentifierTable(); in getIdentifierTable()
H A DASTWriter.cpp2490 for (auto &Id : PP.getIdentifierTable()) in WritePreprocessor()
3733 for (const auto &ID : PP.getIdentifierTable()) in WriteIdentifierTable()
4869 for (const auto &ID : PP.getIdentifierTable()) { in WriteASTCore()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTReader.h2328 IdentifierTable &getIdentifierTable();
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DLexer.cpp2092 PP->setCodeCompletionIdentifierInfo(&PP->getIdentifierTable().get( in codeCompleteIncludedFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp852 *getIdentifierTable(), *getSelectorTable(), in getASTContext()
892 IdentifierTable *ClangASTContext::getIdentifierTable() { in getIdentifierTable() function in ClangASTContext

12