Lines Matching refs:SelLocs
110 ArrayRef<SourceLocation> SelLocs, in ObjCMessageExpr() argument
121 initArgsAndSelLocs(Args, SelLocs, SelLocsK); in ObjCMessageExpr()
129 ArrayRef<SourceLocation> SelLocs, in ObjCMessageExpr() argument
138 initArgsAndSelLocs(Args, SelLocs, SelLocsK); in ObjCMessageExpr()
145 Selector Sel, ArrayRef<SourceLocation> SelLocs, in ObjCMessageExpr() argument
154 initArgsAndSelLocs(Args, SelLocs, SelLocsK); in ObjCMessageExpr()
160 ArrayRef<SourceLocation> SelLocs, in initArgsAndSelLocs() argument
170 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs()); in initArgsAndSelLocs()
178 ArrayRef<SourceLocation> SelLocs, in Create() argument
181 assert((!SelLocs.empty() || isImplicit) && in Create()
188 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK); in Create()
190 SuperType, Sel, SelLocs, SelLocsK, Method, in Create()
197 Selector Sel, ArrayRef<SourceLocation> SelLocs, in Create() argument
200 assert((!SelLocs.empty() || isImplicit) && in Create()
207 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK); in Create()
209 ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel, SelLocs, SelLocsK, Method, in Create()
216 ArrayRef<SourceLocation> SelLocs, in Create() argument
219 assert((!SelLocs.empty() || isImplicit) && in Create()
226 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK); in Create()
228 ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel, SelLocs, SelLocsK, Method, in Create()
242 ArrayRef<SourceLocation> SelLocs, in alloc() argument
245 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc); in alloc()
247 (SelLocsK == SelLoc_NonStandard) ? SelLocs.size() : 0; in alloc()
259 SmallVectorImpl<SourceLocation> &SelLocs) const { in getSelectorLocs()
261 SelLocs.push_back(getSelectorLoc(i)); in getSelectorLocs()