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

1 2

  /external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons/
ctor_comp.pass.cpp 21 std::priority_queue<int, std::vector<int, limited_allocator<int, 10> > > q((std::less<int>()));
ctor_default.pass.cpp 21 std::priority_queue<int, std::vector<int, limited_allocator<int, 10> > > q;
  /external/libcxx/test/std/containers/container.adaptors/queue/queue.cons/
ctor_default.pass.cpp 21 std::queue<int, std::vector<int, limited_allocator<int, 10> > > q;
  /external/libcxx/test/std/containers/container.adaptors/stack/stack.cons/
ctor_default.pass.cpp 22 std::stack<int, std::vector<int, limited_allocator<int, 10> > > q;
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
construct_iter_iter.pass.cpp 46 test<std::vector<int, limited_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an));
48 test<std::vector<int, limited_allocator<int, 18 + 1> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
49 test<std::vector<int, limited_allocator<int, 18 + 1> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
50 test<std::vector<int, limited_allocator<int, 18 + 1> > >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
51 test<std::vector<int, limited_allocator<int, 18 + 1> > >(a, an);
construct_size_value.pass.cpp 38 test<std::vector<int, limited_allocator<int, 50 + 1> > >(50, 5);
  /external/libcxx/test/std/containers/associative/map/map.access/
max_size.pass.cpp 28 typedef limited_allocator<KV, 10> A;
35 typedef limited_allocator<KV, (size_t)-1> A;
  /external/libcxx/test/std/containers/associative/multimap/
max_size.pass.cpp 28 typedef limited_allocator<KV, 10> A;
35 typedef limited_allocator<KV, (size_t)-1> A;
  /external/libcxx/test/std/containers/associative/multiset/
max_size.pass.cpp 27 typedef limited_allocator<int, 10> A;
34 typedef limited_allocator<int, (size_t)-1> A;
  /external/libcxx/test/std/containers/associative/set/
max_size.pass.cpp 27 typedef limited_allocator<int, 10> A;
34 typedef limited_allocator<int, (size_t)-1> A;
  /external/libcxx/test/std/containers/sequences/deque/deque.capacity/
max_size.pass.cpp 24 typedef limited_allocator<int, 10> A;
31 typedef limited_allocator<int, (size_t)-1> A;
  /external/libcxx/test/std/containers/sequences/forwardlist/
max_size.pass.cpp 25 typedef limited_allocator<int, 10> A;
32 typedef limited_allocator<int, (size_t)-1> A;
  /external/libcxx/test/std/containers/sequences/list/list.capacity/
max_size.pass.cpp 24 typedef limited_allocator<int, 10> A;
31 typedef limited_allocator<int, (size_t)-1> A;
  /external/libcxx/test/std/containers/sequences/vector/vector.capacity/
max_size.pass.cpp 25 typedef limited_allocator<int, 10> A;
32 typedef limited_allocator<int, (size_t)-1> A;
shrink_to_fit.pass.cpp 32 std::vector<int, limited_allocator<int, 401> > v(100);
42 std::vector<int, limited_allocator<int, 400> > v(100);
resize_size.pass.cpp 37 std::vector<MoveOnly, limited_allocator<MoveOnly, 300 + 1> > v(100);
61 std::vector<int, limited_allocator<int, 300 + 1> > v(100);
  /external/libcxx/test/std/containers/unord/unord.map/
max_size.pass.cpp 28 typedef limited_allocator<KV, 10> A;
36 typedef limited_allocator<KV, (size_t)-1> A;
  /external/libcxx/test/std/containers/unord/unord.multimap/
max_size.pass.cpp 28 typedef limited_allocator<KV, 10> A;
37 typedef limited_allocator<KV, (size_t)-1> A;
  /external/libcxx/test/std/containers/unord/unord.multiset/
max_size.pass.cpp 27 typedef limited_allocator<int, 10> A;
36 typedef limited_allocator<int, (size_t)-1> A;
  /external/libcxx/test/std/containers/unord/unord.set/
max_size.pass.cpp 27 typedef limited_allocator<int, 10> A;
34 typedef limited_allocator<int, (size_t)-1> A;
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
default.pass.cpp 36 test<NotConstructible, limited_allocator<NotConstructible, 1> >();
size_value.pass.cpp 48 LIBCPP_ONLY(test<int, limited_allocator<int, 4096> >(4095, 90));
  /external/libcxx/test/support/
test_allocator.h 352 class limited_allocator class
354 template <class U, std::size_t UN> friend class limited_allocator;
366 template <class U> struct rebind { typedef limited_allocator<U, N> other; };
368 limited_allocator() : handle_(new BuffT) {} function in class:limited_allocator
370 limited_allocator(limited_allocator const& other) : handle_(other.handle_) {} function in class:limited_allocator
373 explicit limited_allocator(limited_allocator<U, N> const& other) function in class:limited_allocator
377 limited_allocator& operator=(const limited_allocator&);// = delete
    [all...]
  /external/libcxx/test/std/containers/sequences/list/list.cons/
default_stack_alloc.pass.cpp 32 std::list<int, limited_allocator<int, 4> > l;
  /external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
insert_iter_rvalue.pass.cpp 41 std::vector<MoveOnly, limited_allocator<MoveOnly, 300> > v(100);
42 std::vector<MoveOnly, limited_allocator<MoveOnly, 300> >::iterator i = v.insert(v.cbegin() + 10, MoveOnly(3));

Completed in 1109 milliseconds

1 2