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

1 2 3 45 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.capacity/
length.pass.cpp 17 #include "../min_allocator.h"
36 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
max_size.pass.cpp 17 #include "../min_allocator.h"
36 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.cons/
initializer_list_assignment.pass.cpp 17 #include "../min_allocator.h"
29 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_assign/
initializer_list.pass.cpp 17 #include "../../min_allocator.h"
29 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.capacity/
access.pass.cpp 27 #include "../../../min_allocator.h"
73 std::deque<int, min_allocator<int>> c = make<std::deque<int, min_allocator<int>> >(10);
82 const std::deque<int, min_allocator<int>> c = make<std::deque<int, min_allocator<int>> >(10);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
emplace.pass.cpp 21 #include "../../../min_allocator.h"
66 std::list<A, min_allocator<A>> c;
80 std::list<A, min_allocator<A>> c1;
81 std::list<A, min_allocator<A>> c2;
82 std::list<A, min_allocator<A>>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_iter_iter.pass.cpp 19 #include "../../../min_allocator.h"
48 test<std::vector<int, min_allocator<int>> >(input_iterator<const int*>(a), input_iterator<const int*>(an));
49 test<std::vector<int, min_allocator<int>> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
50 test<std::vector<int, min_allocator<int>> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
51 test<std::vector<int, min_allocator<int>> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
construct_size.pass.cpp 18 #include "../../../min_allocator.h"
40 test<std::vector<int, min_allocator<int>> >(50);
41 test<std::vector<DefaultOnly, min_allocator<DefaultOnly>> >(500);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
insert_iter_rvalue.pass.cpp 22 #include "../../../min_allocator.h"
61 std::vector<MoveOnly, min_allocator<MoveOnly>> v(100);
62 std::vector<MoveOnly, min_allocator<MoveOnly>>::iterator i = v.insert(v.cbegin() + 10, MoveOnly(3));
74 std::vector<int, min_allocator<int>> v1(3);
75 std::vector<int, min_allocator<int>> v2(3);
insert_iter_value.pass.cpp 21 #include "../../../min_allocator.h"
60 std::vector<int, min_allocator<int>> v(100);
61 std::vector<int, min_allocator<int>>::iterator i = v.insert(v.cbegin() + 10, 1);
73 std::vector<int, min_allocator<int>> v1(3);
74 std::vector<int, min_allocator<int>> v2(3);
emplace_extra.pass.cpp 17 #include "../../../min_allocator.h"
38 std::vector<int, min_allocator<int>> v;
45 std::vector<int, min_allocator<int>> v;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
iterators.pass.cpp 23 #include "../../min_allocator.h"
64 typedef std::vector<T, min_allocator<T>> C;
73 typedef std::vector<T, min_allocator<T>> C;
82 typedef std::vector<T, min_allocator<T>> C;
92 typedef std::vector<T, min_allocator<T>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.io/
stream_insert.pass.cpp 21 #include "../../min_allocator.h"
57 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
65 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
74 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, min_allocator<wchar_t>> S;
82 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/
min_allocator.h 12 template <class T> class min_allocator;
120 template <class U> friend class min_allocator;
226 class min_allocator class
232 min_allocator() = default;
234 min_allocator(min_allocator<U>) {} function in class:min_allocator
246 friend bool operator==(min_allocator, min_allocator) {return true;}
247 friend bool operator!=(min_allocator x, min_allocator y) {return !(x == y);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/
min_allocator.h 12 template <class T> class min_allocator;
120 template <class U> friend class min_allocator;
226 class min_allocator class
232 min_allocator() = default;
234 min_allocator(min_allocator<U>) {} function in class:min_allocator
246 friend bool operator==(min_allocator, min_allocator) {return true;}
247 friend bool operator!=(min_allocator x, min_allocator y) {return !(x == y);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/
iterators.pass.cpp 23 #include "../../min_allocator.h"
83 typedef std::list<T, min_allocator<T>> C;
92 typedef std::list<T, min_allocator<T>> C;
101 typedef std::list<T, min_allocator<T>> C;
111 typedef std::list<T, min_allocator<T>> C;
124 typedef std::list<T, min_allocator<T>> C;
130 typedef std::list<T, min_allocator<T>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/
iterators.pass.cpp 23 #include "../../min_allocator.h"
83 typedef std::vector<T, min_allocator<T>> C;
92 typedef std::vector<T, min_allocator<T>> C;
101 typedef std::vector<T, min_allocator<T>> C;
111 typedef std::vector<T, min_allocator<T>> C;
124 typedef std::vector<T, min_allocator<T>> C;
130 typedef std::vector<T, min_allocator<T>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.access/
front.pass.cpp 19 #include "../../../min_allocator.h"
44 typedef std::forward_list<T, min_allocator<T>> C;
54 typedef std::forward_list<T, min_allocator<T>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
clear.pass.cpp 18 #include "../../../min_allocator.h"
44 typedef std::forward_list<T, min_allocator<T>> C;
51 typedef std::forward_list<T, min_allocator<T>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
assign_initializer_list.pass.cpp 17 #include "../../../min_allocator.h"
34 std::list<int, min_allocator<int>> d;
37 std::list<int, min_allocator<int>>::iterator i = d.begin();
op_equal_initializer_list.pass.cpp 16 #include "../../../min_allocator.h"
33 std::list<int, min_allocator<int>> d;
36 std::list<int, min_allocator<int>>::iterator i = d.begin();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/
reverse.pass.cpp 17 #include "../../../min_allocator.h"
32 std::list<int, min_allocator<int>> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
34 assert((c1 == std::list<int, min_allocator<int>>(a2, a2+sizeof(a2)/sizeof(a2[0]))));
sort.pass.cpp 17 #include "../../../min_allocator.h"
32 std::list<int, min_allocator<int>> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
34 assert((c1 == std::list<int, min_allocator<int>>(a2, a2+sizeof(a2)/sizeof(a2[0]))));
sort_comp.pass.cpp 18 #include "../../../min_allocator.h"
33 std::list<int, min_allocator<int>> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
35 assert((c1 == std::list<int, min_allocator<int>>(a2, a2+sizeof(a2)/sizeof(a2[0]))));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.capacity/
reserve.pass.cpp 17 #include "../../../min_allocator.h"
48 std::vector<int, min_allocator<int>> v;
53 std::vector<int, min_allocator<int>> v(100);

Completed in 1393 milliseconds

1 2 3 45 6 7 8 91011>>