Searched refs:stack (Results 1 - 25 of 63) sorted by relevance

123

/ndk/tests/device/test-gnustl-full/unit/
H A Dstack_header_test.cpp8 #include <stack>
/ndk/tests/device/test-stlport/unit/
H A Dstack_header_test.cpp8 #include <stack>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons/
H A Ddefault_noexcept.pass.cpp10 // <stack>
12 // stack()
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
H A Ddtor_noexcept.pass.cpp10 // <stack>
12 // ~stack() // implied noexcept;
14 #include <stack>
23 typedef std::stack<MoveOnly> C;
H A Dmove_assign_noexcept.pass.cpp10 // <stack>
12 // stack& operator=(stack&& c)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
H A Dmove_noexcept.pass.cpp10 // <stack>
12 // stack(stack&&)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
H A Dctor_copy.pass.cpp10 // <stack>
12 // stack(const stack&) = default;
14 #include <stack>
29 std::stack<int> q(make<std::deque<int> >(5));
30 std::stack<int> q2 = q;
H A Dctor_move.pass.cpp10 // <stack>
12 // stack(stack&& q);
14 #include <stack>
36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5));
37 std::stack<MoveOnly> q2 = std::move(q);
H A Dctor_default.pass.cpp10 // <stack>
12 // stack();
14 #include <stack>
22 std::stack<int, std::vector<int, stack_allocator<int, 10> > > q;
H A Dctor_rcontainer.pass.cpp10 // <stack>
12 // explicit stack(container_type&& c);
14 #include <stack>
36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/
H A Dsize.pass.cpp10 // <stack>
14 #include <stack>
19 std::stack<int> q;
H A Dswap.pass.cpp10 // <stack>
12 // void swap(stack& q);
14 #include <stack>
29 std::stack<int> q1 = make<std::stack<int> >(5);
30 std::stack<int> q2 = make<std::stack<int> >(10);
31 std::stack<int> q1_save = q1;
32 std::stack<int> q2_save = q2;
H A Dempty.pass.cpp10 // <stack>
14 #include <stack>
19 std::stack<int> q;
H A Dtop.pass.cpp10 // <stack>
14 #include <stack>
19 std::stack<int> q;
H A Dassign_copy.pass.cpp10 // <stack>
12 // stack& operator=(const stack& q);
14 #include <stack>
29 std::stack<int> q(make<std::deque<int> >(5));
30 std::stack<int> q2;
H A Dtop_const.pass.cpp10 // <stack>
14 #include <stack>
19 std::stack<int> q;
24 const std::stack<int>& cqr = q;
H A Dtypes.pass.cpp10 // <stack>
13 // class stack
27 #include <stack>
32 : private std::stack<int>
50 static_assert((std::is_same<std::stack<int>::container_type, std::deque<int> >::value), "");
51 static_assert((std::is_same<std::stack<double, std::vector<int> >::container_type, std::vector<int> >::value), "");
52 static_assert((std::is_same<std::stack<double, std::vector<int> >::value_type, int>::value), "");
53 static_assert((std::is_same<std::stack<int>::reference, std::deque<int>::reference>::value), "");
54 static_assert((std::is_same<std::stack<int>::const_reference, std::deque<int>::const_reference>::value), "");
55 static_assert((std::is_same<std::stack<in
[all...]
H A Demplace.pass.cpp10 // <stack>
14 #include <stack>
22 std::stack<Emplaceable> q;
H A Dpush.pass.cpp10 // <stack>
14 #include <stack>
19 std::stack<int> q;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/
H A Dversion.pass.cpp10 // <stack>
12 #include <stack>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.ops/
H A Deq.pass.cpp10 // <stack>
13 // bool operator==(const stack<T, Container>& x,const stack<T, Container>& y);
16 // bool operator!=(const stack<T, Container>& x,const stack<T, Container>& y);
18 #include <stack>
33 std::stack<int> q1 = make<std::stack<int> >(5);
34 std::stack<int> q2 = make<std::stack<in
[all...]
H A Dlt.pass.cpp10 // <stack>
13 // bool operator< (const stack<T, Container>& x,const stack<T, Container>& y);
16 // bool operator> (const stack<T, Container>& x,const stack<T, Container>& y);
19 // bool operator>=(const stack<T, Container>& x,const stack<T, Container>& y);
22 // bool operator<=(const stack<T, Container>& x,const stack<T, Container>& y);
24 #include <stack>
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.special/
H A Dswap.pass.cpp10 // <stack>
13 // void swap(stack<T, Container>& x, stack<T, Container>& y);
15 #include <stack>
30 std::stack<int> q1 = make<std::stack<int> >(5);
31 std::stack<int> q2 = make<std::stack<int> >(10);
32 std::stack<int> q1_save = q1;
33 std::stack<in
[all...]
H A Dswap_noexcept.pass.cpp10 // <stack>
12 // void swap(stack& c)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
/ndk/build/tools/
H A Dbuild-ndk-depends.sh24 $PROGDIR/build-ndk-stack.sh --program-name=ndk-depends "$@"

Completed in 266 milliseconds

123