HomeSort by relevance Sort by last modified time
    Searched full:min_allocator (Results 126 - 150 of 776) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
insert_iter_size_value.pass.cpp 18 #include "../../min_allocator.h"
37 std::vector<bool, min_allocator<bool>> v(100);
38 std::vector<bool, min_allocator<bool>>::iterator i = v.insert(v.cbegin() + 10, 5, 1);
insert_iter_value.pass.cpp 18 #include "../../min_allocator.h"
36 std::vector<bool, min_allocator<bool>> v(100);
37 std::vector<bool, min_allocator<bool>>::iterator i = v.insert(v.cbegin() + 10, 1);
reserve.pass.cpp 18 #include "../../min_allocator.h"
39 std::vector<bool, min_allocator<bool>> v;
44 std::vector<bool, min_allocator<bool>> v(100);
resize_size_value.pass.cpp 18 #include "../../min_allocator.h"
38 std::vector<bool, min_allocator<bool>> v(100);
42 assert((v == std::vector<bool, min_allocator<bool>>(50)));
erase_iter.pass.cpp 18 #include "../../min_allocator.h"
45 std::vector<bool, min_allocator<bool>> l1(a1, a1+3);
46 std::vector<bool, min_allocator<bool>>::const_iterator i = l1.begin();
48 std::vector<bool, min_allocator<bool>>::iterator j = l1.erase(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
max_load_factor.pass.cpp 23 #include "../../min_allocator.h"
44 min_allocator<std::pair<const int, std::string>>> C;
51 min_allocator<std::pair<const int, std::string>>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
max_load_factor.pass.cpp 23 #include "../../min_allocator.h"
44 min_allocator<std::pair<const int, std::string>>> C;
51 min_allocator<std::pair<const int, std::string>>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
bucket_count.pass.cpp 21 #include "../../min_allocator.h"
53 std::equal_to<int>, min_allocator<int>> C;
61 std::equal_to<int>, min_allocator<int>> C;
load_factor.pass.cpp 22 #include "../../min_allocator.h"
52 std::equal_to<int>, min_allocator<int>> C;
70 std::equal_to<int>, min_allocator<int>> C;
max_load_factor.pass.cpp 22 #include "../../min_allocator.h"
43 std::equal_to<int>, min_allocator<int>> C;
50 std::equal_to<int>, min_allocator<int>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
bucket_count.pass.cpp 21 #include "../../min_allocator.h"
52 typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C;
59 typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C;
load_factor.pass.cpp 22 #include "../../min_allocator.h"
52 std::equal_to<int>, min_allocator<int>> C;
70 std::equal_to<int>, min_allocator<int>> C;
max_load_factor.pass.cpp 22 #include "../../min_allocator.h"
43 std::equal_to<int>, min_allocator<int>> C;
50 std::equal_to<int>, min_allocator<int>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.io/
get_line_delim_rv.pass.cpp 21 #include "../../min_allocator.h"
38 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
44 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, min_allocator<wchar_t>> S;
get_line_rv.pass.cpp 21 #include "../../min_allocator.h"
38 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
44 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, min_allocator<wchar_t>> S;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
pop_front.pass.cpp 18 #include "../../../min_allocator.h"
52 typedef std::forward_list<T, min_allocator<T>> C;
53 typedef std::forward_list<T, min_allocator<T>> C;
66 typedef std::forward_list<T, min_allocator<T>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
size_type.pass.cpp 18 #include "../../../min_allocator.h"
53 std::list<int, min_allocator<int>> l(3);
56 std::list<int, min_allocator<int>>::const_iterator i = l.begin();
65 std::list<DefaultOnly, min_allocator<DefaultOnly>> l(3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
erase_iter.pass.cpp 17 #include "../../../min_allocator.h"
45 std::list<int, min_allocator<int>> l1(a1, a1+3);
46 std::list<int, min_allocator<int>>::const_iterator i = l1.begin();
48 std::list<int, min_allocator<int>>::iterator j = l1.erase(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.capacity/
resize_size_value.pass.cpp 17 #include "../../../min_allocator.h"
46 std::vector<int, min_allocator<int>> v(100);
50 assert((v == std::vector<int, min_allocator<int>>(50)));
60 std::vector<int, min_allocator<int>> v(100);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
erase_iter.pass.cpp 17 #include "../../../min_allocator.h"
45 std::vector<int, min_allocator<int>> l1(a1, a1+3);
46 std::vector<int, min_allocator<int>>::const_iterator i = l1.begin();
48 std::vector<int, min_allocator<int>>::iterator j = l1.erase(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
allocator.pass.cpp 25 #include "../../../min_allocator.h"
53 min_allocator<std::pair<const NotConstructible,
56 C c(min_allocator<std::pair<const NotConstructible, NotConstructible> >{});
61 (min_allocator<std::pair<const NotConstructible, NotConstructible> >()));
size_hash_equal_allocator.pass.cpp 25 #include "../../../min_allocator.h"
57 min_allocator<std::pair<const NotConstructible,
63 min_allocator<std::pair<const NotConstructible, NotConstructible> >()
69 (min_allocator<std::pair<const NotConstructible, NotConstructible> >()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/
allocator.pass.cpp 25 #include "../../../min_allocator.h"
53 min_allocator<std::pair<const NotConstructible,
56 C c(min_allocator<std::pair<const NotConstructible, NotConstructible> >{});
61 (min_allocator<std::pair<const NotConstructible, NotConstructible> >()));
size_hash_equal_allocator.pass.cpp 25 #include "../../../min_allocator.h"
57 min_allocator<std::pair<const NotConstructible,
63 min_allocator<std::pair<const NotConstructible, NotConstructible> >()
69 (min_allocator<std::pair<const NotConstructible, NotConstructible> >()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.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>());

Completed in 4951 milliseconds

1 2 3 4 56 7 8 91011>>