Home
last modified time | relevance | path

Searched refs:slist (Results 1 – 22 of 22) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_slist.c58 # define slist _STLP_PTR_IMPL_NAME(slist) macro
60 # define slist _STLP_NON_DBG_NAME(slist) macro
70 slist<_Tp,_Alloc>& slist<_Tp,_Alloc>::operator=(const slist<_Tp,_Alloc>& __x) {
91 void slist<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) { in _M_fill_assign()
106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) { in resize()
119 void slist<_Tp,_Alloc>::remove(const _Tp& __val) { in remove()
129 #if !defined (slist)
134 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __pred) { in _Slist_unique()
136 typename slist<_Tp, _Alloc>::iterator __ite(__that.begin()); in _Slist_unique()
148 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x, in _Slist_merge()
[all …]
D_slist.h190 # define slist _STLP_PTR_IMPL_NAME(slist)
192 # define slist _STLP_NON_DBG_NAME(slist)
198 class slist;
200 #if !defined (slist)
206 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred);
209 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x,
213 void _Slist_sort(slist<_Tp, _Alloc>& __that, _StrictWeakOrdering __comp);
215 #if !defined (slist)
220 class slist : protected _STLP_PRIV _Slist_base<_Tp,_Alloc>
221 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (slist)
[all …]
D_config_compat_post.h38 # define __slist__ slist
D_hashtable.h252 typedef _STLP_PRIV _STLP_NON_DBG_NAME(slist)<value_type, _All> _ElemsCont;
254 typedef slist<value_type, _All> _ElemsCont;
/ndk/tests/device/test-gnustl-full/unit/
Dslist_test.cpp71 slist<char> str(array+0, array + 6); in slist1()
72 slist<char>::iterator i; in slist1()
74 slist<char>::const_iterator ci(i); in slist1()
75 slist<char>::const_iterator ci2(ci); in slist1()
115 slist<char>::iterator sl_char_ite; in slist1()
116 slist<int>::iterator sl_int_ite; in slist1()
127 slist<int> sl(array, array + 5); in erase()
128 slist<int>::iterator slit; in erase()
158 slist<int> sl; in insert()
170 slist<int>::iterator slit(sl.begin()); in insert()
[all …]
Dmvctor_declaration_test.cpp137 struct __move_traits<slist<specially_allocated_struct> > {
248 CPPUNIT_ASSERT( is_movable(slist<char>()) ); in movable_declaration()
249 CPPUNIT_ASSERT( is_movable(slist<specially_allocated_struct>()) ); in movable_declaration()
251 CPPUNIT_ASSERT( is_move_complete(slist<char>()) ); in movable_declaration()
252 CPPUNIT_ASSERT( !is_move_complete(slist<specially_allocated_struct>()) ); in movable_declaration()
254 CPPUNIT_ASSERT( !is_move_complete(slist<char>()) ); in movable_declaration()
Dptrspec_test.cpp58 TEST_INSTANCIATE_CONTAINER(slist);
87 slist<void*> void_slist; in ptr_specialization_test()
112 slist<int*> pint_slist; in ptr_specialization_test()
113 slist<int*> pint_slist2; in ptr_specialization_test()
114 slist<int const*> pcint_slist; in ptr_specialization_test()
189 slist<int*> pint_slist_from_vect(pint_vect.begin(), pint_vect.end()); in ptr_specialization_test()
Dalg_test.cpp129 slist<int> slint(ints, ints + ARRAY_SIZE(ints)); in search_n_test()
130 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 2); in search_n_test()
162 slist<int> slint(ints, ints + ARRAY_SIZE(ints)); in search_n_test()
163 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 1, greater<int>()); in search_n_test()
218 slist<int> intsl; in find_first_of_test()
Dmvctor_test.cpp702 vector<slist<string> > vect(10, slist<string>(10, long_str)); in vector_test()
706 vector<slist<string> >::iterator it(vect.begin()); in vector_test()
/ndk/tests/device/test-stlport/unit/
Dslist_test.cpp71 slist<char> str(array+0, array + 6); in slist1()
72 slist<char>::iterator i; in slist1()
74 slist<char>::const_iterator ci(i); in slist1()
75 slist<char>::const_iterator ci2(ci); in slist1()
115 slist<char>::iterator sl_char_ite; in slist1()
116 slist<int>::iterator sl_int_ite; in slist1()
127 slist<int> sl(array, array + 5); in erase()
128 slist<int>::iterator slit; in erase()
158 slist<int> sl; in insert()
170 slist<int>::iterator slit(sl.begin()); in insert()
[all …]
Dmvctor_declaration_test.cpp137 struct __move_traits<slist<specially_allocated_struct> > {
248 CPPUNIT_ASSERT( is_movable(slist<char>()) ); in movable_declaration()
249 CPPUNIT_ASSERT( is_movable(slist<specially_allocated_struct>()) ); in movable_declaration()
251 CPPUNIT_ASSERT( is_move_complete(slist<char>()) ); in movable_declaration()
252 CPPUNIT_ASSERT( !is_move_complete(slist<specially_allocated_struct>()) ); in movable_declaration()
254 CPPUNIT_ASSERT( !is_move_complete(slist<char>()) ); in movable_declaration()
Dptrspec_test.cpp58 TEST_INSTANCIATE_CONTAINER(slist);
87 slist<void*> void_slist; in ptr_specialization_test()
112 slist<int*> pint_slist; in ptr_specialization_test()
113 slist<int*> pint_slist2; in ptr_specialization_test()
114 slist<int const*> pcint_slist; in ptr_specialization_test()
189 slist<int*> pint_slist_from_vect(pint_vect.begin(), pint_vect.end()); in ptr_specialization_test()
Dalg_test.cpp129 slist<int> slint(ints, ints + ARRAY_SIZE(ints)); in search_n_test()
130 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 2); in search_n_test()
162 slist<int> slint(ints, ints + ARRAY_SIZE(ints)); in search_n_test()
163 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 1, greater<int>()); in search_n_test()
218 slist<int> intsl; in find_first_of_test()
Dmvctor_test.cpp702 vector<slist<string> > vect(10, slist<string>(10, long_str)); in vector_test()
706 vector<slist<string> >::iterator it(vect.begin()); in vector_test()
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
D_slist.h29 #define SLIST_IMPL _STLP_PTR_IMPL_NAME(slist)
48 # define slist _STLP_NON_DBG_NAME(slist) macro
53 class slist
54 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (slist)
55 : public __stlport_class<slist<_Tp, _Alloc> >
63 typedef slist<_Tp, _Alloc> _Self;
87 explicit slist(const allocator_type& __a = allocator_type())
91 explicit slist(size_type __n, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type),
93 slist(size_type __n, const value_type& __x,
99 explicit slist(size_type __n) : _M_impl(__n) {} in slist() function
[all …]
/ndk/sources/cxx-stl/stlport/stlport/
Dslist28 /* Comment following if you want to use the slist constainer even if you ask for
31 # error The slist class is an STLport extension.
42 //# include _STLP_NATIVE_HEADER(slist)
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_slist.h34 #define _STLP_NON_DBG_SLIST _STLP_PRIV _STLP_NON_DBG_NAME(slist) <_Tp, _Alloc>
73 class slist :
79 , public __stlport_class<slist<_Tp, _Alloc> >
84 typedef slist<_Tp,_Alloc> _Self;
107 explicit slist(const allocator_type& __a = allocator_type())
111 explicit slist(size_type __n, const value_type& __x = _Tp(),
113 slist(size_type __n, const value_type& __x,
119 explicit slist(size_type __n) : _M_non_dbg_impl(__n) , _M_iter_list(&_M_non_dbg_impl) {} in slist() function
123 slist(__move_source<_Self> src) in slist() function
138 slist(_InputIterator __first, _InputIterator __last, in slist() function
[all …]
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/
Dtest.cpp84 std::slist<int> slist1; in main()
85 std::slist<int> slist2; in main()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/stdlib/
Dlibstdcpp3.hpp83 # define BOOST_SLIST_HEADER <ext/slist>
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/container/
Dcontainer_fwd.hpp73 class slist;
/ndk/sources/cxx-stl/stlport/src/
Ddll_main.cpp177 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(slist)<void*, allocator<void*> >;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/
Dsuffix.hpp313 # define BOOST_SLIST_HEADER <slist>