HomeSort by relevance Sort by last modified time
    Searched refs:unshift (Results 26 - 50 of 179) sorted by null

12 3 4 5 6 7 8

  /external/v8/test/mjsunit/regress/
regress-builtinbust-5.js 11 assertThrows("a.unshift()", TypeError);
regress-3643.js 29 a.unshift(0);
regress-builtinbust-6.js 16 Array.prototype.unshift.call(v);
40 test_receiver(99, "Array.prototype.unshift.call(99, 'z')");
regress-2615.js 30 assertThrows("a.unshift(4);", TypeError);
39 assertThrows("a.unshift(0);", TypeError);
49 a.unshift(10);
regress-splice-large-index.js 30 assertThrows("a.unshift(1);", RangeError);
  /external/v8/test/mjsunit/
array-unshift.js 32 assertEquals(13, array.unshift('1st', '2ns', '3rd'));
40 // Check that unshift with no args has no side-effects.
61 assertEquals(len, array.unshift());
90 assertEquals(len + 1, array.unshift('head'));
93 // Note that unshift copies values from prototype into the array.
116 // Check that unshift with no args has no side-effects.
139 assertEquals(len, array.unshift());
167 assertEquals(len + 1, array.unshift('head'));
170 // Note that unshift copies values from prototype into the array.
193 new Array(Math.pow(2, 32) - 3).unshift(1, 2, 3, 4, 5)
    [all...]
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.js 86 // unshift.
92 // Unshift a new 'zero'.
93 assertEquals(4, array.unshift('zero'));
94 assertEquals(4, Array.prototype.unshift.call(nonArray, 'zero'));
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);
117 return Array.prototype.unshift.call(array, elt1, elt2);
238 // Unshift.
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharset.java 114 * @return The unshift character
116 abstract byte unshift(); method in class:UTF7StyleCharset
  /external/v8/test/webkit/fast/js/
array-functions-non-arrays.js 187 shouldBe("Array.prototype.unshift.call({})", "0");
188 shouldBe("Array.prototype.unshift.call(['b', 'a'])", "2");
189 shouldBe("Array.prototype.unshift.call({ length:2, 0:'b', 1:'a' })", "2");
190 shouldBe("Array.prototype.unshift.call(new TwoItemConstructor)", "2");
191 shouldBe("Array.prototype.unshift.call(x = {}); properties(x)", "'length:0'");
192 shouldBe("Array.prototype.unshift.call(x = ['b', 'a']); properties(x)", "'0:b, 1:a, length:2(DontDelete, DontEnum)'");
193 shouldBe("Array.prototype.unshift.call(x = { length:2, 0:'b', 1:'a' }); properties(x)", "'0:b, 1:a, length:2'");
194 shouldBe("Array.prototype.unshift.call(x = new TwoItemConstructor); properties(x)", "'0:b(FromPrototype), 1:a(FromPrototype), length:2'");
195 shouldBe("Array.prototype.unshift.call({}, 'c')", "1");
196 shouldBe("Array.prototype.unshift.call(['b', 'a'], 'c')", "3")
    [all...]
  /external/v8/test/mjsunit/compiler/
inlined-call.js 69 [].unshift.call(array, num);
79 copy.unshift(50);
80 copy.unshift(60);
81 copy.unshift(80);
82 copy.unshift(50);
83 copy.unshift(60);
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/tasks/support/
gl-matrix.rb 21 $:.unshift File.expand_path('.', File.dirname(__FILE__))
  /external/v8/test/mjsunit/es6/
array-length.js 68 Array.prototype.unshift.call(o);
72 Array.prototype.unshift.call(o, 'foo');
77 Array.prototype.unshift.call(o);
81 Array.prototype.unshift.call(o, 'foo');
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubyautodoc.swg 27 AUTODOC(unshift, "Add one or more elements at the beginning of the $class");
  /external/libvncserver/utils/
git2cl.pl 210 unshift (@lines, $next_next_line);
212 unshift (@lines, $next_line);
244 unshift (@lines, $this_line);
  /external/v8/test/webkit/fast/js/kde/
Array.js 149 // Array.unshift()
150 shouldBe("[].unshift('a')", "1");
151 shouldBe("['c'].unshift('a', 'b')", "3");
152 shouldBe("var a = []; a.unshift('a'); String(a)", "'a'");
153 shouldBe("var a = ['c']; a.unshift('a', 'b'); String(a)", "'a,b,c'");
  /external/boringssl/src/crypto/sha/asm/
sha1-armv4-large.pl 216 &BODY_00_15(@V); unshift(@V,pop(@V));
223 &BODY_00_15(@V); unshift(@V,pop(@V));
224 &BODY_16_19(@V); unshift(@V,pop(@V));
225 &BODY_16_19(@V); unshift(@V,pop(@V));
226 &BODY_16_19(@V); unshift(@V,pop(@V));
227 &BODY_16_19(@V); unshift(@V,pop(@V));
235 &BODY_20_39(@V); unshift(@V,pop(@V));
247 &BODY_40_59(@V); unshift(@V,pop(@V));
321 '$j++; unshift(@V,pop(@V));'
334 '$j++; unshift(@V,pop(@V));
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
util.js 33 args.unshift(pattern);
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OnedCode128Reader.cpp 218 FX_BOOL unshift = isNextShifted; local
334 if (unshift) {
  /external/v8/test/cctest/
test-extra.js 44 arrayToTest.unshift("a", "b", "c");
  /external/v8/test/webkit/
dfg-arrayify-elimination.js 33 array.unshift(52);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_codecvt.h 76 result unshift(state_type& __state, function
196 result unshift(state_type& __state,
293 result unshift(state_type& __state,
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_codecvt.h 76 result unshift(state_type& __state, function
196 result unshift(state_type& __state,
293 result unshift(state_type& __state,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 257 reduced.unshift( operation ) if operation
327 return cast_range( args.unshift( first, last ), extra )
330 return cast_range( args.unshift( loc, loc ), extra )
341 return( args.unshift( first .. last ) )

Completed in 1641 milliseconds

12 3 4 5 6 7 8