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

  /external/clang/tools/libclang/
CXCursor.cpp 76 SmallVector<SourceLocation, 16> SelLocs;
77 cast<ObjCMethodDecl>(D)->getSelectorLocs(SelLocs);
79 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin());
80 if (I != SelLocs.end())
81 SelectorIdIndex = I - SelLocs.begin();
494 SmallVector<SourceLocation, 16> SelLocs;
495 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
497 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin())
    [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 461 SourceLocation *SelLocs = D->getStoredSelLocs();
464 Writer.AddSourceLocation(SelLocs[i], Record);
    [all...]
ASTReaderDecl.cpp 699 SmallVector<SourceLocation, 16> SelLocs;
700 SelLocs.reserve(NumStoredSelLocs);
702 SelLocs.push_back(ReadSourceLocation(Record, Idx));
704 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]

Completed in 77 milliseconds