Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp572 SmallVector<SourceLocation, 2> IdentifierLocs; in ActOnModuleImport() local
579 IdentifierLocs.push_back(SourceLocation()); in ActOnModuleImport()
582 IdentifierLocs.push_back(Path[0].second); in ActOnModuleImport()
592 IdentifierLocs.push_back(Path[I].second); in ActOnModuleImport()
597 Mod, IdentifierLocs); in ActOnModuleImport()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1583 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs(); in VisitImportDecl() local
1584 Record.push_back(!IdentifierLocs.empty()); in VisitImportDecl()
1585 if (IdentifierLocs.empty()) { in VisitImportDecl()
1589 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I) in VisitImportDecl()
1590 Record.AddSourceLocation(IdentifierLocs[I]); in VisitImportDecl()
1591 Record.push_back(IdentifierLocs.size()); in VisitImportDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5610 ArrayRef<SourceLocation> IdentifierLocs) in ImportDecl() argument
5613 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); in ImportDecl()
5615 std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(), in ImportDecl()
5628 ArrayRef<SourceLocation> IdentifierLocs) { in Create() argument
5630 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size())) in Create()
5631 ImportDecl(DC, StartLoc, Imported, IdentifierLocs); in Create()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4772 ArrayRef<SourceLocation> IdentifierLocs);
4797 ArrayRef<SourceLocation> IdentifierLocs);