Lines Matching refs:Index
391 // set ResultIndex to its index.
392 unsigned index = 0;
393 for (;; ++index) {
394 assert(index < Semantics.size() &&
396 if (e == Semantics[index]) break;
398 ResultIndex = index;
992 // There must be a method to do the Index'ed assignment.
1004 // Various warnings about objc Index'ed assignments in ARC.
1013 /// Capture the base object of an Objective-C Index'ed expression.
1030 llvm_unreachable("Unexpected index for ObjCSubscriptExpr");
1167 // - (id)objectAtIndexedSubscript:(size_t)index;
1193 arrayRef ? &S.Context.Idents.get("index")
1276 // - (void)setObject:(id)object atIndexedSubscript:(NSInteger)index;
1310 arrayRef ? &S.Context.Idents.get("index")
1372 // Get the object at "Index" position in the container.
1382 Expr *Index = InstanceKey;
1385 Expr *args[] = { Index };
1396 /// Store into the container the "op" object at "Index"'ed location
1398 /// - (void)setObject:(id)object atIndexedSubscript:(NSInteger)index;
1408 Expr *Index = InstanceKey;
1411 Expr *args[] = { op, Index };