/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/ |
D | splice_pos_list_iter.pass.cpp | 30 l1.splice(l1.end(), l2, l2.begin()); in main() 41 l1.splice(l1.end(), l2, l2.begin()); in main() 54 l1.splice(l1.end(), l2, next(l2.begin())); in main() 67 l1.splice(l1.end(), l2, l2.begin()); in main() 82 l1.splice(l1.end(), l2, next(l2.begin())); in main() 97 l1.splice(l1.end(), l2, next(l2.begin(), 2)); in main() 111 l1.splice(l1.begin(), l1, l1.begin()); in main() 120 l1.splice(l1.begin(), l2, l2.begin()); in main() 133 l1.splice(next(l1.begin()), l2, l2.begin()); in main() 145 l1.splice(l1.begin(), l1, l1.begin()); in main() [all …]
|
D | splice_pos_list.pass.cpp | 30 l1.splice(l1.end(), l2); in main() 39 l1.splice(l1.end(), l2); in main() 50 l1.splice(l1.end(), l2); in main() 63 l1.splice(l1.end(), l2); in main() 78 l1.splice(l1.begin(), l2); in main() 89 l1.splice(l1.end(), l2); in main() 100 l1.splice(l1.begin(), l2); in main() 113 l1.splice(l1.end(), l2); in main() 126 l1.splice(l1.begin(), l2); in main() 141 l1.splice(l1.end(), l2); in main() [all …]
|
D | splice_pos_list_iter_iter.pass.cpp | 29 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); in main() 41 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); in main() 53 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); in main() 66 l1.splice(l1.begin(), l2, next(l2.begin()), l2.end()); in main() 86 l1.splice(next(l1.begin()), l2, next(l2.begin()), l2.end()); in main() 106 l1.splice(l1.end(), l2, next(l2.begin()), l2.end()); in main() 127 v1.splice(v1.begin(), v2, v2.begin(), v1.end()); in main() 134 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); in main() 146 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); in main() 158 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); in main() [all …]
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | slist_test.cpp | 40 CPPUNIT_TEST(splice); 48 void splice(); 198 void SlistTest::splice() in splice() function in SlistTest 210 sl1.splice(sl1.begin(), sl1, sl1.begin()); in splice() 215 sl1.splice(slit, sl1, sl1.begin()); in splice() 218 sl1.splice(sl1.end(), sl1, sl1.begin()); in splice() 225 sl1.splice(sl1.begin(), sl1, slit); in splice() 228 sl1.splice(sl1.begin(), sl2); in splice() 238 sl2.splice(sl2.begin(), sl1, sl1.begin(), slit); in splice() 242 sl1.splice(sl1.begin(), sl1, slit, sl1.end()); in splice() [all …]
|
D | list_test.cpp | 66 l1.splice(i1, l2); in list1() 104 l1.splice(i, l2, l2.begin(), l2.end()); in list2() 351 lint1.splice(lint1.begin(), lint2); in allocator_with_state() 363 lint1.splice(lint1.begin(), lint2, lint2.begin()); in allocator_with_state() 377 lint1.splice(lint1.begin(), lint2, lint2.begin(), lit); in allocator_with_state()
|
/ndk/tests/device/test-stlport/unit/ |
D | slist_test.cpp | 40 CPPUNIT_TEST(splice); 48 void splice(); 198 void SlistTest::splice() in splice() function in SlistTest 210 sl1.splice(sl1.begin(), sl1, sl1.begin()); in splice() 215 sl1.splice(slit, sl1, sl1.begin()); in splice() 218 sl1.splice(sl1.end(), sl1, sl1.begin()); in splice() 225 sl1.splice(sl1.begin(), sl1, slit); in splice() 228 sl1.splice(sl1.begin(), sl2); in splice() 238 sl2.splice(sl2.begin(), sl1, sl1.begin(), slit); in splice() 242 sl1.splice(sl1.begin(), sl1, slit, sl1.end()); in splice() [all …]
|
D | list_test.cpp | 66 l1.splice(i1, l2); in list1() 104 l1.splice(i, l2, l2.begin(), l2.end()); in list2() 351 lint1.splice(lint1.begin(), lint2); in allocator_with_state() 363 lint1.splice(lint1.begin(), lint2, lint2.begin()); in allocator_with_state() 377 lint1.splice(lint1.begin(), lint2, lint2.begin(), lit); in allocator_with_state()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
D | _list.h | 293 void splice(iterator __pos, _Self& __x) in splice() function 294 { _M_impl.splice(_BaseIte(__pos._M_node), __x._M_impl); } in splice() 295 void splice(iterator __pos, _Self& __x, iterator __i) in splice() function 296 { _M_impl.splice(_BaseIte(__pos._M_node), __x._M_impl, _BaseIte(__i._M_node)); } in splice() 297 void splice(iterator __pos, _Self& __x, iterator __first, iterator __last) in splice() function 298 { _M_impl.splice(_BaseIte(__pos._M_node), __x._M_impl, in splice()
|
D | _slist.h | 373 void splice(iterator __pos, _Self& __x) in splice() function 374 { _M_impl.splice(_BaseIte(__pos._M_node), __x._M_impl); } in splice() 375 void splice(iterator __pos, _Self& __x, iterator __i) in splice() function 376 { _M_impl.splice(_BaseIte(__pos._M_node), __x._M_impl, _BaseIte(__i._M_node)); } in splice() 377 void splice(iterator __pos, _Self& __x, iterator __first, iterator __last) in splice() function 378 { _M_impl.splice(_BaseIte(__pos._M_node), __x._M_impl, in splice()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _list.h | 358 void splice(iterator __pos, _Self& __x) { in splice() function 360 _M_non_dbg_impl.splice(__pos._M_iterator, __x._M_non_dbg_impl); in splice() 371 void splice(iterator __pos, _Self& __x, iterator __i) { in splice() function 375 _M_non_dbg_impl.splice(__pos._M_iterator, __x._M_non_dbg_impl, __i._M_iterator); in splice() 385 void splice(iterator __pos, _Self& __x, iterator __first, iterator __last) { in splice() function 396 …_M_non_dbg_impl.splice(__pos._M_iterator, __x._M_non_dbg_impl, __first._M_iterator, __last._M_iter… in splice()
|
D | _slist.h | 454 void splice(iterator __pos, _Self& __x) { in splice() function 458 _M_non_dbg_impl.splice(__pos._M_iterator, __x._M_non_dbg_impl); in splice() 467 void splice(iterator __pos, _Self& __x, iterator __i) { in splice() function 481 _M_non_dbg_impl.splice(__pos._M_iterator, __x._M_non_dbg_impl, __i._M_iterator); in splice() 484 void splice(iterator __pos, _Self& __x, iterator __first, iterator __last) { in splice() function 495 _M_non_dbg_impl.splice(__pos._M_iterator, __x._M_non_dbg_impl, in splice()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | list | 125 void splice(const_iterator position, list& x); 126 void splice(const_iterator position, list&& x); 127 void splice(const_iterator position, list& x, const_iterator i); 128 void splice(const_iterator position, list&& x, const_iterator i); 129 void splice(const_iterator position, list& x, const_iterator first, 131 void splice(const_iterator position, list&& x, const_iterator first, 1009 void splice(const_iterator __p, list& __c); 1012 void splice(const_iterator __p, list&& __c) {splice(__p, __c);} 1014 void splice(const_iterator __p, list& __c, const_iterator __i); 1017 void splice(const_iterator __p, list&& __c, const_iterator __i) [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _list.h | 488 splice(__pos, __tmp); 494 splice(__pos, __tmp); 599 void splice(iterator __pos, _Self& __x) { 610 void splice(iterator __pos, _Self& __x, iterator __i) { 622 void splice(iterator __pos, _Self& __x, iterator __first, iterator __last) {
|
D | _slist.h | 595 splice(iterator(__pos), __tmp); 737 void splice(iterator __pos, _Self& __x) { 752 void splice(iterator __pos, _Self& __x, iterator __i) { 766 void splice(iterator __pos, _Self& __x, iterator __first, iterator __last) {
|
D | _list.c | 217 __carry.splice(__carry.begin(), __that, __that.begin()); in _S_sort()
|
/ndk/docs/Getting_Started/html/ |
D | jquery.js | 16 …splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,… 18 …splice(bw.delegateCount++,0,bG)}else{bw.push(bG)}b.event.global[bF]=true}bx=null},global:{},remove… 26 …splice(e--,1)}}}}return bR};by.matches=function(e,bR){return by(e,null,null,bR)};by.matchesSelecto… 30 …splice(bx,1)}}if(!(e&&by)){b.dequeue(this,bw)}})}});function bh(){setTimeout(at,0);return(a4=b.now…
|
/ndk/docs/Programmers_Guide/html/ |
D | jquery.js | 16 …splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,… 18 …splice(bw.delegateCount++,0,bG)}else{bw.push(bG)}b.event.global[bF]=true}bx=null},global:{},remove… 26 …splice(e--,1)}}}}return bR};by.matches=function(e,bR){return by(e,null,null,bR)};by.matchesSelecto… 30 …splice(bx,1)}}if(!(e&&by)){b.dequeue(this,bw)}})}});function bh(){setTimeout(at,0);return(a4=b.now…
|
/ndk/docs/Additional_library_docs/renderscript/ |
D | jquery.js | 12 …splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0… 20 …splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,… 22 …splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide…
|