/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...] |
Expr.cpp | [all...] |
DeclObjC.cpp | 593 ArrayRef<SourceLocation> SelLocs) { 596 if (Params.empty() && SelLocs.empty()) 600 sizeof(SourceLocation) * SelLocs.size(); 603 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs()); 607 SmallVectorImpl<SourceLocation> &SelLocs) const { 609 SelLocs.push_back(getSelectorLoc(i)); 614 ArrayRef<SourceLocation> SelLocs) { 615 assert((!SelLocs.empty() || isImplicit()) && 620 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params [all...] |
ASTImporter.cpp | [all...] |
/external/clang/include/clang/AST/ |
SelectorLocationsKind.h | 45 /// \brief Returns true if all \p SelLocs are in a "standard" location. 47 ArrayRef<SourceLocation> SelLocs, 63 /// \brief Returns true if all \p SelLocs are in a "standard" location. 65 ArrayRef<SourceLocation> SelLocs,
|
ExprObjC.h | [all...] |
DeclObjC.h | 224 ArrayRef<SourceLocation> SelLocs); 323 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const; 368 /// If the method is implicit (not coming from source) \p SelLocs is 372 ArrayRef<SourceLocation> SelLocs = [all...] |
/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/Rewrite/Frontend/ |
RewriteObjC.cpp | [all...] |
RewriteModernObjC.cpp | [all...] |
/external/clang/lib/Serialization/ |
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...] |
ASTWriterDecl.cpp | 461 SourceLocation *SelLocs = D->getStoredSelLocs(); 464 Writer.AddSourceLocation(SelLocs[i], Record); [all...] |
/external/clang/lib/Sema/ |
TreeTransform.h | [all...] |