Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParser.cpp431 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in"); in Initialize()
432 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out"); in Initialize()
433 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout"); in Initialize()
434 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway"); in Initialize()
435 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy"); in Initialize()
436 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref"); in Initialize()
444 Ident_super = &PP.getIdentifierTable().get("super"); in Initialize()
447 Ident_vector = &PP.getIdentifierTable().get("vector"); in Initialize()
448 Ident_pixel = &PP.getIdentifierTable().get("pixel"); in Initialize()
449 Ident_bool = &PP.getIdentifierTable().get("bool"); in Initialize()
H A DParseDeclCXX.cpp1947 Ident_final = &PP.getIdentifierTable().get("final"); in isCXX11VirtSpecifier()
1949 Ident_sealed = &PP.getIdentifierTable().get("sealed"); in isCXX11VirtSpecifier()
1950 Ident_override = &PP.getIdentifierTable().get("override"); in isCXX11VirtSpecifier()
3402 return &PP.getIdentifierTable().get(Spelling); in TryParseCXX11AttributeIdentifier()
H A DParseObjc.cpp471 PP.getIdentifierTable(), PP.getSelectorTable(), in ParseObjCInterfaceDeclList()
681 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok.data()); in ParseObjCSelectorPiece()
H A DParseExprCXX.cpp2263 II = &PP.getIdentifierTable().get(Literal.getUDSuffix()); in ParseUnqualifiedIdOperator()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DFrontendAction.cpp376 PP.getBuiltinInfo().InitializeBuiltins(PP.getIdentifierTable(), in BeginSourceFile()
476 CI.getPreprocessor().getIdentifierTable().PrintStats(); in EndSourceFile()
H A DChainedIncludesSource.cpp171 PP.getBuiltinInfo().InitializeBuiltins(PP.getIdentifierTable(), in createChainedIncludesSource()
H A DCompilerInstance.cpp389 PP.getIdentifierTable(), PP.getSelectorTable(), in createASTContext()
H A DASTUnit.cpp714 PP.getIdentifierTable(), PP.getSelectorTable(), in LoadFromASTFile()
/minix3/external/bsd/llvm/dist/clang/unittests/Lex/
H A DPPCallbacksTest.cpp216 PP.getIdentifierTable(), PP.getSelectorTable(), in PragmaOpenCLExtensionCall()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaExprMember.cpp1438 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in LookupMemberExpr()
1487 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in LookupMemberExpr()
H A DSemaPseudoObject.cpp605 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(), in findSetter()
628 IdentifierInfo *AltMember = &S.PP.getIdentifierTable().get(PropertyName); in findSetter()
H A DSemaStmt.cpp1894 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name); in BuildForRangeVarDecl()
1998 &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc); in BuildNonArrayForRange()
1999 DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"), in BuildNonArrayForRange()
H A DSemaExprCXX.cpp471 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info"); in ActOnCXXTypeid()
555 IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID"); in ActOnCXXUuidof()
2013 &PP.getIdentifierTable().get("bad_alloc"), in DeclareGlobalNewDelete()
H A DSemaExprObjC.cpp1650 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in HandleExprPropertyRefExpr()
1804 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in ActOnClassPropertyRefExpr()
H A DSemaDeclCXX.cpp7262 &PP.getIdentifierTable().get("std"), in getOrCreateStdNamespace()
7305 &PP.getIdentifierTable().get("initializer_list") || in isStdInitializerList()
7337 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), in LookupStdInitializerList()
H A DSemaOpenMP.cpp2518 IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name); in BuildVarDecl()
H A DSemaDeclAttr.cpp1355 Module = &S.PP.getIdentifierTable().get(ModuleName); in handleOwnershipAttr()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp3458 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), in WriteIdentifierTable()
3459 IDEnd = PP.getIdentifierTable().end(); in WriteIdentifierTable()
4268 IdentifierTable &Table = PP.getIdentifierTable(); in WriteASTCore()
4281 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), in WriteASTCore()
4282 IDEnd = PP.getIdentifierTable().end(); in WriteASTCore()
4488 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), in WriteASTCore()
4489 IDEnd = PP.getIdentifierTable().end(); in WriteASTCore()
H A DASTReader.cpp723 II = &Reader.getIdentifierTable().getOwn(k); in ReadData()
759 II = &Reader.getIdentifierTable().getOwn(StringRef(k)); in ReadData()
2765 PP.getIdentifierTable().setExternalIdentifierLookup(this); in ReadASTBlock()
3697 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(), in ReadAST()
3698 IdEnd = PP.getIdentifierTable().end(); in ReadAST()
7446 = &PP.getIdentifierTable().get(StringRef(Str, StrLen)); in DecodeIdentifierInfo()
8123 IdentifierTable &ASTReader::getIdentifierTable() { in getIdentifierTable() function in ASTReader
8124 return PP.getIdentifierTable(); in getIdentifierTable()
/minix3/external/bsd/llvm/dist/clang/include/clang/Lex/
H A DPreprocessor.h509 IdentifierTable &getIdentifierTable() { return Identifiers; } in getIdentifierTable() function
/minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/
H A DObjCMT.cpp1178 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty()
1201 SelectorTable::constructSetterSelector(PP.getIdentifierTable(), in migrateProperty()
/minix3/external/bsd/llvm/dist/clang/include/clang/Serialization/
H A DASTReader.h2135 IdentifierTable &getIdentifierTable();
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp5985 PP.getIdentifierTable().get(Tok.getRawIdentifier()); in annotatePreprocessorTokens()
7132 IdentifierInfo &II = PP.getIdentifierTable().get(Tok.getRawIdentifier()); in checkForMacroInMacroDefinition()