Lines Matching defs:element
216 // properties, not in the element backing store.
336 // a. Remove the first element from args and let E be the value of the
337 // element.
338 Handle<Object> element = args->at(i + 1);
343 isolate, Object::SetElement(isolate, receiver, length, element,
348 MAYBE_RETURN(Object::SetProperty(&it, element, StoreOrigin::kMaybeKeyed,
435 // c. Let element be ? Get(O, index).
436 Handle<Object> element;
438 isolate, element, Object::GetPropertyOrElement(isolate, receiver, index));
452 // f. Return element.
453 return *element;
648 * A simple visitor visits every element of Array's.
789 Handle<Object> element(current_storage->get(i), isolate_);
790 if (!element->IsTheHole(isolate_)) {
795 isolate_, slow_storage, i, element, not_a_prototype_holder);
1040 // The prototype will usually have no inherited element indices,
1067 * The visitor argument called for each existing element in the array
1068 * with the element index and the element's value.
1089 // TODO(caitp): Support larger element indexes (up to 2^53-1).
1093 // TODO(cbruni): handle other element kind as well
1196 Handle<Object> element;
1198 isolate, element, JSReceiver::GetElement(isolate, array, index),
1200 if (!visitor->visit(index, element)) return false;
1212 Handle<Object> element;
1214 isolate, element, JSReceiver::GetElement(isolate, array, index),
1216 if (!visitor->visit(index, element)) return false;
1364 Object element = elements.get(k);
1365 if (element == the_hole) {
1369 int32_t int_value = Smi::ToInt(element);
1831 // 8c. Append entry as the last element of map.[[MapData]].