Searched refs:allocator (Results 1 - 25 of 117) sorted by relevance

12345

/ndk/sources/cxx-stl/stlport/src/
H A 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_t> >;
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
H A Dstring.cpp33 template class _STLP_CLASS_DECLSPEC allocator<char>; variable in typeref:class:_STLP_CLASS_DECLSPEC
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 template class _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 in typeref:class:_STLP_CLASS_DECLSPEC
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 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_
[all...]
H A Ddll_main.cpp114 template class _STLP_CLASS_DECLSPEC allocator<_STLP_PRIV _Slist_node_base*>; variable in typeref:class:_STLP_CLASS_DECLSPEC
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 in typeref:class:_STLP_CLASS_DECLSPEC
140 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >;
141 template class _STLP_CLASS_DECLSPEC _Vector_base<locale::facet*, allocator<locale::facet*> >;
148 template class _STLP_CLASS_DECLSPEC __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<local
158 template class _STLP_CLASS_DECLSPEC allocator<void*>; variable in typeref:class:_STLP_CLASS_DECLSPEC
161 template class _STLP_CLASS_DECLSPEC allocator<_VoidPtr_Node>; variable in typeref:class:_STLP_CLASS_DECLSPEC
167 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(vector)<void*, allocator<void*> >; variable
172 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(list)<void*, allocator<void*> >; variable
177 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(slist)<void*, allocator<void*> >; variable
183 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(deque)<void*, allocator<void*> >; variable
[all...]
H A 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::facet*> >;
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<locale::facet*> > >;
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;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/
H A Dallocator_types.pass.cpp15 // class allocator
26 // template <class U> struct rebind {typedef allocator<U> other;};
36 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
37 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
38 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
39 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
40 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
41 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
42 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
43 static_assert((std::is_same<std::allocator<cha
[all...]
H A Dallocator_void.pass.cpp13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.globals/
H A Deq.pass.cpp12 // allocator:
16 // operator==(const allocator<T1>&, const allocator<T2>&) throw();
20 // operator!=(const allocator<T1>&, const allocator<T2>&) throw();
27 std::allocator<int> a1;
28 std::allocator<int> a2;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/
H A Duses_allocator.pass.cpp28 static_assert((!std::uses_allocator<int, std::allocator<int> >::value), "");
29 static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), "");
30 static_assert((!std::uses_allocator<A, std::allocator<int> >::value), "");
31 static_assert((!std::uses_allocator<B, std::allocator<int> >::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
H A Dsize_value.pass.cpp35 test<int, std::allocator<int> >(0, 5);
36 test<int, std::allocator<int> >(1, 10);
37 test<int, std::allocator<int> >(10, 11);
38 test<int, std::allocator<int> >(1023, -11);
39 test<int, std::allocator<int> >(1024, 25);
40 test<int, std::allocator<int> >(1025, 0);
41 test<int, std::allocator<int> >(2047, 110);
42 test<int, std::allocator<int> >(2048, -500);
43 test<int, std::allocator<int> >(2049, 654);
44 test<int, std::allocator<in
[all...]
H A Dsize.pass.cpp88 test<DefaultOnly, std::allocator<DefaultOnly> >(0);
89 test<DefaultOnly, std::allocator<DefaultOnly> >(1);
90 test<DefaultOnly, std::allocator<DefaultOnly> >(10);
91 test<DefaultOnly, std::allocator<DefaultOnly> >(1023);
92 test<DefaultOnly, std::allocator<DefaultOnly> >(1024);
93 test<DefaultOnly, std::allocator<DefaultOnly> >(1025);
94 test<DefaultOnly, std::allocator<DefaultOnly> >(2047);
95 test<DefaultOnly, std::allocator<DefaultOnly> >(2048);
96 test<DefaultOnly, std::allocator<DefaultOnly> >(2049);
97 test<DefaultOnly, std::allocator<DefaultOnl
[all...]
H A Dalloc.pass.cpp32 test<int>(std::allocator<int>());
H A Ddefault.pass.cpp35 test<int, std::allocator<int> >();
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/container/
H A 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<Ke
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A 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;
H A D_alloc.h56 // Malloc-based allocator. Typically slower than default alloc below.
86 // New-based allocator. Typically slower than default alloc below.
98 // NDEBUG, but it's far better to just use the underlying allocator
145 // Default node allocator.
175 /* macro to convert the allocator for initialization
179 * not used implicitly to convert allocator parameter, so let us do it explicitly */
191 // Another allocator adaptor: _Alloc_traits. This serves two
193 // either SGI-style allocators or standard-conforming allocator.
270 class allocator //: public _AllocatorAux<_Tp> class in inherits:__stlport_class
271 /* A small helper struct to recognize STLport allocator implementatio
364 class _STLP_CLASS_DECLSPEC allocator<void> { class
388 _STLP_EXPORT_TEMPLATE_CLASS allocator<char>; variable
390 _STLP_EXPORT_TEMPLATE_CLASS allocator<wchar_t>; variable
393 _STLP_EXPORT_TEMPLATE_CLASS allocator<void*>; variable
465 __stl_alloc_create(const allocator<_Tp1>&, const _Tp2*) argument
[all...]
H A 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_
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/
H A Dtypes.pass.cpp12 // template <class T, class Alloc = allocator<T> >
33 static_assert((std::is_same<std::list<int>::allocator_type, std::allocator<int> >::value), "");
34 static_assert((std::is_same<std::list<int>::reference, std::allocator<int>::reference>::value), "");
35 static_assert((std::is_same<std::list<int>::const_reference, std::allocator<int>::const_reference>::value), "");
36 static_assert((std::is_same<std::list<int>::pointer, std::allocator<int>::pointer>::value), "");
37 static_assert((std::is_same<std::list<int>::const_pointer, std::allocator<int>::const_pointer>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.const/
H A Ddefault.pass.cpp26 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
H A Daddress.pass.cpp12 // allocator:
24 const std::allocator<T> a;
H A Dmax_size.pass.cpp12 // allocator:
24 const std::allocator<int> a;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
H A Dmax_size.pass.cpp66 std::allocator<int> a;
67 static_assert(noexcept(std::allocator_traits<std::allocator<int>>::max_size(a)) == true, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
H A Dconstruct_size_value_alloc.pass.cpp35 test<std::vector<bool> >(50, 3, std::allocator<bool>());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
H A Dasan_testing.h22 if ( std::is_same<Alloc, std::allocator<T>>::value && c.data() != NULL)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/
H A Dtypes.pass.cpp57 static_assert((std::uses_allocator<std::priority_queue<int>, std::allocator<int> >::value), "");
58 static_assert((!std::uses_allocator<std::priority_queue<int, C>, std::allocator<int> >::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.defn/
H A Dtypes.pass.cpp55 static_assert((std::uses_allocator<std::queue<int>, std::allocator<int> >::value), "");
56 static_assert((!std::uses_allocator<std::queue<int, C>, std::allocator<int> >::value), "");

Completed in 752 milliseconds

12345