Home
last modified time | relevance | path

Searched refs:stack (Results 1 – 25 of 72) sorted by relevance

123

/ndk/sources/cxx-stl/llvm-libc++/include/
Dstack2 //===---------------------------- stack -----------------------------------===//
15 stack synopsis
21 class stack
34 stack() = default;
35 ~stack() = default;
37 stack(const stack& q) = default;
38 stack(stack&& q) = default;
40 stack& operator=(const stack& q) = default;
41 stack& operator=(stack&& q) = default;
43 explicit stack(const container_type& c);
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_stack.h47 class stack
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} in stack() function
75 explicit stack(const _Sequence& __s) : c(__s) {} in stack() function
78 stack(__move_source<_Self> src) in stack() function
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARGS >& __y)
[all …]
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.defn/
Dtypes.pass.cpp32 : private std::stack<int>
50 static_assert((std::is_same<std::stack<int>::container_type, std::deque<int> >::value), ""); in main()
51 …static_assert((std::is_same<std::stack<double, std::vector<int> >::container_type, std::vector<int… in main()
52 … static_assert((std::is_same<std::stack<double, std::vector<int> >::value_type, int>::value), ""); in main()
53 … static_assert((std::is_same<std::stack<int>::reference, std::deque<int>::reference>::value), ""); in main()
54 …static_assert((std::is_same<std::stack<int>::const_reference, std::deque<int>::const_reference>::v… in main()
55 … static_assert((std::is_same<std::stack<int>::size_type, std::deque<int>::size_type>::value), ""); in main()
56 static_assert((std::uses_allocator<std::stack<int>, std::allocator<int> >::value), ""); in main()
57 static_assert((!std::uses_allocator<std::stack<int, C>, std::allocator<int> >::value), ""); in main()
Dswap.pass.cpp29 std::stack<int> q1 = make<std::stack<int> >(5); in main()
30 std::stack<int> q2 = make<std::stack<int> >(10); in main()
31 std::stack<int> q1_save = q1; in main()
32 std::stack<int> q2_save = q2; in main()
Dtop_const.pass.cpp19 std::stack<int> q; in main()
24 const std::stack<int>& cqr = q; in main()
Dassign_copy.pass.cpp29 std::stack<int> q(make<std::deque<int> >(5)); in main()
30 std::stack<int> q2; in main()
Dassign_move.pass.cpp36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5)); in main()
37 std::stack<MoveOnly> q2; in main()
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.ops/
Deq.pass.cpp33 std::stack<int> q1 = make<std::stack<int> >(5); in main()
34 std::stack<int> q2 = make<std::stack<int> >(10); in main()
35 std::stack<int> q1_save = q1; in main()
36 std::stack<int> q2_save = q2; in main()
Dlt.pass.cpp39 std::stack<int> q1 = make<std::stack<int> >(5); in main()
40 std::stack<int> q2 = make<std::stack<int> >(10); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.special/
Dswap.pass.cpp30 std::stack<int> q1 = make<std::stack<int> >(5); in main()
31 std::stack<int> q2 = make<std::stack<int> >(10); in main()
32 std::stack<int> q1_save = q1; in main()
33 std::stack<int> q2_save = q2; in main()
/ndk/build/tools/
Dbuild-ndk-stack.sh56 BUILD_DIR=$NDK_TMPDIR/build-ndk-stack
61 OUT=$NDK_DIR/$(get_host_exec_name ndk-stack)
74 PROGNAME=ndk-stack
86 SRCDIR=$ANDROID_NDK_ROOT/sources/host-tools/ndk-stack
105 ARCHIVE=ndk-stack-$HOST_TAG.tar.bz2
106 SUBDIR=$(get_host_exec_name ndk-stack $HOST_TAG)
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dbinary2.sed17 # stack manipulation commands
18 # c clear stack
19 # P pop stack top
20 # D duplicate stack top
22 # r rotate stack counter-clockwise (second element becomes first)
23 # R rotate stack clockwise (last element becomes first)
26 # l print stack (stack top is first)
27 # p print stack top
28 # q quit, print stack top if any (cq is quiet quit)
33 # This version keeps the stack in hold space and the command in pattern
[all …]
Dbinary3.sed17 # stack manipulation commands
18 # c clear stack
19 # P pop stack top
20 # D duplicate stack top
22 # r rotate stack counter-clockwise (second element becomes first)
23 # R rotate stack clockwise (last element becomes first)
26 # l print stack (stack top is first)
27 # p print stack top
28 # q quit, print stack top if any (cq is quiet quit)
33 # This version keeps the stack and the current command in hold space and
[all …]
Dbinary.sed17 # stack manipulation commands
18 # c clear stack
19 # P pop stack top
20 # D duplicate stack top
22 # r rotate stack counter-clockwise (second element becomes first)
23 # R rotate stack clockwise (last element becomes first)
26 # l print stack (stack top is first)
27 # p print stack top
28 # q quit, print stack top if any (cq is quiet quit)
159 # stack.
/ndk/sources/host-tools/ndk-stack/
DGNUMakefile20 BUILD_DIR := /tmp/ndk-$(USER)/build/build-ndk-stack
21 PROGNAME := /tmp/ndk-$(USER)/ndk-stack
55 NDK_STACK_SOURCES := ndk-stack.c \
56 ndk-stack-parser.c
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.cons/
Dctor_copy.pass.cpp29 std::stack<int> q(make<std::deque<int> >(5)); in main()
30 std::stack<int> q2 = q; in main()
Dctor_move.pass.cpp36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5)); in main()
37 std::stack<MoveOnly> q2 = std::move(q); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.cons.alloc/
Dctor_alloc.pass.cpp21 : private std::stack<int, std::deque<int, test_allocator<int> > >
23 typedef std::stack<int, std::deque<int, test_allocator<int> > > base;
Dctor_copy_alloc.pass.cpp34 : public std::stack<T, C>
36 typedef std::stack<T, C> base;
Dctor_container_alloc.pass.cpp33 : public std::stack<int, C>
35 typedef std::stack<int, C> base;
Dctor_rcontainer_alloc.pass.cpp37 : public std::stack<T, C>
39 typedef std::stack<T, C> base;
Dctor_rqueue_alloc.pass.cpp37 : public std::stack<T, C>
39 typedef std::stack<T, C> base;
/ndk/tests/device/test-stlport/unit/
Dstack_test.cpp35 stack<int, deque<int> > s; in stack1()
49 stack<int, list<int> > s; in stack2()
Dmvctor_declaration_test.cpp273 CPPUNIT_ASSERT( is_movable(stack<char>()) ); in movable_declaration()
274 CPPUNIT_ASSERT( is_movable(stack<specially_allocated_struct>()) ); in movable_declaration()
276 CPPUNIT_ASSERT( is_move_complete(stack<char>()) ); in movable_declaration()
277 CPPUNIT_ASSERT( !is_move_complete(stack<specially_allocated_struct>()) ); in movable_declaration()
279 CPPUNIT_ASSERT( !is_move_complete(stack<char>()) ); in movable_declaration()
/ndk/tests/device/test-gnustl-full/unit/
Dstack_test.cpp35 stack<int, deque<int> > s; in stack1()
49 stack<int, list<int> > s; in stack2()

123