/external/libcxx/test/containers/ |
stack_allocator.h | 17 class stack_allocator class 30 template <class U> struct rebind {typedef stack_allocator<U, N> other;}; 32 stack_allocator() : ptr_(buf_) {} function in class:stack_allocator 35 stack_allocator(const stack_allocator&);// = delete; 36 stack_allocator& operator=(const stack_allocator&);// = delete; 64 swap(stack_allocator<T, N>& x, stack_allocator<T, N>& y) {}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/ |
stack_allocator.h | 17 class stack_allocator class 30 template <class U> struct rebind {typedef stack_allocator<U, N> other;}; 32 stack_allocator() : ptr_(buf_) {} function in class:stack_allocator 35 stack_allocator(const stack_allocator&);// = delete; 36 stack_allocator& operator=(const stack_allocator&);// = delete; 64 swap(stack_allocator<T, N>& x, stack_allocator<T, N>& y) {}
|
/external/libcxx/test/containers/sequences/vector/vector.cons/ |
construct_iter_iter.pass.cpp | 18 #include "../../../stack_allocator.h" 42 test<std::vector<int, stack_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an)); 43 test<std::vector<int, stack_allocator<int, 18> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an)); 44 test<std::vector<int, stack_allocator<int, 18> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an)); 45 test<std::vector<int, stack_allocator<int, 18> > >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an)); 46 test<std::vector<int, stack_allocator<int, 18> > >(a, an);
|
construct_size_value.pass.cpp | 17 #include "../../../stack_allocator.h" 34 test<std::vector<int, stack_allocator<int, 50> > >(50, 5);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/ |
construct_iter_iter.pass.cpp | 18 #include "../../../stack_allocator.h" 44 test<std::vector<int, stack_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an)); 45 test<std::vector<int, stack_allocator<int, 18> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an)); 46 test<std::vector<int, stack_allocator<int, 18> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an)); 47 test<std::vector<int, stack_allocator<int, 18> > >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an)); 48 test<std::vector<int, stack_allocator<int, 18> > >(a, an);
|
construct_size_value.pass.cpp | 17 #include "../../../stack_allocator.h" 36 test<std::vector<int, stack_allocator<int, 50> > >(50, 5);
|
/external/libcxx/test/containers/sequences/vector/vector.capacity/ |
shrink_to_fit.pass.cpp | 16 #include "../../../stack_allocator.h" 29 std::vector<int, stack_allocator<int, 401> > v(100); 37 std::vector<int, stack_allocator<int, 400> > v(100);
|
resize_size.pass.cpp | 16 #include "../../../stack_allocator.h" 33 std::vector<MoveOnly, stack_allocator<MoveOnly, 300> > v(100); 52 std::vector<int, stack_allocator<int, 300> > v(100);
|
/external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/ |
ctor_comp.pass.cpp | 17 #include "../../../stack_allocator.h" 21 std::priority_queue<int, std::vector<int, stack_allocator<int, 10> > > q((std::less<int>()));
|
ctor_default.pass.cpp | 17 #include "../../../stack_allocator.h" 21 std::priority_queue<int, std::vector<int, stack_allocator<int, 10> > > q;
|
/external/libcxx/test/containers/container.adaptors/queue/queue.cons/ |
ctor_default.pass.cpp | 17 #include "../../../stack_allocator.h" 21 std::queue<int, std::vector<int, stack_allocator<int, 10> > > q;
|
/external/libcxx/test/containers/container.adaptors/stack/stack.cons/ |
ctor_default.pass.cpp | 18 #include "../../../stack_allocator.h" 22 std::stack<int, std::vector<int, stack_allocator<int, 10> > > q;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/ |
ctor_comp.pass.cpp | 17 #include "../../../stack_allocator.h" 21 std::priority_queue<int, std::vector<int, stack_allocator<int, 10> > > q((std::less<int>()));
|
ctor_default.pass.cpp | 17 #include "../../../stack_allocator.h" 21 std::priority_queue<int, std::vector<int, stack_allocator<int, 10> > > q;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons/ |
ctor_default.pass.cpp | 17 #include "../../../stack_allocator.h" 21 std::queue<int, std::vector<int, stack_allocator<int, 10> > > q;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons/ |
ctor_default.pass.cpp | 18 #include "../../../stack_allocator.h" 22 std::stack<int, std::vector<int, stack_allocator<int, 10> > > q;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.capacity/ |
shrink_to_fit.pass.cpp | 16 #include "../../../stack_allocator.h" 32 std::vector<int, stack_allocator<int, 401> > v(100); 42 std::vector<int, stack_allocator<int, 400> > v(100);
|
resize_size.pass.cpp | 16 #include "../../../stack_allocator.h" 36 std::vector<MoveOnly, stack_allocator<MoveOnly, 300> > v(100); 59 std::vector<int, stack_allocator<int, 300> > v(100);
|
/external/libcxx/test/containers/sequences/deque/deque.cons/ |
default.pass.cpp | 17 #include "../../../stack_allocator.h" 36 test<NotConstructible, stack_allocator<NotConstructible, 1> >();
|
size_value.pass.cpp | 17 #include "../../../stack_allocator.h" 47 test<int, stack_allocator<int, 4096> >(4095, 90);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
default.pass.cpp | 17 #include "../../../stack_allocator.h" 36 test<NotConstructible, stack_allocator<NotConstructible, 1> >();
|
/external/libcxx/test/containers/sequences/vector/vector.modifiers/ |
insert_iter_rvalue.pass.cpp | 20 #include "../../../stack_allocator.h" 40 std::vector<MoveOnly, stack_allocator<MoveOnly, 300> > v(100); 41 std::vector<MoveOnly, stack_allocator<MoveOnly, 300> >::iterator i = v.insert(v.cbegin() + 10, MoveOnly(3));
|
insert_iter_value.pass.cpp | 20 #include "../../../stack_allocator.h" 38 std::vector<int, stack_allocator<int, 300> > v(100); 39 std::vector<int, stack_allocator<int, 300> >::iterator i = v.insert(v.cbegin() + 10, 1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/ |
insert_iter_rvalue.pass.cpp | 20 #include "../../../stack_allocator.h" 42 std::vector<MoveOnly, stack_allocator<MoveOnly, 300> > v(100); 43 std::vector<MoveOnly, stack_allocator<MoveOnly, 300> >::iterator i = v.insert(v.cbegin() + 10, MoveOnly(3));
|
insert_iter_value.pass.cpp | 20 #include "../../../stack_allocator.h" 40 std::vector<int, stack_allocator<int, 300> > v(100); 41 std::vector<int, stack_allocator<int, 300> >::iterator i = v.insert(v.cbegin() + 10, 1);
|