Lines Matching refs:index
173 uint32_t index;
177 index = static_cast<uint32_t>(value);
184 index = static_cast<uint32_t>(value);
189 if (index >= capacity) {
193 object->GetElementsAccessor()->GrowCapacity(object, index));
267 int64_t index = 0;
275 index = std::max<int64_t>(len + start_from, 0);
277 index = start_from;
285 index = static_cast<int64_t>(std::max<double>(start_from + len, 0));
287 index = start_from;
292 DCHECK_GE(index, 0);
296 // element index, perform fast operation tailored to specific ElementsKinds.
303 elements->IncludesValue(isolate, obj, search_element, index, len);
309 for (; index < len; ++index) {
315 PropertyKey key(isolate, static_cast<double>(index));
383 int64_t index;
385 index = start_from;
387 index = len + start_from;
388 if (index < 0) {
389 index = 0;
400 static_cast<uint32_t>(index),
407 for (; index < len; ++index) {
412 PropertyKey key(isolate, static_cast<double>(index));
420 return *isolate->factory()->NewNumberFromInt64(index);