Searched defs:SelLocs (Results 1 - 10 of 10) 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 DExprObjC.cpp121 ArrayRef<SourceLocation> SelLocs,
135 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
142 ArrayRef<SourceLocation> SelLocs,
153 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
159 Selector Sel, ArrayRef<SourceLocation> SelLocs,
171 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
176 ArrayRef<SourceLocation> SelLocs,
196 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
204 ArrayRef<SourceLocation> SelLocs,
117 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
139 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
157 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
175 initArgsAndSelLocs(ArrayRef<Expr *> Args, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK) argument
201 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
221 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
240 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
265 alloc(const ASTContext &C, ArrayRef<Expr *> Args, SourceLocation RBraceLoc, ArrayRef<SourceLocation> SelLocs, Selector Sel, SelectorLocationsKind &SelLocsK) argument
[all...]
H A DDeclObjC.cpp797 ArrayRef<SourceLocation> SelLocs) {
800 if (Params.empty() && SelLocs.empty())
808 sizeof(SourceLocation) * SelLocs.size();
811 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
815 SmallVectorImpl<SourceLocation> &SelLocs) const {
817 SelLocs.push_back(getSelectorLoc(i));
822 ArrayRef<SourceLocation> SelLocs) {
823 assert((!SelLocs.empty() || isImplicit()) &&
828 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Param
795 setParamsAndSelLocs(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
820 setMethodParams(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
[all...]
H A DASTImporter.cpp3650 SmallVector<SourceLocation, 12> SelLocs; local
3651 D->getSelectorLocs(SelLocs);
3652 ToMethod->setMethodParams(Importer.getToContext(), ToParams, SelLocs);
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp646 SourceLocation *SelLocs = D->getStoredSelLocs(); local
649 Record.AddSourceLocation(SelLocs[i]);
H A DASTReaderDecl.cpp936 SmallVector<SourceLocation, 16> SelLocs; local
937 SelLocs.reserve(NumStoredSelLocs);
939 SelLocs.push_back(ReadSourceLocation(Record, Idx));
941 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
/external/clang/tools/libclang/
H A DCXCursor.cpp89 SmallVector<SourceLocation, 16> SelLocs; local
90 cast<ObjCMethodDecl>(D)->getSelectorLocs(SelLocs);
92 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin());
93 if (I != SelLocs.end())
94 SelectorIdIndex = I - SelLocs.begin();
524 SmallVector<SourceLocation, 16> SelLocs; local
525 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
527 I=std::find(SelLocs.begin(), SelLocs
[all...]
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1256 SmallVector<SourceLocation, 1> SelLocs; local
1257 OldMsg->getSelectorLocs(SelLocs);
1267 SelLocs,
1280 SelLocs,
1296 SelLocs,
1332 SmallVector<SourceLocation, 1> SelLocs; local
1343 SelLocs,
1356 SelLocs,
1372 SelLocs,
H A DRewriteModernObjC.cpp1442 SmallVector<SourceLocation, 1> SelLocs; local
1443 OldMsg->getSelectorLocs(SelLocs);
1453 SelLocs,
1466 SelLocs,
1482 SelLocs,
1526 SmallVector<SourceLocation, 1> SelLocs; local
1536 SelLocs,
1549 SelLocs,
1565 SelLocs,
/external/clang/lib/Sema/
H A DTreeTransform.h11139 SmallVector<SourceLocation, 16> SelLocs;
11140 E->getSelectorLocs(SelLocs);
11143 SelLocs,
11152 SmallVector<SourceLocation, 16> SelLocs; local
11153 E->getSelectorLocs(SelLocs);
11156 SelLocs,
11178 SmallVector<SourceLocation, 16> SelLocs;
11179 E->getSelectorLocs(SelLocs);
11182 SelLocs,

Completed in 407 milliseconds