Searched refs:IdentifierLocs (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/clang/lib/Sema/ |
D | SemaModule.cpp | 364 SmallVector<SourceLocation, 2> IdentifierLocs; in ActOnModuleImport() local 373 IdentifierLocs.push_back(Path[I].second); in ActOnModuleImport() 380 IdentifierLocs.push_back(SourceLocation()); in ActOnModuleImport() 385 Mod, IdentifierLocs); in ActOnModuleImport()
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 1258 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs(); in VisitImportDecl() local 1259 Record.push_back(!IdentifierLocs.empty()); in VisitImportDecl() 1260 if (IdentifierLocs.empty()) { in VisitImportDecl() 1264 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I) in VisitImportDecl() 1265 Record.AddSourceLocation(IdentifierLocs[I]); in VisitImportDecl() 1266 Record.push_back(IdentifierLocs.size()); in VisitImportDecl()
|
/external/clang/lib/AST/ |
D | Decl.cpp | 4226 ArrayRef<SourceLocation> IdentifierLocs) in ImportDecl() argument 4230 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); in ImportDecl() 4232 std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(), in ImportDecl() 4246 ArrayRef<SourceLocation> IdentifierLocs) { in Create() argument 4248 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size())) in Create() 4249 ImportDecl(DC, StartLoc, Imported, IdentifierLocs); in Create()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 1423 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs(); in VisitImportDecl() local 1424 Record.push_back(!IdentifierLocs.empty()); in VisitImportDecl() 1425 if (IdentifierLocs.empty()) { in VisitImportDecl() 1429 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I) in VisitImportDecl() 1430 Record.AddSourceLocation(IdentifierLocs[I]); in VisitImportDecl() 1431 Record.push_back(IdentifierLocs.size()); in VisitImportDecl()
|
/external/llvm-project/clang/lib/AST/ |
D | Decl.cpp | 5034 ArrayRef<SourceLocation> IdentifierLocs) in ImportDecl() argument 5037 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); in ImportDecl() 5039 std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(), in ImportDecl() 5052 ArrayRef<SourceLocation> IdentifierLocs) { in Create() argument 5054 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size())) in Create() 5055 ImportDecl(DC, StartLoc, Imported, IdentifierLocs); in Create()
|
/external/clang/include/clang/AST/ |
D | Decl.h | 3748 ArrayRef<SourceLocation> IdentifierLocs); 3759 ArrayRef<SourceLocation> IdentifierLocs);
|
/external/llvm-project/clang/include/clang/AST/ |
D | Decl.h | 4409 ArrayRef<SourceLocation> IdentifierLocs); 4434 ArrayRef<SourceLocation> IdentifierLocs);
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 15083 SmallVector<SourceLocation, 2> IdentifierLocs; in ActOnModuleImport() local 15092 IdentifierLocs.push_back(Path[I].second); in ActOnModuleImport() 15098 Mod, IdentifierLocs); in ActOnModuleImport()
|