HomeSort by relevance Sort by last modified time
    Searched refs:Unshift (Results 1 - 10 of 10) sorted by null

  /external/v8/src/
elements.h 164 virtual uint32_t Unshift(Handle<JSArray> receiver,
elements.cc 613 uint32_t Unshift(Handle<JSArray> receiver,
    [all...]
builtins.cc 446 int new_length = accessor->Unshift(array, elms_obj, &args, to_add);
    [all...]
  /external/v8/src/heap/
mark-compact-inl.h 27 if (!marking_deque_.Unshift(obj)) {
mark-compact.h 228 // Unshift the object into the marking stack if there is room, otherwise mark
230 INLINE(bool Unshift(HeapObject* object)) {
incremental-marking.cc 179 heap_->mark_compact_collector()->marking_deque()->Unshift(obj);
254 heap->mark_compact_collector()->marking_deque()->Unshift(object);
    [all...]
  /external/v8/test/mjsunit/
array-functions-prototype.js 86 // unshift.
92 // Unshift a new 'zero'.
93 assertEquals(4, array.unshift('zero'));
94 assertEquals(4, Array.prototype.unshift.call(nonArray, 'zero'));
array-natives-elements.js 281 // Unshift
283 assertEquals(4, a4.unshift(1));
287 assertEquals(4, a4.unshift(1.1));
291 assertEquals(4, a4.unshift(1));
295 assertEquals(4, a4.unshift(1));
299 assertEquals(4, a4.unshift(1.1));
array-functions-prototype-misc.js 29 * @fileoverview Test splice, shift, unshift, slice and join on small
80 return array.unshift(elt);
83 return array.unshift(elt1, elt2);
114 return Array.prototype.unshift.call(array, elt); method in class:return
117 return Array.prototype.unshift.call(array, elt1, elt2); method in class:return
238 // Unshift.
  /external/v8/test/mjsunit/es7/
object-observe.js 1485 Array.prototype.unshift.call(array, 1); method in class:Array
    [all...]

Completed in 3782 milliseconds