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 427 ArrayRef<SourceLocation> SelLocs) {
430 if (Params.empty() && SelLocs.empty())
434 sizeof(SourceLocation) * SelLocs.size();
437 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
441 SmallVectorImpl<SourceLocation> &SelLocs) const {
443 SelLocs.push_back(getSelectorLoc(i));
448 ArrayRef<SourceLocation> SelLocs) {
449 assert((!SelLocs.empty() || isImplicit()) &&
454 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params, EndLoc)
    [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 213 ArrayRef<SourceLocation> SelLocs);
308 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
353 /// If the method is implicit (not coming from source) \arg SelLocs is
357 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();
466 SmallVector<SourceLocation, 16> SelLocs;
467 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
469 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin())
    [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 661 SmallVector<SourceLocation, 16> SelLocs;
662 SelLocs.reserve(NumStoredSelLocs);
664 SelLocs.push_back(ReadSourceLocation(Record, Idx));
666 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
    [all...]
ASTWriterDecl.cpp 443 SourceLocation *SelLocs = D->getStoredSelLocs();
446 Writer.AddSourceLocation(SelLocs[i], Record);
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 275 milliseconds