Lines Matching refs:Index
308 // set ResultIndex to its index.
309 unsigned index = 0;
310 for (;; ++index) {
311 assert(index < Semantics.size() &&
313 if (e == Semantics[index]) break;
315 ResultIndex = index;
824 // There must be a method to do the Index'ed assignment.
836 // Various warnings about objc Index'ed assignments in ARC.
845 /// Capture the base object of an Objective-C Index'ed expression.
976 // - (id)objectAtIndexedSubscript:(size_t)index;
1002 arrayRef ? &S.Context.Idents.get("index")
1086 // - (void)setObject:(id)object atIndexedSubscript:(NSInteger)index;
1124 arrayRef ? &S.Context.Idents.get("index")
1187 // Get the object at "Index" position in the container.
1197 Expr *Index = InstanceKey;
1200 Expr *args[] = { Index };
1209 /// Store into the container the "op" object at "Index"'ed location
1211 /// - (void)setObject:(id)object atIndexedSubscript:(NSInteger)index;
1220 Expr *Index = InstanceKey;
1223 Expr *args[] = { op, Index };