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

  /external/clang/lib/AST/
SelectorLocationsKind.cpp 71 ArrayRef<SourceLocation> SelLocs,
76 for (i = 0; i != SelLocs.size(); ++i) {
77 if (SelLocs[i] != getStandardSelectorLoc(i, Sel, /*WithArgSpace=*/false,
81 if (i == SelLocs.size())
85 for (i = 0; i != SelLocs.size(); ++i) {
86 if (SelLocs[i] != getStandardSelectorLoc(i, Sel, /*WithArgSpace=*/true,
98 ArrayRef<SourceLocation> SelLocs,
101 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc);
115 ArrayRef<SourceLocation> SelLocs,
118 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc)
    [all...]
DeclObjC.cpp 446 ArrayRef<SourceLocation> SelLocs) {
449 if (Params.empty() && SelLocs.empty())
453 sizeof(SourceLocation) * SelLocs.size();
456 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
460 SmallVectorImpl<SourceLocation> &SelLocs) const {
462 SelLocs.push_back(getSelectorLoc(i));
467 ArrayRef<SourceLocation> SelLocs) {
468 assert((!SelLocs.empty() || isImplicit()) &&
473 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params
    [all...]
Expr.cpp     [all...]
ASTImporter.cpp     [all...]
  /external/clang/include/clang/AST/
SelectorLocationsKind.h 45 /// \brief Returns true if all \arg SelLocs are in a "standard" location.
47 ArrayRef<SourceLocation> SelLocs,
63 /// \brief Returns true if all \arg SelLocs are in a "standard" location.
65 ArrayRef<SourceLocation> SelLocs,
ExprObjC.h     [all...]
DeclObjC.h 222 ArrayRef<SourceLocation> SelLocs);
321 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
366 /// If the method is implicit (not coming from source) \arg SelLocs is
370 ArrayRef<SourceLocation> 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/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/lib/Serialization/
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...]
ASTWriterDecl.cpp 445 SourceLocation *SelLocs = D->getStoredSelLocs();
448 Writer.AddSourceLocation(SelLocs[i], Record);
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 522 milliseconds