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

1 2 3

  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
splice_after_flist.pass.cpp 12 // void splice_after(const_iterator p, forward_list&& x);
53 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2));
69 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2));
splice_after_range.pass.cpp 12 // void splice_after(const_iterator p, forward_list&& x,
93 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
109 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
117 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
137 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
153 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
161 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
splice_after_one.pass.cpp 12 // void splice_after(const_iterator p, forward_list&& x, const_iterator i);
90 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
103 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
120 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
133 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
splice_after_flist.pass.cpp 12 // void splice_after(const_iterator p, forward_list&& x);
53 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2));
69 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2));
splice_after_range.pass.cpp 12 // void splice_after(const_iterator p, forward_list&& x,
93 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
109 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
117 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
137 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
153 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
161 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
splice_after_one.pass.cpp 12 // void splice_after(const_iterator p, forward_list&& x, const_iterator i);
90 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
103 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
120 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
133 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
  /external/stlport/test/unit/
slist_test.cpp 268 //splice_after
275 sl1.splice_after(sl1.begin(), sl1, sl1.begin());
278 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin());
285 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin());
288 sl1.splice_after(sl1.before_begin(), sl2);
298 sl2.splice_after(sl2.before_begin(), sl1, sl1.before_begin(), slit);
301 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin(), sl1.previous(sl1.end()));
310 sl2.splice_after(sl2.before_begin(), sl2, sl2.before_begin(), sl2.previous(sl2.end()));
318 sl2.splice_after(sl2.previous(sl2.end()), sl2, sl2.before_begin(), slit);
444 //splice_after(iterator, slist
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
slist_test.cpp 268 //splice_after
275 sl1.splice_after(sl1.begin(), sl1, sl1.begin());
278 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin());
285 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin());
288 sl1.splice_after(sl1.before_begin(), sl2);
298 sl2.splice_after(sl2.before_begin(), sl1, sl1.before_begin(), slit);
301 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin(), sl1.previous(sl1.end()));
310 sl2.splice_after(sl2.before_begin(), sl2, sl2.before_begin(), sl2.previous(sl2.end()));
318 sl2.splice_after(sl2.previous(sl2.end()), sl2, sl2.before_begin(), slit);
444 //splice_after(iterator, slist
    [all...]
  /ndk/tests/device/test-stlport/unit/
slist_test.cpp 268 //splice_after
275 sl1.splice_after(sl1.begin(), sl1, sl1.begin());
278 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin());
285 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin());
288 sl1.splice_after(sl1.before_begin(), sl2);
298 sl2.splice_after(sl2.before_begin(), sl1, sl1.before_begin(), slit);
301 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin(), sl1.previous(sl1.end()));
310 sl2.splice_after(sl2.before_begin(), sl2, sl2.before_begin(), sl2.previous(sl2.end()));
318 sl2.splice_after(sl2.previous(sl2.end()), sl2, sl2.before_begin(), slit);
444 //splice_after(iterator, slist
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
forward_list.h 1040 splice_after(const_iterator __pos, forward_list&& __list) function in class:forward_list
1047 splice_after(const_iterator __pos, forward_list& __list) function in class:forward_list
1065 splice_after(const_iterator __pos, forward_list& __list, function in class:forward_list
1083 splice_after(const_iterator __pos, forward_list&&, function in class:forward_list
1088 splice_after(const_iterator __pos, forward_list&, function in class:forward_list
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
forward_list.h 1040 splice_after(const_iterator __pos, forward_list&& __list) function in class:forward_list
1047 splice_after(const_iterator __pos, forward_list& __list) function in class:forward_list
1065 splice_after(const_iterator __pos, forward_list& __list, function in class:forward_list
1083 splice_after(const_iterator __pos, forward_list&&, function in class:forward_list
1088 splice_after(const_iterator __pos, forward_list&, function in class:forward_list
    [all...]
  /external/stlport/stlport/stl/
_slist.c 157 __that.splice_after(__ite, __x, __x.before_begin());
162 __that.splice_after(__ite, __x);
192 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_slist.c 157 __that.splice_after(__ite, __x, __x.before_begin());
162 __that.splice_after(__ite, __x);
192 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_slist.c 158 __that.splice_after(__ite, __x, __x.before_begin());
163 __that.splice_after(__ite, __x);
193 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_slist.c 158 __that.splice_after(__ite, __x, __x.before_begin());
163 __that.splice_after(__ite, __x);
193 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_slist.c 158 __that.splice_after(__ite, __x, __x.before_begin());
163 __that.splice_after(__ite, __x);
193 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_slist.c 158 __that.splice_after(__ite, __x, __x.before_begin());
163 __that.splice_after(__ite, __x);
193 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_slist.c 157 __that.splice_after(__ite, __x, __x.before_begin());
162 __that.splice_after(__ite, __x);
192 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 878 this->splice_after(__pos, std::move(__tmp));
900 this->splice_after(__pos, std::move(__tmp));
920 this->splice_after(__pos, std::move(__tmp));
1058 splice_after(const_iterator __pos, forward_list&& __list, function in class:forward_list
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 878 this->splice_after(__pos, std::move(__tmp));
900 this->splice_after(__pos, std::move(__tmp));
920 this->splice_after(__pos, std::move(__tmp));
1058 splice_after(const_iterator __pos, forward_list&& __list, function in class:forward_list
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 878 this->splice_after(__pos, std::move(__tmp));
900 this->splice_after(__pos, std::move(__tmp));
920 this->splice_after(__pos, std::move(__tmp));
1058 splice_after(const_iterator __pos, forward_list&& __list, function in class:forward_list
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
forward_list.h 878 this->splice_after(__pos, std::move(__tmp));
900 this->splice_after(__pos, std::move(__tmp));
920 this->splice_after(__pos, std::move(__tmp));
1058 splice_after(const_iterator __pos, forward_list&& __list, function in class:forward_list
    [all...]
  /external/stlport/stlport/stl/pointers/
_slist.h 365 void splice_after(iterator __pos, _Self& __x, function in class:slist
367 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl,
369 void splice_after(iterator __pos, _Self& __x, iterator __prev) function in class:slist
370 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl, _BaseIte(__prev._M_node)); }
371 void splice_after(iterator __pos, _Self& __x) function in class:slist
372 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl); }
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_slist.h 365 void splice_after(iterator __pos, _Self& __x, function in class:slist
367 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl,
369 void splice_after(iterator __pos, _Self& __x, iterator __prev) function in class:slist
370 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl, _BaseIte(__prev._M_node)); }
371 void splice_after(iterator __pos, _Self& __x) function in class:slist
372 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl); }
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/
_slist.h 365 void splice_after(iterator __pos, _Self& __x, function in class:slist
367 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl,
369 void splice_after(iterator __pos, _Self& __x, iterator __prev) function in class:slist
370 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl, _BaseIte(__prev._M_node)); }
371 void splice_after(iterator __pos, _Self& __x) function in class:slist
372 { _M_impl.splice_after(_BaseIte(__pos._M_node), __x._M_impl); }

Completed in 892 milliseconds

1 2 3