Home
last modified time | relevance | path

Searched refs:Allocator (Results 1 – 25 of 34) sorted by relevance

12

/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/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
Dsize.pass.cpp21 template <class T, class Allocator>
26 typedef std::deque<T, Allocator> C; in test2()
30 C d(n, Allocator()); in test2()
43 template <class T, class Allocator>
47 typedef std::deque<T, Allocator> C; in test1()
63 template <class T, class Allocator>
65 test3(unsigned n, Allocator const &alloc = Allocator()) in test3()
68 typedef std::deque<T, Allocator> C; in test3()
78 template <class T, class Allocator>
82 test1<T, Allocator> ( n ); in test()
[all …]
Dalloc.pass.cpp21 template <class T, class Allocator>
23 test(const Allocator& a) in test()
25 std::deque<T, Allocator> d(a); in test()
Ddefault.pass.cpp21 template <class T, class Allocator>
25 std::deque<T, Allocator> d; in test()
28 std::deque<T, Allocator> d1 = {}; in test()
Diter_iter.pass.cpp26 typedef std::allocator<T> Allocator; in test() typedef
27 typedef std::deque<T, Allocator> C; in test()
36 template <class Allocator, class InputIterator>
41 typedef std::deque<T, Allocator> C; in test()
Dsize_value_alloc.pass.cpp19 template <class T, class Allocator>
21 test(unsigned n, const T& x, const Allocator& a) in test()
23 typedef std::deque<T, Allocator> C; in test()
Diter_iter_alloc.pass.cpp22 template <class InputIterator, class Allocator>
24 test(InputIterator f, InputIterator l, const Allocator& a) in test()
27 typedef std::deque<T, Allocator> C; in test()
Dsize_value.pass.cpp20 template <class T, class Allocator>
24 typedef std::deque<T, Allocator> C; in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/
Dtypes.pass.cpp40 template <class T, class Allocator>
44 typedef std::vector<T, Allocator> C; in test()
47 … static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); in test()
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); in test()
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); in test()
50 …static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::val… in test()
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), ""); in test()
52 …static_assert((std::is_same<typename C::const_reference, typename Allocator::const_reference>::val… in test()
53 static_assert((std::is_same<typename C::pointer, typename Allocator::pointer>::value), ""); in test()
54 …static_assert((std::is_same<typename C::const_pointer, typename Allocator::const_pointer>::value),… in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/
Dtypes.pass.cpp40 template <class T, class Allocator>
44 typedef std::deque<T, Allocator> C; in test()
47 … static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); in test()
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); in test()
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); in test()
50 …static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::val… in test()
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), ""); in test()
52 …static_assert((std::is_same<typename C::const_reference, typename Allocator::const_reference>::val… in test()
53 static_assert((std::is_same<typename C::pointer, typename Allocator::pointer>::value), ""); in test()
54 …static_assert((std::is_same<typename C::const_pointer, typename Allocator::const_pointer>::value),… in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.cons/
Dalloc.pass.cpp38 template <class T, class Allocator>
39 void check_allocator ( const dynarray<T> &dyn, const Allocator &alloc ) { in check_allocator()
44 template <class T, class Allocator>
45 void test ( const std::initializer_list<T> &vals, const Allocator &alloc ) { in test()
55 template <class T, class Allocator>
56 void test ( const T &val, const Allocator &alloc1, const Allocator &alloc2 ) { in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/
Dtypes.pass.cpp43 template <class Traits, class Allocator>
47 typedef std::basic_string<typename Traits::char_type, Traits, Allocator> S; in test()
51 … static_assert((std::is_same<typename S::value_type, typename Allocator::value_type>::value), ""); in test()
52 static_assert((std::is_same<typename S::allocator_type, Allocator>::value), ""); in test()
53 …static_assert((std::is_same<typename S::size_type, typename std::allocator_traits<Allocator>::size… in test()
54 …td::is_same<typename S::difference_type, typename std::allocator_traits<Allocator>::difference_typ… in test()
57 …static_assert((std::is_same<typename S::pointer, typename std::allocator_traits<Allocator>::pointe… in test()
58 …static_assert((std::is_same<typename S::const_pointer, typename std::allocator_traits<Allocator>::… in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
Dtypes.pass.cpp38 template <class Allocator>
42 typedef std::vector<bool, Allocator> C; in test()
45 … static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); in test()
46 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); in test()
47 …static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size… in test()
48 …td::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_typ… in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.const/
Dallocator.pass.cpp21 template <class CharT, class Allocator>
23 test(const Allocator& a) in test()
25 std::match_results<const CharT*, Allocator> m(a); in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.all/
Dget_allocator.pass.cpp21 template <class CharT, class Allocator>
23 test(const Allocator& a) in test()
25 std::match_results<const CharT*, Allocator> m(a); in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
Dsize.pass.cpp21 template <class T, class Allocator>
22 void check_allocator(unsigned n, Allocator const &alloc = Allocator()) in check_allocator()
25 typedef std::forward_list<T, Allocator> C; in check_allocator()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
Dsize_type.pass.cpp20 template <class T, class Allocator>
22 test3(unsigned n, Allocator const &alloc = Allocator()) in test3()
25 typedef std::list<T, Allocator> C; in test3()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dset22 class Allocator = allocator<Key>>
31 typedef Allocator allocator_type;
166 template <class Key, class Compare, class Allocator>
168 operator==(const set<Key, Compare, Allocator>& x,
169 const set<Key, Compare, Allocator>& y);
171 template <class Key, class Compare, class Allocator>
173 operator< (const set<Key, Compare, Allocator>& x,
174 const set<Key, Compare, Allocator>& y);
176 template <class Key, class Compare, class Allocator>
178 operator!=(const set<Key, Compare, Allocator>& x,
[all …]
Dsstream17 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
27 typedef Allocator allocator_type;
55 template <class charT, class traits, class Allocator>
56 void swap(basic_stringbuf<charT, traits, Allocator>& x,
57 basic_stringbuf<charT, traits, Allocator>& y);
62 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
72 typedef Allocator allocator_type;
90 template <class charT, class traits, class Allocator>
91 void swap(basic_istringstream<charT, traits, Allocator>& x,
92 basic_istringstream<charT, traits, Allocator>& y);
[all …]
Dmap22 class Allocator = allocator<pair<const Key, T>>>
31 typedef Allocator allocator_type;
187 template <class Key, class T, class Compare, class Allocator>
189 operator==(const map<Key, T, Compare, Allocator>& x,
190 const map<Key, T, Compare, Allocator>& y);
192 template <class Key, class T, class Compare, class Allocator>
194 operator< (const map<Key, T, Compare, Allocator>& x,
195 const map<Key, T, Compare, Allocator>& y);
197 template <class Key, class T, class Compare, class Allocator>
199 operator!=(const map<Key, T, Compare, Allocator>& x,
[all …]
Dstring74 template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
81 typedef Allocator allocator_type;
109 basic_string(initializer_list<value_type>, const Allocator& = Allocator());
110 basic_string(const basic_string&, const Allocator&);
111 basic_string(basic_string&&, const Allocator&);
272 template<class charT, class traits, class Allocator>
273 basic_string<charT, traits, Allocator>
274 operator+(const basic_string<charT, traits, Allocator>& lhs,
275 const basic_string<charT, traits, Allocator>& rhs);
277 template<class charT, class traits, class Allocator>
[all …]
Diosfwd31 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> >
Dforward_list20 template <class T, class Allocator = allocator<T>>
25 typedef Allocator allocator_type;
138 template <class T, class Allocator>
139 bool operator==(const forward_list<T, Allocator>& x,
140 const forward_list<T, Allocator>& y);
142 template <class T, class Allocator>
143 bool operator< (const forward_list<T, Allocator>& x,
144 const forward_list<T, Allocator>& y);
146 template <class T, class Allocator>
147 bool operator!=(const forward_list<T, Allocator>& x,
[all …]
Dvector20 template <class T, class Allocator = allocator<T> >
25 typedef Allocator allocator_type;
128 template <class Allocator = allocator<T> >
129 class vector<bool, Allocator>
133 typedef Allocator allocator_type;
247 template <class Allocator> struct hash<std::vector<bool, Allocator>>;
249 template <class T, class Allocator> bool operator==(const vector<T,Allocator>& x, const vector<T,Al…
250 template <class T, class Allocator> bool operator< (const vector<T,Allocator>& x, const vector<T,Al…
251 template <class T, class Allocator> bool operator!=(const vector<T,Allocator>& x, const vector<T,Al…
252 template <class T, class Allocator> bool operator> (const vector<T,Allocator>& x, const vector<T,Al…
[all …]
/ndk/sources/cxx-stl/stlport/stlport/
Dfunctional123 template<typename Signature, typename Allocator >
125 template<typename Signature, typename Allocator>
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);

12