HomeSort by relevance Sort by last modified time
    Searched refs:splice (Results 1 - 25 of 411) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/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...]
  /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/chromium_org/v8/test/mjsunit/
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);
156 a3r = a3.splice(0, 0);
162 a3r = a3.splice(0, 1);
168 a3r = a3.splice(0, 0, 2);
176 a3r = a3.splice(0, 1, 2);
182 a3r = a3.splice(0, 0, 2.1)
    [all...]
object-seal.js 225 assertThrows(function() { obj.splice(0, 0, 100, 101, 102); }, TypeError);
226 assertDoesNotThrow(function() { obj.splice(0,0); });
232 assertDoesNotThrow(function() { objControl.splice(0, 0, 100, 101, 102); });
259 // Verify special behavior of splice on sealed objects.
262 assertDoesNotThrow(function() { obj.splice(0,1,100); });
264 assertDoesNotThrow(function() { obj.splice(0,2,1,2); });
265 assertDoesNotThrow(function() { obj.splice(1,2,1,2); });
267 assertDoesNotThrow(function() { obj.splice(1,2000,1,2); });
268 assertThrows(function() { obj.splice(0,0,1); }, TypeError);
269 assertThrows(function() { obj.splice(1,2000,1,2,3); }, TypeError)
    [all...]
  /external/lldb/scripts/
disasm-gdb-remote.pl 600 splice(@$arrayref, -3);
701 @_ = splice(@_, length('qThreadStopInfo'));
713 @_ = splice(@_, length('qCRC:'));
722 @_ = splice(@_, length('qGetTLSAddr:'));
732 @_ = splice(@_, length('qRegisterInfo'));
    [all...]
  /external/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_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...]
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...]
  /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_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...]
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...]
  /bionic/libc/arch-x86/syscalls/
splice.S 5 ENTRY(splice) function
46 END(splice)
  /external/chromium_org/components/omnibox/
answers_cache.cc 28 cache_.splice(cache_.begin(), cache_, it);
41 cache_.splice(cache_.begin(), cache_, it);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-builtinbust-1.js 14 assertThrows(function() { a.splice(0, 1); }, TypeError);
  /external/stlport/test/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-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/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
character_fallback_test.js 14 fallbackChars.splice(selectedCharIndex, 1);
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-2615.js 37 assertThrows("a.splice(1,1,7,7,7,7,7);", RangeError);
72 assertThrows("a.splice(1,1);", TypeError);
79 assertThrows("a.splice(1,4);", TypeError);
87 assertThrows("a.splice(1,4);", TypeError);
  /external/llvm/unittests/ADT/
ilistTest.cpp 50 // The single-element splice operation supports noops.
51 List.splice(List.begin(), List, List.begin());
59 List.splice(std::next(List.begin()), List, List.begin());

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>