Home
last modified time | relevance | path

Searched refs:IdentifierLocs (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp679 SmallVector<SourceLocation, 2> IdentifierLocs; in ActOnModuleImport() local
686 IdentifierLocs.push_back(SourceLocation()); in ActOnModuleImport()
689 IdentifierLocs.push_back(Path[0].getLoc()); in ActOnModuleImport()
699 IdentifierLocs.push_back(Path[I].getLoc()); in ActOnModuleImport()
704 Mod, IdentifierLocs); in ActOnModuleImport()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1808 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs(); in VisitImportDecl() local
1809 Record.push_back(!IdentifierLocs.empty()); in VisitImportDecl()
1810 if (IdentifierLocs.empty()) { in VisitImportDecl()
1814 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I) in VisitImportDecl()
1815 Record.AddSourceLocation(IdentifierLocs[I]); in VisitImportDecl()
1816 Record.push_back(IdentifierLocs.size()); in VisitImportDecl()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5914 ArrayRef<SourceLocation> IdentifierLocs) in ImportDecl() argument
5917 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); in ImportDecl()
5919 llvm::uninitialized_copy(IdentifierLocs, StoredLocs); in ImportDecl()
5931 ArrayRef<SourceLocation> IdentifierLocs) { in Create() argument
5933 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size())) in Create()
5934 ImportDecl(DC, StartLoc, Imported, IdentifierLocs); in Create()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4981 ArrayRef<SourceLocation> IdentifierLocs);
5006 ArrayRef<SourceLocation> IdentifierLocs);