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.cpp3251 ArrayRef<SourceLocation> SelLocs,
3267 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3276 ArrayRef<SourceLocation> SelLocs,
3291 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3300 ArrayRef<SourceLocation> SelLocs,
3316 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
3321 ArrayRef<SourceLocation> SelLocs,
3341 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3352 ArrayRef<SourceLocation> SelLocs,
3244 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
3271 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
3295 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
3320 initArgsAndSelLocs(ArrayRef<Expr *> Args, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK) argument
3345 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
3370 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
3393 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
3423 alloc(ASTContext &C, ArrayRef<Expr *> Args, SourceLocation RBraceLoc, ArrayRef<SourceLocation> SelLocs, Selector Sel, SelectorLocationsKind &SelLocsK) argument
[all...]
H A DDeclObjC.cpp510 ArrayRef<SourceLocation> SelLocs) {
513 if (Params.empty() && SelLocs.empty())
517 sizeof(SourceLocation) * SelLocs.size();
520 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
524 SmallVectorImpl<SourceLocation> &SelLocs) const {
526 SelLocs.push_back(getSelectorLoc(i));
531 ArrayRef<SourceLocation> SelLocs) {
532 assert((!SelLocs.empty() || isImplicit()) &&
537 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Param
508 setParamsAndSelLocs(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
529 setMethodParams(ASTContext &C, ArrayRef<ParmVarDecl*> Params, ArrayRef<SourceLocation> SelLocs) argument
[all...]
H A DASTImporter.cpp3266 SmallVector<SourceLocation, 12> SelLocs; local
3267 D->getSelectorLocs(SelLocs);
3268 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.h927 ArrayRef<SourceLocation> SelLocs,
937 ArrayRef<SourceLocation> SelLocs,
947 ArrayRef<SourceLocation> SelLocs,
955 ArrayRef<SourceLocation> SelLocs,
996 ArrayRef<SourceLocation> SelLocs,
1048 ArrayRef<SourceLocation> SelLocs,
1082 ArrayRef<SourceLocation> SelLocs,
1332 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
H A DDeclObjC.h224 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 =
/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();
473 SmallVector<SourceLocation, 16> SelLocs; local
474 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
476 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,
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp670 SmallVector<SourceLocation, 16> SelLocs; local
671 SelLocs.reserve(NumStoredSelLocs);
673 SelLocs.push_back(ReadSourceLocation(Record, Idx));
675 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
H A DASTWriterDecl.cpp451 SourceLocation *SelLocs = D->getStoredSelLocs(); local
454 Writer.AddSourceLocation(SelLocs[i], Record);
/external/clang/lib/Sema/
H A DTreeTransform.h8651 SmallVector<SourceLocation, 16> SelLocs;
8652 E->getSelectorLocs(SelLocs);
8655 SelLocs,
8676 SmallVector<SourceLocation, 16> SelLocs;
8677 E->getSelectorLocs(SelLocs);
8680 SelLocs,

Completed in 294 milliseconds