Searched defs:SelLocs (Results 1 - 9 of 9) 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 DDeclObjC.cpp593 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, Param
591 setParamsAndSelLocs(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
612 setMethodParams(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
[all...]
H A DASTImporter.cpp3306 SmallVector<SourceLocation, 12> SelLocs; local
3307 D->getSelectorLocs(SelLocs);
3308 ToMethod->setMethodParams(Importer.getToContext(), ToParams, SelLocs);
H A DExpr.cpp3273 ArrayRef<SourceLocation> SelLocs,
3289 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3298 ArrayRef<SourceLocation> SelLocs,
3313 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3322 ArrayRef<SourceLocation> SelLocs,
3338 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3343 ArrayRef<SourceLocation> SelLocs,
3363 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3374 ArrayRef<SourceLocation> SelLocs,
3266 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
3293 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
3317 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
3342 initArgsAndSelLocs(ArrayRef<Expr *> Args, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK) argument
3367 Create(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
3392 Create(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
3415 Create(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
3445 alloc(ASTContext &C, ArrayRef<Expr *> Args, SourceLocation RBraceLoc, ArrayRef<SourceLocation> SelLocs, Selector Sel, SelectorLocationsKind &SelLocsK) argument
[all...]
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp461 SourceLocation *SelLocs = D->getStoredSelLocs(); local
464 Writer.AddSourceLocation(SelLocs[i], Record);
H A DASTReaderDecl.cpp699 SmallVector<SourceLocation, 16> SelLocs; local
700 SelLocs.reserve(NumStoredSelLocs);
702 SelLocs.push_back(ReadSourceLocation(Record, Idx));
704 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
/external/clang/tools/libclang/
H A DCXCursor.cpp76 SmallVector<SourceLocation, 16> SelLocs; local
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; local
495 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
497 I=std::find(SelLocs.begin(), SelLocs
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp1286 SmallVector<SourceLocation, 1> SelLocs; local
1287 OldMsg->getSelectorLocs(SelLocs);
1297 SelLocs,
1310 SelLocs,
1326 SelLocs,
1362 SmallVector<SourceLocation, 1> SelLocs; local
1373 SelLocs,
1386 SelLocs,
1402 SelLocs,
H A DRewriteModernObjC.cpp1484 SmallVector<SourceLocation, 1> SelLocs; local
1485 OldMsg->getSelectorLocs(SelLocs);
1495 SelLocs,
1508 SelLocs,
1524 SelLocs,
1568 SmallVector<SourceLocation, 1> SelLocs; local
1578 SelLocs,
1591 SelLocs,
1607 SelLocs,

Completed in 1013 milliseconds