HomeSort by relevance Sort by last modified time
    Searched defs:SelLocs (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 445 SourceLocation *SelLocs = D->getStoredSelLocs();
448 Writer.AddSourceLocation(SelLocs[i], Record);
    [all...]
ASTReaderDecl.cpp 667 SmallVector<SourceLocation, 16> SelLocs;
668 SelLocs.reserve(NumStoredSelLocs);
670 SelLocs.push_back(ReadSourceLocation(Record, Idx));
672 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
    [all...]
  /external/clang/tools/libclang/
CXCursor.cpp 75 SmallVector<SourceLocation, 16> SelLocs;
76 cast<ObjCMethodDecl>(D)->getSelectorLocs(SelLocs);
78 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin());
79 if (I != SelLocs.end())
80 SelectorIdIndex = I - SelLocs.begin();
470 SmallVector<SourceLocation, 16> SelLocs;
471 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
473 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin())
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]

Completed in 979 milliseconds