/bionic/libc/arch-arm64/syscalls/ |
splice.S | 5 ENTRY(splice) function 14 END(splice)
|
/bionic/libc/arch-mips/syscalls/ |
splice.S | 5 ENTRY(splice) function 19 END(splice)
|
/bionic/libc/arch-x86_64/syscalls/ |
splice.S | 5 ENTRY(splice) function 16 END(splice)
|
/external/v8/test/webkit/ |
array-splice.js | 25 "This tests array.splice behavior." 30 shouldBe("arr.splice(2)", "['c','d']"); 32 shouldBe("arr.splice(0)", "['a','b']"); 36 shouldBe("arr.splice()", "[]") 38 shouldBe("arr.splice(undefined)", "['a','b','c','d']") 42 shouldBe("arr.splice(null)", "['a','b','c','d']") 46 shouldBe("arr.splice(100)", "[]") 48 shouldBe("arr.splice(-1)", "['d']") 51 shouldBe("arr.splice(2, undefined)", "[]") 52 shouldBe("arr.splice(2, null)", "[]" [all...] |
array-splice-expected.txt | 24 This tests array.splice behavior. 30 PASS arr.splice(2) is ['c','d'] 32 PASS arr.splice(0) is ['a','b'] 34 PASS arr.splice() is [] 36 PASS arr.splice(undefined) is ['a','b','c','d'] 38 PASS arr.splice(null) is ['a','b','c','d'] 40 PASS arr.splice(100) is [] 42 PASS arr.splice(-1) is ['d'] 44 PASS arr.splice(2, undefined) is [] 45 PASS arr.splice(2, null) is [ [all...] |
/bionic/libc/arch-arm/syscalls/ |
splice.S | 5 ENTRY(splice) function 22 END(splice)
|
/bionic/libc/arch-mips64/syscalls/ |
splice.S | 5 ENTRY(splice) function 25 END(splice)
|
/external/v8/test/mjsunit/ |
array-methods-read-only-length.js | 39 function splice(a) { function in function:testAdd 40 a.splice(0, 0, 3); 43 check(splice); 44 check(splice); 45 check(splice); 46 %OptimizeFunctionOnNextCall(splice); 47 check(splice); 84 function splice(a) { function 85 a.splice(0, 1); 88 check(splice); [all...] |
array-splice.js | 32 var spliced = array.splice(1, 1, 'one', 'two'); 48 assertEquals([], [].splice(0, 0)); 49 assertEquals([], [].splice(1, 0)); 50 assertEquals([], [].splice(0, 1)); 51 assertEquals([], [].splice(-1, 0)); 60 assertEquals([], a.splice(1, 0, 'a', 'b', 'c')); 71 assertEquals([], array.splice()); 79 assertEquals([1, 2, 3], array.splice(0)); 83 assertEquals([1, 2, 3], array.splice(undefined)); 87 assertEquals([1, 2, 3], array.splice("foobar")) [all...] |
array-natives-elements.js | 128 // Splice 131 a3r = a3.splice(0, 0); 137 a3r = a3.splice(0, 1); 143 a3r = a3.splice(0, 0, 2); 149 a3r = a3.splice(0, 1, 2); 155 a3r = a3.splice(0, 0); 161 a3r = a3.splice(0, 1); 167 a3r = a3.splice(0, 0, 2); 174 a3r = a3.splice(0, 1, 2); 180 a3r = a3.splice(0, 0, 2.1) [all...] |
/external/v8/test/mjsunit/regress/ |
regress-423633.js | 10 assertEquals([3], a.splice(2, 1)); 18 assertEquals([3], Array.prototype.splice.call(a, 2, 1));
|
regress-builtinbust-1.js | 14 assertThrows(function() { a.splice(0, 1); }, TypeError);
|
/external/libcxx/test/std/containers/sequences/list/list.ops/ |
splice_pos_list_iter.pass.cpp | 12 // void splice(const_iterator position, list<T,Allocator>& x, iterator i); 30 l1.splice(l1.end(), l2, l2.begin()); 41 l1.splice(l1.end(), l2, l2.begin()); 54 l1.splice(l1.end(), l2, next(l2.begin())); 67 l1.splice(l1.end(), l2, l2.begin()); 82 l1.splice(l1.end(), l2, next(l2.begin())); 97 l1.splice(l1.end(), l2, next(l2.begin(), 2)); 111 l1.splice(l1.begin(), l1, l1.begin()); 120 l1.splice(l1.begin(), l2, l2.begin()); 133 l1.splice(next(l1.begin()), l2, l2.begin()) [all...] |
splice_pos_list.pass.cpp | 12 // void splice(const_iterator position, list& x); 30 l1.splice(l1.end(), l2); 39 l1.splice(l1.end(), l2); 50 l1.splice(l1.end(), l2); 63 l1.splice(l1.end(), l2); 78 l1.splice(l1.begin(), l2); 89 l1.splice(l1.end(), l2); 100 l1.splice(l1.begin(), l2); 113 l1.splice(l1.end(), l2); 126 l1.splice(l1.begin(), l2) [all...] |
splice_pos_list_iter_iter.pass.cpp | 12 // void splice(const_iterator position, list& x, iterator first, iterator last); 29 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); 41 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); 53 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); 66 l1.splice(l1.begin(), l2, next(l2.begin()), l2.end()); 86 l1.splice(next(l1.begin()), l2, next(l2.begin()), l2.end()); 106 l1.splice(l1.end(), l2, next(l2.begin()), l2.end()); 127 v1.splice(v1.begin(), v2, v2.begin(), v1.end()); 134 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); 146 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/ |
splice_pos_list_iter.pass.cpp | 12 // void splice(const_iterator position, list<T,Allocator>& x, iterator i); 30 l1.splice(l1.end(), l2, l2.begin()); 41 l1.splice(l1.end(), l2, l2.begin()); 54 l1.splice(l1.end(), l2, next(l2.begin())); 67 l1.splice(l1.end(), l2, l2.begin()); 82 l1.splice(l1.end(), l2, next(l2.begin())); 97 l1.splice(l1.end(), l2, next(l2.begin(), 2)); 111 l1.splice(l1.begin(), l1, l1.begin()); 120 l1.splice(l1.begin(), l2, l2.begin()); 133 l1.splice(next(l1.begin()), l2, l2.begin()) [all...] |
splice_pos_list.pass.cpp | 12 // void splice(const_iterator position, list& x); 30 l1.splice(l1.end(), l2); 39 l1.splice(l1.end(), l2); 50 l1.splice(l1.end(), l2); 63 l1.splice(l1.end(), l2); 78 l1.splice(l1.begin(), l2); 89 l1.splice(l1.end(), l2); 100 l1.splice(l1.begin(), l2); 113 l1.splice(l1.end(), l2); 126 l1.splice(l1.begin(), l2) [all...] |
splice_pos_list_iter_iter.pass.cpp | 12 // void splice(const_iterator position, list& x, iterator first, iterator last); 29 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); 41 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); 53 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); 66 l1.splice(l1.begin(), l2, next(l2.begin()), l2.end()); 86 l1.splice(next(l1.begin()), l2, next(l2.begin()), l2.end()); 106 l1.splice(l1.end(), l2, next(l2.begin()), l2.end()); 127 v1.splice(v1.begin(), v2, v2.begin(), v1.end()); 134 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); 146 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)) [all...] |
/external/autotest/client/tests/fio/ |
fio-mixed.job | 38 ioengine=splice
|
/external/v8/test/mjsunit/es7/regress/ |
regress-443982.js | 23 assertEquals('splice', records[0].type);
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
ilist_sort.h | 39 xs.splice(first, xs, second); 51 ys.splice(ys.begin(), xs, mid_iter, xs.end()); 65 xs.splice(xs_it, ys, ys_it++); 71 xs.splice(xs_end, ys, ys_it, ys_end);
|
/bionic/libc/arch-x86/syscalls/ |
splice.S | 5 ENTRY(splice) function 54 END(splice)
|
/ndk/tests/device/test-gnustl-full/unit/ |
slist_test.cpp | 40 CPPUNIT_TEST(splice); 48 void splice(); 198 void SlistTest::splice() function in class:SlistTest 203 //splice 210 sl1.splice(sl1.begin(), sl1, sl1.begin()); 215 sl1.splice(slit, sl1, sl1.begin()); 218 sl1.splice(sl1.end(), sl1, sl1.begin()); 225 sl1.splice(sl1.begin(), sl1, slit); 228 sl1.splice(sl1.begin(), sl2); 238 sl2.splice(sl2.begin(), sl1, sl1.begin(), slit) [all...] |
/ndk/tests/device/test-stlport/unit/ |
slist_test.cpp | 40 CPPUNIT_TEST(splice); 48 void splice(); 198 void SlistTest::splice() function in class:SlistTest 203 //splice 210 sl1.splice(sl1.begin(), sl1, sl1.begin()); 215 sl1.splice(slit, sl1, sl1.begin()); 218 sl1.splice(sl1.end(), sl1, sl1.begin()); 225 sl1.splice(sl1.begin(), sl1, slit); 228 sl1.splice(sl1.begin(), sl2); 238 sl2.splice(sl2.begin(), sl1, sl1.begin(), slit) [all...] |
/external/v8/test/mjsunit/harmony/ |
array-species.js | 18 assertEquals(MyArray, new MyArray().splice().constructor); 29 assertEquals(MyArray, new MyOtherArray().splice().constructor); 46 Array.prototype.splice.call(new MyNonArray()).constructor); 52 // slice and splice actually do explicitly define the length for some reason 54 assertEquals(0, Array.prototype.splice.call(new MyNonArray()).length); 102 assertThrows(() => new FrozenArray([1]).splice(0, 1), TypeError); 144 new MyObservedArray().splice().constructor);
|