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

/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp1061 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs(); local
1062 Record.push_back(!IdentifierLocs.empty());
1063 if (IdentifierLocs.empty()) {
1067 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I)
1068 Writer.AddSourceLocation(IdentifierLocs[I], Record);
1069 Record.push_back(IdentifierLocs.size());
/external/clang/lib/AST/
H A DDecl.cpp3847 ArrayRef<SourceLocation> IdentifierLocs)
3851 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
3853 memcpy(StoredLocs, IdentifierLocs.data(),
3854 IdentifierLocs.size() * sizeof(SourceLocation));
3867 ArrayRef<SourceLocation> IdentifierLocs) {
3868 return new (C, DC, IdentifierLocs.size() * sizeof(SourceLocation))
3869 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
3845 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported, ArrayRef<SourceLocation> IdentifierLocs) argument
3865 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, Module *Imported, ArrayRef<SourceLocation> IdentifierLocs) argument
/external/clang/include/clang/AST/
H A DDecl.h3521 ArrayRef<SourceLocation> IdentifierLocs);
3532 ArrayRef<SourceLocation> IdentifierLocs);
/external/clang/lib/Sema/
H A DSemaDecl.cpp13378 SmallVector<SourceLocation, 2> IdentifierLocs; local
13387 IdentifierLocs.push_back(Path[I].second);
13393 Mod, IdentifierLocs);

Completed in 151 milliseconds