HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 151 - 175 of 1067) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/stlport/stlport/stl/
_sstream.h 107 _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> >;
  /external/stlport/test/unit/
mvctor_declaration_test.cpp 79 class allocator<specially_allocated_struct> { class in namespace:std
80 //This allocator just represent what a STLport could do and in this
83 //allocator.
94 typedef allocator<_Tp1> other;
97 allocator() _STLP_NOTHROW {}
99 template <class _Tp1> allocator(const allocator<_Tp1>&) _STLP_NOTHROW {}
101 allocator(const allocator&) _STLP_NOTHROW {}
102 ~allocator() _STLP_NOTHROW {
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/
types.pass.cpp 57 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/
types.pass.cpp 55 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), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/
types.pass.cpp 56 static_assert((std::uses_allocator<std::stack<int>, std::allocator<int> >::value), "");
57 static_assert((!std::uses_allocator<std::stack<int, C>, std::allocator<int> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
types.pass.cpp 14 // template <class Allocator>
15 // class vector<bool, Allocator
19 // typedef Allocator allocator_type;
38 template <class Allocator>
42 typedef std::vector<bool, Allocator> C;
45 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
46 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
48 static_assert((std::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
66 test<std::allocator<bool> >()
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 107 _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> >;
  /ndk/tests/device/test-gnustl-full/unit/
mvctor_declaration_test.cpp 79 class allocator<specially_allocated_struct> { class in namespace:std
80 //This allocator just represent what a STLport could do and in this
83 //allocator.
94 typedef allocator<_Tp1> other;
97 allocator() _STLP_NOTHROW {}
99 template <class _Tp1> allocator(const allocator<_Tp1>&) _STLP_NOTHROW {}
101 allocator(const allocator&) _STLP_NOTHROW {}
102 ~allocator() _STLP_NOTHROW {
    [all...]
  /ndk/tests/device/test-stlport/unit/
mvctor_declaration_test.cpp 79 class allocator<specially_allocated_struct> { class in namespace:std
80 //This allocator just represent what a STLport could do and in this
83 //allocator.
94 typedef allocator<_Tp1> other;
97 allocator() _STLP_NOTHROW {}
99 template <class _Tp1> allocator(const allocator<_Tp1>&) _STLP_NOTHROW {}
101 allocator(const allocator&) _STLP_NOTHROW {}
102 ~allocator() _STLP_NOTHROW {
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_construct.h 73 // 402. wrong new expression in [some_]allocator::construct
121 * Destroy a range of objects using the supplied allocator. For
126 template <typename _Tp> class allocator;
140 allocator<_Tp>&)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/
list_update_policy.hpp 54 #define PB_DS_CLASS_T_DEC template<typename Allocator>
55 #define PB_DS_CLASS_C_DEC move_to_front_lu_policy<Allocator>
59 template<typename Allocator = std::allocator<char> >
63 typedef Allocator allocator_type;
90 #define PB_DS_CLASS_T_DEC template<size_t Max_Count, class Allocator>
91 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
95 template<size_t Max_Count = 5, typename Allocator = std::allocator<char> >
97 : private detail::counter_lu_policy_base<typename Allocator::size_type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_construct.h 83 // 402. wrong new expression in [some_]allocator::construct
132 * Destroy a range of objects using the supplied allocator. For
137 template <typename _Tp> class allocator;
151 allocator<_Tp>&)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/
list_update_policy.hpp 56 #define PB_DS_CLASS_T_DEC template<typename Allocator>
57 #define PB_DS_CLASS_C_DEC move_to_front_lu_policy<Allocator>
61 template<typename Allocator = std::allocator<char> >
65 typedef Allocator allocator_type;
92 #define PB_DS_CLASS_T_DEC template<std::size_t Max_Count, class Allocator>
93 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
98 typename Allocator = std::allocator<char> >
100 : private detail::counter_lu_policy_base<typename Allocator::size_type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_construct.h 83 // 402. wrong new expression in [some_]allocator::construct
132 * Destroy a range of objects using the supplied allocator. For
137 template <typename _Tp> class allocator;
151 allocator<_Tp>&)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/
list_update_policy.hpp 56 #define PB_DS_CLASS_T_DEC template<typename Allocator>
57 #define PB_DS_CLASS_C_DEC move_to_front_lu_policy<Allocator>
61 template<typename Allocator = std::allocator<char> >
65 typedef Allocator allocator_type;
92 #define PB_DS_CLASS_T_DEC template<std::size_t Max_Count, class Allocator>
93 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
98 typename Allocator = std::allocator<char> >
100 : private detail::counter_lu_policy_base<typename Allocator::size_type
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_construct.h 73 // 402. wrong new expression in [some_]allocator::construct
121 * Destroy a range of objects using the supplied allocator. For
126 template <typename _Tp> class allocator;
140 allocator<_Tp>&)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
list_update_policy.hpp 54 #define PB_DS_CLASS_T_DEC template<typename Allocator>
55 #define PB_DS_CLASS_C_DEC move_to_front_lu_policy<Allocator>
59 template<typename Allocator = std::allocator<char> >
63 typedef Allocator allocator_type;
90 #define PB_DS_CLASS_T_DEC template<size_t Max_Count, class Allocator>
91 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
95 template<size_t Max_Count = 5, typename Allocator = std::allocator<char> >
97 : private detail::counter_lu_policy_base<typename Allocator::size_type
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 107 _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> >;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_construct.h 73 // 402. wrong new expression in [some_]allocator::construct
121 * Destroy a range of objects using the supplied allocator. For
126 template <typename _Tp> class allocator;
140 allocator<_Tp>&)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
list_update_policy.hpp 54 #define PB_DS_CLASS_T_DEC template<typename Allocator>
55 #define PB_DS_CLASS_C_DEC move_to_front_lu_policy<Allocator>
59 template<typename Allocator = std::allocator<char> >
63 typedef Allocator allocator_type;
90 #define PB_DS_CLASS_T_DEC template<size_t Max_Count, class Allocator>
91 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
95 template<size_t Max_Count = 5, typename Allocator = std::allocator<char> >
97 : private detail::counter_lu_policy_base<typename Allocator::size_type
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 107 _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> >;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_construct.h 73 // 402. wrong new expression in [some_]allocator::construct
121 * Destroy a range of objects using the supplied allocator. For
126 template <typename _Tp> class allocator;
140 allocator<_Tp>&)
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
list_update_policy.hpp 54 #define PB_DS_CLASS_T_DEC template<typename Allocator>
55 #define PB_DS_CLASS_C_DEC move_to_front_lu_policy<Allocator>
59 template<typename Allocator = std::allocator<char> >
63 typedef Allocator allocator_type;
90 #define PB_DS_CLASS_T_DEC template<size_t Max_Count, class Allocator>
91 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
95 template<size_t Max_Count = 5, typename Allocator = std::allocator<char> >
97 : private detail::counter_lu_policy_base<typename Allocator::size_type
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 107 _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> >;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_construct.h 73 // 402. wrong new expression in [some_]allocator::construct
121 * Destroy a range of objects using the supplied allocator. For
126 template <typename _Tp> class allocator;
140 allocator<_Tp>&)

Completed in 2178 milliseconds

1 2 3 4 5 67 8 91011>>