/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | stack | 2 //===---------------------------- 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.h | 47 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/ |
D | types.pass.cpp | 32 : 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()
|
D | swap.pass.cpp | 29 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()
|
D | top_const.pass.cpp | 19 std::stack<int> q; in main() 24 const std::stack<int>& cqr = q; in main()
|
D | assign_copy.pass.cpp | 29 std::stack<int> q(make<std::deque<int> >(5)); in main() 30 std::stack<int> q2; in main()
|
D | assign_move.pass.cpp | 36 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/ |
D | eq.pass.cpp | 33 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()
|
D | lt.pass.cpp | 39 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/ |
D | swap.pass.cpp | 30 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/ |
D | build-ndk-stack.sh | 56 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/ |
D | binary2.sed | 17 # 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 …]
|
D | binary3.sed | 17 # 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 …]
|
D | binary.sed | 17 # 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/ |
D | GNUMakefile | 20 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/ |
D | ctor_copy.pass.cpp | 29 std::stack<int> q(make<std::deque<int> >(5)); in main() 30 std::stack<int> q2 = q; in main()
|
D | ctor_move.pass.cpp | 36 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/ |
D | ctor_alloc.pass.cpp | 21 : private std::stack<int, std::deque<int, test_allocator<int> > > 23 typedef std::stack<int, std::deque<int, test_allocator<int> > > base;
|
D | ctor_copy_alloc.pass.cpp | 34 : public std::stack<T, C> 36 typedef std::stack<T, C> base;
|
D | ctor_container_alloc.pass.cpp | 33 : public std::stack<int, C> 35 typedef std::stack<int, C> base;
|
D | ctor_rcontainer_alloc.pass.cpp | 37 : public std::stack<T, C> 39 typedef std::stack<T, C> base;
|
D | ctor_rqueue_alloc.pass.cpp | 37 : public std::stack<T, C> 39 typedef std::stack<T, C> base;
|
/ndk/tests/device/test-stlport/unit/ |
D | stack_test.cpp | 35 stack<int, deque<int> > s; in stack1() 49 stack<int, list<int> > s; in stack2()
|
D | mvctor_declaration_test.cpp | 273 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/ |
D | stack_test.cpp | 35 stack<int, deque<int> > s; in stack1() 49 stack<int, list<int> > s; in stack2()
|