/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/ |
size_hash_equal_allocator.pass.cpp | 25 #include "../../../min_allocator.h" 55 min_allocator<NotConstructible> 60 min_allocator<std::pair<const NotConstructible, NotConstructible> >() 65 assert(c.get_allocator() == (min_allocator<NotConstructible>()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.cnstr/ |
allocator.pass.cpp | 25 #include "../../../min_allocator.h" 51 min_allocator<NotConstructible> 53 C c(min_allocator<NotConstructible>{}); 57 assert(c.get_allocator() == min_allocator<NotConstructible>());
|
size_hash_equal_allocator.pass.cpp | 25 #include "../../../min_allocator.h" 55 min_allocator<NotConstructible> 60 min_allocator<NotConstructible>() 65 assert(c.get_allocator() == (min_allocator<NotConstructible>()));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.access/ |
empty.pass.cpp | 19 #include "../../../min_allocator.h" 34 typedef std::map<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
alloc.pass.cpp | 20 #include "../../../min_allocator.h" 35 typedef min_allocator<std::pair<const int, double> > A;
|
compare.pass.cpp | 20 #include "../../../min_allocator.h" 34 std::map<int, double, C, min_allocator<std::pair<const int, double>>> m(C(3));
|
default.pass.cpp | 19 #include "../../../min_allocator.h" 30 std::map<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> m;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/ |
empty.pass.cpp | 19 #include "../../min_allocator.h" 34 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/ |
alloc.pass.cpp | 20 #include "../../../min_allocator.h" 35 typedef min_allocator<std::pair<const int, double> > A;
|
compare.pass.cpp | 20 #include "../../../min_allocator.h" 34 std::multimap<int, double, C, min_allocator<std::pair<const int, double>>> m(C(3));
|
default.pass.cpp | 19 #include "../../../min_allocator.h" 30 std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> m;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/ |
clear.pass.cpp | 19 #include "../../min_allocator.h" 44 typedef std::multiset<int, std::less<int>, min_allocator<int>> M;
|
empty.pass.cpp | 19 #include "../../min_allocator.h" 34 typedef std::multiset<int, std::less<int>, min_allocator<int>> M;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/ |
clear.pass.cpp | 19 #include "../../min_allocator.h" 44 typedef std::set<int, std::less<int>, min_allocator<int>> M;
|
empty.pass.cpp | 19 #include "../../min_allocator.h" 34 typedef std::set<int, std::less<int>, min_allocator<int>> M;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
assign_initializer_list.pass.cpp | 17 #include "../../../min_allocator.h" 33 std::deque<int, min_allocator<int>> d;
|
initializer_list.pass.cpp | 17 #include "../../../min_allocator.h" 32 std::deque<int, min_allocator<int>> d = {3, 4, 5, 6};
|
op_equal_initializer_list.pass.cpp | 17 #include "../../../min_allocator.h" 33 std::deque<int, min_allocator<int>> d;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/ |
iterators.pass.cpp | 23 #include "../../min_allocator.h" 38 typedef std::deque<int, min_allocator<int>> C;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/ |
alloc.pass.cpp | 19 #include "../../../min_allocator.h" 33 typedef min_allocator<NotConstructible> A;
|
size_value.pass.cpp | 17 #include "../../../min_allocator.h" 35 typedef std::forward_list<T, min_allocator<T>> C;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
reverse.pass.cpp | 19 #include "../../../min_allocator.h" 40 test<std::forward_list<int, min_allocator<int>> >(i);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/ |
db_back.pass.cpp | 24 #include "../../min_allocator.h" 40 typedef std::list<T, min_allocator<T>> C;
|
db_cback.pass.cpp | 24 #include "../../min_allocator.h" 38 typedef std::list<T, min_allocator<T>> C;
|
db_cfront.pass.cpp | 24 #include "../../min_allocator.h" 38 typedef std::list<T, min_allocator<T>> C;
|