Searched refs:SelLocs (Results 1 - 13 of 13) sorted by relevance

/external/clang/lib/AST/
H A DSelectorLocationsKind.cpp71 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, Arg
70 hasStandardSelLocs(Selector Sel, ArrayRef<SourceLocation> SelLocs, ArrayRef<T *> Args, SourceLocation EndLoc) argument
97 hasStandardSelectorLocs(Selector Sel, ArrayRef<SourceLocation> SelLocs, ArrayRef<Expr *> Args, SourceLocation EndLoc) argument
114 hasStandardSelectorLocs(Selector Sel, ArrayRef<SourceLocation> SelLocs, ArrayRef<ParmVarDecl *> Args, SourceLocation EndLoc) argument
[all...]
H A DExpr.cpp3372 ArrayRef<SourceLocation> SelLocs,
3389 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3398 ArrayRef<SourceLocation> SelLocs,
3413 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3422 ArrayRef<SourceLocation> SelLocs,
3438 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3443 ArrayRef<SourceLocation> SelLocs,
3463 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3474 ArrayRef<SourceLocation> SelLocs,
3365 ObjCMessageExpr(QualType T, ExprValueKind VK, SourceLocation LBracLoc, SourceLocation SuperLoc, bool IsInstanceSuper, QualType SuperType, Selector Sel, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3393 ObjCMessageExpr(QualType T, ExprValueKind VK, SourceLocation LBracLoc, TypeSourceInfo *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3417 ObjCMessageExpr(QualType T, ExprValueKind VK, SourceLocation LBracLoc, Expr *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3442 initArgsAndSelLocs(ArrayRef<Expr *> Args, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK) argument
3467 Create(const ASTContext &Context, QualType T, ExprValueKind VK, SourceLocation LBracLoc, SourceLocation SuperLoc, bool IsInstanceSuper, QualType SuperType, Selector Sel, ArrayRef<SourceLocation> SelLocs, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3492 Create(const ASTContext &Context, QualType T, ExprValueKind VK, SourceLocation LBracLoc, TypeSourceInfo *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3515 Create(const ASTContext &Context, QualType T, ExprValueKind VK, SourceLocation LBracLoc, Expr *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3545 alloc(const ASTContext &C, ArrayRef<Expr *> Args, SourceLocation RBraceLoc, ArrayRef<SourceLocation> SelLocs, Selector Sel, SelectorLocationsKind &SelLocsK) argument
[all...]
H A DDeclObjC.cpp686 ArrayRef<SourceLocation> SelLocs) {
689 if (Params.empty() && SelLocs.empty())
693 sizeof(SourceLocation) * SelLocs.size();
696 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
700 SmallVectorImpl<SourceLocation> &SelLocs) const {
702 SelLocs.push_back(getSelectorLoc(i));
707 ArrayRef<SourceLocation> SelLocs) {
708 assert((!SelLocs.empty() || isImplicit()) &&
713 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Param
684 setParamsAndSelLocs(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
705 setMethodParams(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
[all...]
H A DASTImporter.cpp3298 SmallVector<SourceLocation, 12> SelLocs; local
3299 D->getSelectorLocs(SelLocs);
3300 ToMethod->setMethodParams(Importer.getToContext(), ToParams, SelLocs);
/external/clang/include/clang/AST/
H A DSelectorLocationsKind.h45 /// \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,
H A DExprObjC.h941 ArrayRef<SourceLocation> SelLocs,
951 ArrayRef<SourceLocation> SelLocs,
961 ArrayRef<SourceLocation> SelLocs,
969 ArrayRef<SourceLocation> SelLocs,
1010 ArrayRef<SourceLocation> SelLocs,
1062 ArrayRef<SourceLocation> SelLocs,
1096 ArrayRef<SourceLocation> SelLocs,
1346 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
H A DDeclObjC.h224 ArrayRef<SourceLocation> SelLocs);
312 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
377 /// If the method is implicit (not coming from source) \p SelLocs is
381 ArrayRef<SourceLocation> SelLocs =
/external/clang/tools/libclang/
H A DCXCursor.cpp85 SmallVector<SourceLocation, 16> SelLocs; local
86 cast<ObjCMethodDecl>(D)->getSelectorLocs(SelLocs);
88 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin());
89 if (I != SelLocs.end())
90 SelectorIdIndex = I - SelLocs.begin();
506 SmallVector<SourceLocation, 16> SelLocs; local
507 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
509 I=std::find(SelLocs.begin(), SelLocs
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp1480 SmallVector<SourceLocation, 1> SelLocs; local
1481 OldMsg->getSelectorLocs(SelLocs);
1491 SelLocs,
1504 SelLocs,
1520 SelLocs,
1564 SmallVector<SourceLocation, 1> SelLocs; local
1574 SelLocs,
1587 SelLocs,
1603 SelLocs,
H A DRewriteObjC.cpp1264 SmallVector<SourceLocation, 1> SelLocs; local
1265 OldMsg->getSelectorLocs(SelLocs);
1275 SelLocs,
1288 SelLocs,
1304 SelLocs,
1340 SmallVector<SourceLocation, 1> SelLocs; local
1351 SelLocs,
1364 SelLocs,
1380 SelLocs,
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp751 SmallVector<SourceLocation, 16> SelLocs; local
752 SelLocs.reserve(NumStoredSelLocs);
754 SelLocs.push_back(ReadSourceLocation(Record, Idx));
756 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
H A DASTWriterDecl.cpp488 SourceLocation *SelLocs = D->getStoredSelLocs(); local
491 Writer.AddSourceLocation(SelLocs[i], Record);
/external/clang/lib/Sema/
H A DTreeTransform.h9482 SmallVector<SourceLocation, 16> SelLocs;
9483 E->getSelectorLocs(SelLocs);
9486 SelLocs,
9507 SmallVector<SourceLocation, 16> SelLocs;
9508 E->getSelectorLocs(SelLocs);
9511 SelLocs,

Completed in 1693 milliseconds