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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp364 SmallVector<SourceLocation, 2> IdentifierLocs; local
373 IdentifierLocs.push_back(Path[I].second);
380 IdentifierLocs.push_back(SourceLocation());
385 Mod, IdentifierLocs);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp4935 ArrayRef<SourceLocation> IdentifierLocs)
4938 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
4940 std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(),
4953 ArrayRef<SourceLocation> IdentifierLocs) {
4955 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size()))
4956 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1427 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs(); local
1428 Record.push_back(!IdentifierLocs.empty());
1429 if (IdentifierLocs.empty()) {
1433 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I)
1434 Record.AddSourceLocation(IdentifierLocs[I]);
1435 Record.push_back(IdentifierLocs.size());
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4379 ArrayRef<SourceLocation> IdentifierLocs);
4404 ArrayRef<SourceLocation> IdentifierLocs);

Completed in 218 milliseconds