HomeSort by relevance Sort by last modified time
    Searched refs:other_allocator (Results 1 - 25 of 284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/containers/sequences/list/list.cons/
assign_copy.pass.cpp 29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3));
33 assert(l2.get_allocator() == other_allocator<int>(5));
copy_alloc.pass.cpp 29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3));
32 assert(l2.get_allocator() == other_allocator<int>(3));
copy.pass.cpp 35 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
36 std::list<int, other_allocator<int> > l2 = l;
38 assert(l2.get_allocator() == other_allocator<int>(-2));
  /external/libcxx/test/containers/sequences/vector/vector.cons/
assign_copy.pass.cpp 29 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
33 assert(l2.get_allocator() == other_allocator<int>(5));
copy_alloc.pass.cpp 44 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
45 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
47 assert(l2.get_allocator() == other_allocator<int>(3));
  /external/libcxx/test/containers/sequences/vector.bool/
assign_copy.pass.cpp 29 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
30 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
33 assert(l2.get_allocator() == other_allocator<bool>(5));
move_alloc.pass.cpp 49 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
50 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
56 std::vector<bool, other_allocator<bool> > l2(std::move(l), other_allocator<bool>(4));
59 assert(l2.get_allocator() == other_allocator<bool>(4));
copy_alloc.pass.cpp 44 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
45 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
47 assert(l2.get_allocator() == other_allocator<bool>(3));
move.pass.cpp 36 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
37 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
assign_copy.pass.cpp 29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3));
33 assert(l2.get_allocator() == other_allocator<int>(5));
copy_alloc.pass.cpp 29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3));
32 assert(l2.get_allocator() == other_allocator<int>(3));
copy.pass.cpp 35 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
36 std::list<int, other_allocator<int> > l2 = l;
38 assert(l2.get_allocator() == other_allocator<int>(-2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
assign_copy.pass.cpp 29 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
33 assert(l2.get_allocator() == other_allocator<int>(5));
copy_alloc.pass.cpp 46 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
47 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
49 assert(l2.get_allocator() == other_allocator<int>(3));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
assign_copy.pass.cpp 29 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
30 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
33 assert(l2.get_allocator() == other_allocator<bool>(5));
move_alloc.pass.cpp 49 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
50 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
56 std::vector<bool, other_allocator<bool> > l2(std::move(l), other_allocator<bool>(4));
59 assert(l2.get_allocator() == other_allocator<bool>(4));
copy_alloc.pass.cpp 44 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
45 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
47 assert(l2.get_allocator() == other_allocator<bool>(3));
move.pass.cpp 36 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
37 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l);
  /external/libcxx/test/containers/sequences/deque/deque.cons/
op_equal.pass.cpp 43 std::deque<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
44 std::deque<int, other_allocator<int> > l2(l, other_allocator<int>(3));
47 assert(l2.get_allocator() == other_allocator<int>(5));
copy_alloc.pass.cpp 40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)),
41 other_allocator<int>(4));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
op_equal.pass.cpp 43 std::deque<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
44 std::deque<int, other_allocator<int> > l2(l, other_allocator<int>(3));
47 assert(l2.get_allocator() == other_allocator<int>(5));
copy_alloc.pass.cpp 40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)),
41 other_allocator<int>(4));
  /external/libcxx/test/support/
test_allocator.h 127 class other_allocator class
131 template <class U> friend class other_allocator;
136 other_allocator() : data_(-1) {} function in class:other_allocator
137 explicit other_allocator(int i) : data_(i) {} function in class:other_allocator
138 template <class U> other_allocator(const other_allocator<U>& a) function in class:other_allocator
145 other_allocator select_on_container_copy_construction() const
146 {return other_allocator(-2);}
148 friend bool operator==(const other_allocator& x, const other_allocator& y
    [all...]
  /external/libcxx/test/thread/futures/
test_allocator.h 120 class other_allocator class
124 template <class U> friend class other_allocator;
129 other_allocator() : data_(-1) {} function in class:other_allocator
130 explicit other_allocator(int i) : data_(i) {} function in class:other_allocator
131 template <class U> other_allocator(const other_allocator<U>& a) function in class:other_allocator
138 other_allocator select_on_container_copy_construction() const
139 {return other_allocator(-2);}
141 friend bool operator==(const other_allocator& x, const other_allocator& y
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/
test_allocator.h 120 class other_allocator class
124 template <class U> friend class other_allocator;
129 other_allocator() : data_(-1) {} function in class:other_allocator
130 explicit other_allocator(int i) : data_(i) {} function in class:other_allocator
131 template <class U> other_allocator(const other_allocator<U>& a) function in class:other_allocator
138 other_allocator select_on_container_copy_construction() const
139 {return other_allocator(-2);}
141 friend bool operator==(const other_allocator& x, const other_allocator& y
    [all...]

Completed in 541 milliseconds

1 2 3 4 5 6 7 8 91011>>