Home
last modified time | relevance | path

Searched refs:allocator (Results 1 – 25 of 143) sorted by relevance

123456

/ndk/sources/cxx-stl/stlport/src/
Ddll_main.cpp114 template class _STLP_CLASS_DECLSPEC allocator<_STLP_PRIV _Slist_node_base*>; variable
118 allocator<_Slist_node_base*> >;
120 allocator<_Slist_node_base*> >;
127 allocator<_Slist_node_base*> >;
132 allocator<_STLP_PRIV _Slist_node_base*> >;
137 template class _STLP_CLASS_DECLSPEC allocator<locale::facet*>; variable
140 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<lo…
141 template class _STLP_CLASS_DECLSPEC _Vector_base<locale::facet*, allocator<locale::facet*> >;
148 …PEC __construct_checker<_STLP_PRIV _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> …
149 template class _STLP_CLASS_DECLSPEC _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> …
[all …]
Dsstream.cpp27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >;
28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >;
29 template class _STLP_CLASS_DECLSPEC basic_istringstream<char, char_traits<char>, allocator<char> >;
30 template class _STLP_CLASS_DECLSPEC basic_stringstream<char, char_traits<char>, allocator<char> >;
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_…
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wc…
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wc…
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wch…
Dstring.cpp33 template class _STLP_CLASS_DECLSPEC allocator<char>; variable
37 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<char*, char, allocator<char> >;
38 template class _STLP_CLASS_DECLSPEC _String_base<char, allocator<char> >;
43 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
44 …_STLP_CLASS_DECLSPEC __construct_checker<basic_string<char, char_traits<char>, allocator<char> > >;
55 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
63 template class _STLP_CLASS_DECLSPEC allocator<wchar_t>; variable
67 template class _STLP_CLASS_DECLSPEC _String_base<wchar_t, allocator<wchar_t> >;
72 template class _STLP_CLASS_DECLSPEC basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> …
73 …SS_DECLSPEC __construct_checker<basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > >;
[all …]
Dlocale_impl.h35 _STLP_EXPORT_TEMPLATE_CLASS allocator<locale::facet*>; variable
39 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::fa…
40 _STLP_EXPORT_TEMPLATE_CLASS _Vector_base<locale::facet*, allocator<locale::facet*> >;
47 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_VECTOR<locale::facet*, allocator<loca…
48 _STLP_EXPORT_TEMPLATE_CLASS _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> >;
53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >;
72 basic_string<char, char_traits<char>, allocator<char> > name;
Dmessage_facets.h44 allocator<pair<_STLP_CONST nl_catd_type, locale> > > map_type;
79 allocator<pair<_STLP_CONST messages_base::catalog, nl_catd_type> > > map_type;
81 allocator<pair<_STLP_CONST nl_catd_type, messages_base::catalog> > > rmap_type;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/
Dallocator_types.pass.cpp36 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), ""); in main()
37 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), ""); in main()
38 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), ""); in main()
39 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), ""); in main()
40 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), ""); in main()
41 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), ""); in main()
42 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), ""); in main()
43 static_assert((std::is_same<std::allocator<char>::rebind<int>::other, in main()
44 std::allocator<int> >::value), ""); in main()
45 std::allocator<char> a; in main()
[all …]
Dallocator_void.pass.cpp28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), ""); in main()
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), ""); in main()
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), ""); in main()
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other, in main()
32 std::allocator<int> >::value), ""); in main()
33 std::allocator<void> a; in main()
34 std::allocator<void> a2 = a; in main()
Dallocator_pointers.pass.cpp106 test_pointer<std::allocator<char>> (); in main()
107 test_pointer<std::allocator<int>> (); in main()
108 test_pointer<std::allocator<Foo>> (); in main()
110 test_void_pointer<std::allocator<char>> (); in main()
111 test_void_pointer<std::allocator<int>> (); in main()
112 test_void_pointer<std::allocator<Foo>> (); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
Dsize_value.pass.cpp35 test<int, std::allocator<int> >(0, 5); in main()
36 test<int, std::allocator<int> >(1, 10); in main()
37 test<int, std::allocator<int> >(10, 11); in main()
38 test<int, std::allocator<int> >(1023, -11); in main()
39 test<int, std::allocator<int> >(1024, 25); in main()
40 test<int, std::allocator<int> >(1025, 0); in main()
41 test<int, std::allocator<int> >(2047, 110); in main()
42 test<int, std::allocator<int> >(2048, -500); in main()
43 test<int, std::allocator<int> >(2049, 654); in main()
44 test<int, std::allocator<int> >(4095, 78); in main()
[all …]
Dsize.pass.cpp88 test<DefaultOnly, std::allocator<DefaultOnly> >(0); in main()
89 test<DefaultOnly, std::allocator<DefaultOnly> >(1); in main()
90 test<DefaultOnly, std::allocator<DefaultOnly> >(10); in main()
91 test<DefaultOnly, std::allocator<DefaultOnly> >(1023); in main()
92 test<DefaultOnly, std::allocator<DefaultOnly> >(1024); in main()
93 test<DefaultOnly, std::allocator<DefaultOnly> >(1025); in main()
94 test<DefaultOnly, std::allocator<DefaultOnly> >(2047); in main()
95 test<DefaultOnly, std::allocator<DefaultOnly> >(2048); in main()
96 test<DefaultOnly, std::allocator<DefaultOnly> >(2049); in main()
97 test<DefaultOnly, std::allocator<DefaultOnly> >(4095); in main()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/container/
Dcontainer_fwd.hpp52 ,class Allocator = std::allocator<T> >
57 ,class Allocator = std::allocator<T> >
62 ,class Allocator = std::allocator<T> >
67 ,class Allocator = std::allocator<T> >
72 ,class Allocator = std::allocator<T> >
78 ,class Allocator = std::allocator<Key> >
84 ,class Allocator = std::allocator<Key> >
91 ,class Allocator = std::allocator<std::pair<const Key, T> > >
98 ,class Allocator = std::allocator<std::pair<const Key, T> > >
104 ,class Allocator = std::allocator<Key> >
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_alloc.h270 class allocator //: public _AllocatorAux<_Tp>
274 : public __stlport_class<allocator<_Tp> >
286 typedef allocator<_Tp1> other;
289 allocator() _STLP_NOTHROW {} in allocator() function
291 template <class _Tp1> allocator(const allocator<_Tp1>&) _STLP_NOTHROW {} in allocator() function
293 allocator(const allocator<_Tp>&) _STLP_NOTHROW {} in allocator() function
295 allocator(__move_source<allocator<_Tp> > src) _STLP_NOTHROW {} in allocator() function
297 ~allocator() _STLP_NOTHROW {} in ~allocator()
359 void _M_swap_workaround(allocator<_Tp>& __other) {} in _M_swap_workaround()
364 class _STLP_CLASS_DECLSPEC allocator<void> {
[all …]
D_iosfwd.h45 _STLP_DFL_TMPL_PARAM(_Allocator , allocator<_CharT>) >
49 _STLP_DFL_TMPL_PARAM(_Allocator , allocator<_CharT>) >
53 _STLP_DFL_TMPL_PARAM(_Allocator , allocator<_CharT>) >
57 _STLP_DFL_TMPL_PARAM(_Allocator , allocator<_CharT>) >
125 typedef basic_stringbuf<char, char_traits<char>, allocator<char> > stringbuf;
126 typedef basic_istringstream<char, char_traits<char>, allocator<char> > istringstream;
127 typedef basic_ostringstream<char, char_traits<char>, allocator<char> > ostringstream;
128 typedef basic_stringstream<char, char_traits<char>, allocator<char> > stringstream;
142 typedef basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstringbuf;
143 typedef basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wistringstream;
[all …]
D_string_fwd.h31 class _Alloc = allocator<_CharT> >
40 typedef basic_string<char, char_traits<char>, allocator<char> > string;
43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
D_sstream.h107 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<char, char_traits<char>, allocator<char> >;
109 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
246 _STLP_EXPORT_TEMPLATE_CLASS basic_istringstream<char, char_traits<char>, allocator<char> >;
247 _STLP_EXPORT_TEMPLATE_CLASS basic_ostringstream<char, char_traits<char>, allocator<char> >;
248 _STLP_EXPORT_TEMPLATE_CLASS basic_stringstream<char, char_traits<char>, allocator<char> >;
250 _STLP_EXPORT_TEMPLATE_CLASS basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> …
251 _STLP_EXPORT_TEMPLATE_CLASS basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> …
252 _STLP_EXPORT_TEMPLATE_CLASS basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
D_iostream_string.h41 class __iostring_allocator : public allocator<_CharT> {
47 typedef allocator<_CharT> _Base;
132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/
Duses_allocator.pass.cpp28 static_assert((!std::uses_allocator<int, std::allocator<int> >::value), ""); in main()
29 static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), ""); in main()
30 static_assert((!std::uses_allocator<A, std::allocator<int> >::value), ""); in main()
31 static_assert((!std::uses_allocator<B, std::allocator<int> >::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/
Dtypes.pass.cpp33 static_assert((std::is_same<std::list<int>::allocator_type, std::allocator<int> >::value), ""); in main()
34 …static_assert((std::is_same<std::list<int>::reference, std::allocator<int>::reference>::value), ""… in main()
35 …static_assert((std::is_same<std::list<int>::const_reference, std::allocator<int>::const_reference>… in main()
36 static_assert((std::is_same<std::list<int>::pointer, std::allocator<int>::pointer>::value), ""); in main()
37 …static_assert((std::is_same<std::list<int>::const_pointer, std::allocator<int>::const_pointer>::va… in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Diosfwd21 template<class T> class allocator;
31 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
33 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
35 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
37 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
101 template<class _Tp> class _LIBCPP_TYPE_VIS_ONLY allocator;
116 class _Allocator = allocator<_CharT> >
119 class _Allocator = allocator<_CharT> >
122 class _Allocator = allocator<_CharT> >
125 class _Allocator = allocator<_CharT> >
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.globals/
Deq.pass.cpp27 std::allocator<int> a1; in main()
28 std::allocator<int> a2; in main()
/ndk/tests/device/test-gnustl-full/unit/
Dmvctor_declaration_test.cpp79 class allocator<specially_allocated_struct> { class
94 typedef allocator<_Tp1> other;
97 allocator() _STLP_NOTHROW {} in allocator() function in std::allocator
99 template <class _Tp1> allocator(const allocator<_Tp1>&) _STLP_NOTHROW {} in allocator() function in std::allocator
101 allocator(const allocator&) _STLP_NOTHROW {} in allocator() argument
102 ~allocator() _STLP_NOTHROW {} in ~allocator()
/ndk/tests/device/test-stlport/unit/
Dmvctor_declaration_test.cpp79 class allocator<specially_allocated_struct> { class
94 typedef allocator<_Tp1> other;
97 allocator() _STLP_NOTHROW {} in allocator() function in std::allocator
99 template <class _Tp1> allocator(const allocator<_Tp1>&) _STLP_NOTHROW {} in allocator() function in std::allocator
101 allocator(const allocator&) _STLP_NOTHROW {} in allocator() argument
102 ~allocator() _STLP_NOTHROW {} in ~allocator()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/
Dallocator_pointers.pass.cpp106 test_pointer<std::scoped_allocator_adaptor<std::allocator<char>>> (); in main()
107 test_pointer<std::scoped_allocator_adaptor<std::allocator<int>>> (); in main()
108 test_pointer<std::scoped_allocator_adaptor<std::allocator<Foo>>> (); in main()
110 test_void_pointer<std::scoped_allocator_adaptor<std::allocator<char>>> (); in main()
111 test_void_pointer<std::scoped_allocator_adaptor<std::allocator<int>>> (); in main()
112 test_void_pointer<std::scoped_allocator_adaptor<std::allocator<Foo>>> (); in main()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
Dsp_counted_impl.hpp90 return std::allocator<this_type>().allocate( 1, static_cast<this_type *>(0) ); in operator new()
95 std::allocator<this_type>().deallocate( static_cast<this_type *>(p), 1 ); in operator delete()
160 return std::allocator<this_type>().allocate( 1, static_cast<this_type *>(0) ); in operator new()
165 std::allocator<this_type>().deallocate( static_cast<this_type *>(p), 1 ); in operator delete()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
Dmax_size.pass.cpp66 std::allocator<int> a; in main()
67 … static_assert(noexcept(std::allocator_traits<std::allocator<int>>::max_size(a)) == true, ""); in main()

123456