HomeSort by: relevance | last modified time | path
    Searched refs:IdentifierLocs (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaModule.cpp 364 SmallVector<SourceLocation, 2> IdentifierLocs;
373 IdentifierLocs.push_back(Path[I].second);
380 IdentifierLocs.push_back(SourceLocation());
385 Mod, IdentifierLocs);
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 5066 ArrayRef<SourceLocation> IdentifierLocs)
5069 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
5071 std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(),
5084 ArrayRef<SourceLocation> IdentifierLocs) {
5086 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size()))
5087 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterDecl.cpp 1423 ArrayRef<SourceLocation> IdentifierLocs = D->getIdentifierLocs();
1424 Record.push_back(!IdentifierLocs.empty());
1425 if (IdentifierLocs.empty()) {
1429 for (unsigned I = 0, N = IdentifierLocs.size(); I != N; ++I)
1430 Record.AddSourceLocation(IdentifierLocs[I]);
1431 Record.push_back(IdentifierLocs.size());
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 4429 ArrayRef<SourceLocation> IdentifierLocs);
4454 ArrayRef<SourceLocation> IdentifierLocs);

Completed in 33 milliseconds