/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/ |
D | swap_member.pass.cpp | 31 typedef test_allocator<int> Alloc; in main() typedef 32 typedef std::unordered_set<int, Hash, Compare, Alloc> C; in main() 34 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 35 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 43 assert(c1.get_allocator() == Alloc(1)); in main() 52 assert(c2.get_allocator() == Alloc(2)); in main() 60 typedef test_allocator<int> Alloc; in main() typedef 61 typedef std::unordered_set<int, Hash, Compare, Alloc> C; in main() 74 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/ |
D | swap_member.pass.cpp | 31 typedef test_allocator<int> Alloc; in main() typedef 32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; in main() 34 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 35 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 43 assert(c1.get_allocator() == Alloc(1)); in main() 52 assert(c2.get_allocator() == Alloc(2)); in main() 60 typedef test_allocator<int> Alloc; in main() typedef 61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; in main() 74 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/ |
D | swap_non_member.pass.cpp | 31 typedef test_allocator<int> Alloc; in main() typedef 32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; in main() 34 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 35 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 43 assert(c1.get_allocator() == Alloc(1)); in main() 52 assert(c2.get_allocator() == Alloc(2)); in main() 60 typedef test_allocator<int> Alloc; in main() typedef 61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; in main() 74 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.swap/ |
D | swap_non_member.pass.cpp | 31 typedef test_allocator<int> Alloc; in main() typedef 32 typedef std::unordered_set<int, Hash, Compare, Alloc> C; in main() 34 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 35 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 43 assert(c1.get_allocator() == Alloc(1)); in main() 52 assert(c2.get_allocator() == Alloc(2)); in main() 60 typedef test_allocator<int> Alloc; in main() typedef 61 typedef std::unordered_set<int, Hash, Compare, Alloc> C; in main() 74 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/ |
D | swap_member.pass.cpp | 32 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; in main() 35 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 36 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 44 assert(c1.get_allocator() == Alloc(1)); in main() 53 assert(c2.get_allocator() == Alloc(2)); in main() 61 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; in main() 75 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 76 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/ |
D | swap_non_member.pass.cpp | 32 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; in main() 35 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 36 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 44 assert(c1.get_allocator() == Alloc(1)); in main() 53 assert(c2.get_allocator() == Alloc(2)); in main() 61 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; in main() 75 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 76 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/ |
D | swap_non_member.pass.cpp | 32 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 33 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; in main() 35 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 36 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 44 assert(c1.get_allocator() == Alloc(1)); in main() 53 assert(c2.get_allocator() == Alloc(2)); in main() 61 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 62 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; in main() 75 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 76 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
D | swap_member.pass.cpp | 33 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 34 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; in main() 36 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 37 C c2(0, Hash(2), Compare(2), Alloc(2)); in main() 45 assert(c1.get_allocator() == Alloc(1)); in main() 54 assert(c2.get_allocator() == Alloc(2)); in main() 62 typedef test_allocator<std::pair<const int, std::string> > Alloc; in main() typedef 63 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; in main() 76 C c1(0, Hash(1), Compare(1), Alloc(1)); in main() 77 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
D | asan_testing.h | 19 template <typename T, typename Alloc> 20 bool is_contiguous_container_asan_correct ( const std::vector<T, Alloc> &c ) in is_contiguous_container_asan_correct() 22 if ( std::is_same<Alloc, std::allocator<T>>::value && c.data() != NULL) in is_contiguous_container_asan_correct() 29 template <typename T, typename Alloc> 30 bool is_contiguous_container_asan_correct ( const std::vector<T, Alloc> &c ) in is_contiguous_container_asan_correct()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/ |
D | allocator_pointers.pass.cpp | 34 template <typename Alloc> 37 typename std::allocator_traits<Alloc>::pointer vp; in test_pointer() 38 typename std::allocator_traits<Alloc>::const_pointer cvp; in test_pointer() 68 template <typename Alloc> 71 typename std::allocator_traits<Alloc>::void_pointer vp; in test_void_pointer() 72 typename std::allocator_traits<Alloc>::const_void_pointer cvp; in test_void_pointer()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/ |
D | allocator_pointers.pass.cpp | 34 template <typename Alloc> 37 typename std::allocator_traits<Alloc>::pointer vp; in test_pointer() 38 typename std::allocator_traits<Alloc>::const_pointer cvp; in test_pointer() 68 template <typename Alloc> 71 typename std::allocator_traits<Alloc>::void_pointer vp; in test_void_pointer() 72 typename std::allocator_traits<Alloc>::const_void_pointer cvp; in test_void_pointer()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | stack | 45 template <class Alloc> explicit stack(const Alloc& a); 46 template <class Alloc> stack(const container_type& c, const Alloc& a); 47 template <class Alloc> stack(container_type&& c, const Alloc& a); 48 template <class Alloc> stack(const stack& c, const Alloc& a); 49 template <class Alloc> stack(stack&& c, const Alloc& a);
|
D | queue | 45 template <class Alloc> 46 explicit queue(const Alloc& a); 47 template <class Alloc> 48 queue(const container_type& c, const Alloc& a); 49 template <class Alloc> 50 queue(container_type&& c, const Alloc& a); 51 template <class Alloc> 52 queue(const queue& q, const Alloc& a); 53 template <class Alloc> 54 queue(queue&& q, const Alloc& a); [all …]
|
D | tuple | 39 template <class Alloc> 40 tuple(allocator_arg_t, const Alloc& a); 41 template <class Alloc> 42 tuple(allocator_arg_t, const Alloc& a, const T&...); 43 template <class Alloc, class... U> 44 tuple(allocator_arg_t, const Alloc& a, U&&...); 45 template <class Alloc> 46 tuple(allocator_arg_t, const Alloc& a, const tuple&); 47 template <class Alloc> 48 tuple(allocator_arg_t, const Alloc& a, tuple&&); [all …]
|
D | unordered_set | 24 class Alloc = allocator<Value>> 33 typedef Alloc allocator_type; 157 template <class Value, class Hash, class Pred, class Alloc> 158 void swap(unordered_set<Value, Hash, Pred, Alloc>& x, 159 unordered_set<Value, Hash, Pred, Alloc>& y) 162 template <class Value, class Hash, class Pred, class Alloc> 164 operator==(const unordered_set<Value, Hash, Pred, Alloc>& x, 165 const unordered_set<Value, Hash, Pred, Alloc>& y); 167 template <class Value, class Hash, class Pred, class Alloc> 169 operator!=(const unordered_set<Value, Hash, Pred, Alloc>& x, [all …]
|
D | list | 20 template <class T, class Alloc = allocator<T> > 27 typedef Alloc allocator_type; 151 template <class T, class Alloc> 152 bool operator==(const list<T,Alloc>& x, const list<T,Alloc>& y); 153 template <class T, class Alloc> 154 bool operator< (const list<T,Alloc>& x, const list<T,Alloc>& y); 155 template <class T, class Alloc> 156 bool operator!=(const list<T,Alloc>& x, const list<T,Alloc>& y); 157 template <class T, class Alloc> 158 bool operator> (const list<T,Alloc>& x, const list<T,Alloc>& y); [all …]
|
D | unordered_map | 24 class Alloc = allocator<pair<const Key, T>>> 33 typedef Alloc allocator_type; 172 template <class Key, class T, class Hash, class Pred, class Alloc> 173 void swap(unordered_map<Key, T, Hash, Pred, Alloc>& x, 174 unordered_map<Key, T, Hash, Pred, Alloc>& y) 177 template <class Key, class T, class Hash, class Pred, class Alloc> 179 operator==(const unordered_map<Key, T, Hash, Pred, Alloc>& x, 180 const unordered_map<Key, T, Hash, Pred, Alloc>& y); 182 template <class Key, class T, class Hash, class Pred, class Alloc> 184 operator!=(const unordered_map<Key, T, Hash, Pred, Alloc>& x, [all …]
|
D | functional | 386 template<Allocator Alloc> 387 function(allocator_arg_t, const Alloc&) noexcept; 388 template<Allocator Alloc> 389 function(allocator_arg_t, const Alloc&, nullptr_t) noexcept; 390 template<Allocator Alloc> 391 function(allocator_arg_t, const Alloc&, const function&); 392 template<Allocator Alloc> 393 function(allocator_arg_t, const Alloc&, function&&); 394 template<class F, Allocator Alloc> 395 function(allocator_arg_t, const Alloc&, F); [all …]
|
D | memory | 23 template <class T, class Alloc> struct uses_allocator; 49 template <class Alloc> 52 typedef Alloc allocator_type; 56 typedef Alloc::pointer | value_type* pointer; 57 typedef Alloc::const_pointer 60 typedef Alloc::void_pointer 63 typedef Alloc::const_void_pointer 66 typedef Alloc::difference_type 69 typedef Alloc::size_type 72 typedef Alloc::propagate_on_container_copy_assignment [all …]
|
D | future | 146 template <class R, class Alloc> 147 struct uses_allocator<promise<R>, Alloc> : public true_type {}; 359 template <class R, class Alloc> struct uses_allocator<packaged_task<R>, Alloc>;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ext/ |
D | hash_set | 22 class Alloc = allocator<Value>> 31 typedef Alloc allocator_type; 93 template <class Value, class Hash, class Pred, class Alloc> 94 void swap(hash_set<Value, Hash, Pred, Alloc>& x, 95 hash_set<Value, Hash, Pred, Alloc>& y); 97 template <class Value, class Hash, class Pred, class Alloc> 99 operator==(const hash_set<Value, Hash, Pred, Alloc>& x, 100 const hash_set<Value, Hash, Pred, Alloc>& y); 102 template <class Value, class Hash, class Pred, class Alloc> 104 operator!=(const hash_set<Value, Hash, Pred, Alloc>& x, [all …]
|
D | hash_map | 22 class Alloc = allocator<pair<const Key, T>>> 31 typedef Alloc allocator_type; 96 template <class Key, class T, class Hash, class Pred, class Alloc> 97 void swap(hash_map<Key, T, Hash, Pred, Alloc>& x, 98 hash_map<Key, T, Hash, Pred, Alloc>& y); 100 template <class Key, class T, class Hash, class Pred, class Alloc> 102 operator==(const hash_map<Key, T, Hash, Pred, Alloc>& x, 103 const hash_map<Key, T, Hash, Pred, Alloc>& y); 105 template <class Key, class T, class Hash, class Pred, class Alloc> 107 operator!=(const hash_map<Key, T, Hash, Pred, Alloc>& x, [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | lexical_cast.hpp | 269 template <class CharT, class Traits, class Alloc> 270 struct stream_char< std::basic_string<CharT, Traits, Alloc> > 275 template <class CharT, class Traits, class Alloc> 276 struct stream_char< ::boost::container::basic_string<CharT, Traits, Alloc> > 337 template<class CharT, class Traits, class Alloc, class Source> 339 , std::basic_string<CharT,Traits,Alloc> 346 template<class CharT, class Target, class Traits, class Alloc> 349 , std::basic_string<CharT,Traits,Alloc> 355 template<class CharT, class Traits, class Alloc, class Source> 357 , ::boost::container::basic_string<CharT,Traits,Alloc> [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | dynarray | 41 template <typename Alloc> 42 dynarray(size_type c, const Alloc& alloc); 44 template <typename Alloc> 45 dynarray(size_type c, const T& v, const Alloc& alloc); 47 template <typename Alloc> 48 dynarray(const dynarray& d, const Alloc& alloc); 50 template <typename Alloc> 51 dynarray(initializer_list<T>, const Alloc& alloc);
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | cxxabi.cc | 128 void* Alloc() { in Alloc() function in __anondffbcc790111::PageBasedAllocator 238 obj = __cxa_eh_globals_allocator.Alloc(); in getSlow()
|