Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DDecl.cpp3042 ArrayRef<SourceLocation> IdentifierLocs) in ImportDecl() argument
3046 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); in ImportDecl()
3048 memcpy(StoredLocs, IdentifierLocs.data(), in ImportDecl()
3049 IdentifierLocs.size() * sizeof(SourceLocation)); in ImportDecl()
3062 ArrayRef<SourceLocation> IdentifierLocs) { in Create() argument
3064 IdentifierLocs.size() * sizeof(SourceLocation)); in Create()
3065 return new (Mem) ImportDecl(DC, StartLoc, Imported, IdentifierLocs); in Create()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp984 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs(); in VisitImportDecl() local
985 Record.push_back(!IdentifierLocs.empty()); in VisitImportDecl()
986 if (IdentifierLocs.empty()) { in VisitImportDecl()
990 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I) in VisitImportDecl()
991 Writer.AddSourceLocation(IdentifierLocs[I], Record); in VisitImportDecl()
992 Record.push_back(IdentifierLocs.size()); in VisitImportDecl()
/external/clang/include/clang/AST/
DDecl.h3250 ArrayRef<SourceLocation> IdentifierLocs);
3261 ArrayRef<SourceLocation> IdentifierLocs);
/external/clang/lib/Sema/
DSemaDecl.cpp11030 llvm::SmallVector<SourceLocation, 2> IdentifierLocs; in ActOnModuleImport() local
11039 IdentifierLocs.push_back(Path[I].second); in ActOnModuleImport()
11045 Mod, IdentifierLocs); in ActOnModuleImport()