Lines Matching defs:next
1089 // 7b. Let next be ? Get(obj, indexName).
1090 Handle<Object> next;
1091 ASSIGN_RETURN_ON_EXCEPTION(isolate, next,
1099 // 7c. If Type(next) is not an element of elementTypes, throw a
1101 if (!next->IsName()) {
1103 NewTypeError(MessageTemplate::kNotPropertyName, next),
1106 // 7d. Append next as the last element of list.
1108 next = isolate->factory()->InternalizeName(Handle<Name>::cast(next));
1112 list->set(index, *next);
2520 // Proceed lookup from the next state.
2535 // Proceed lookup from the next state.
5590 Object next = PromiseReaction::cast(current).next();
5593 current = next;
5603 reactions = handle(reaction->next(), isolate);
5813 ++current; // Advance to next entry.
5818 ++current; // Advance to next entry.
5826 // The other element will be processed on the next iteration,
5830 // for the next probe.
5832 ++current; // Advance to next entry.
6038 // Check whether the next enumeration index is valid.
6062 // Don't update the next enumeration index here, since we might be looking at
6848 // be scaled up to 9_000_000_000. So we scale up by the next
6976 WeakCell next = WeakCell::cast(weak_cell.key_list_next());
6977 DCHECK_EQ(next.key_list_prev(), weak_cell);
6978 next.set_key_list_prev(undefined);
6979 key_map.ValueAtPut(entry, next);
6986 WeakCell next = WeakCell::cast(weak_cell.key_list_next());
6987 next.set_key_list_prev(weak_cell.key_list_prev());