/external/libcxx/test/containers/container.adaptors/stack/ |
version.pass.cpp | 10 // <stack> 12 #include <stack>
|
/external/libunwind/src/ia64/ |
Linstall_cursor.S | 4 /* We do not need executable stack. */ 5 .section .note.GNU-stack,"",@progbits
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/ |
version.pass.cpp | 10 // <stack> 12 #include <stack>
|
/external/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
swap.pass.cpp | 10 // <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;
|
empty.pass.cpp | 10 // <stack> 14 #include <stack> 19 std::stack<int> q;
|
top.pass.cpp | 10 // <stack> 14 #include <stack> 19 std::stack<int> q;
|
/external/libcxx/test/containers/container.adaptors/stack/stack.ops/ |
eq.pass.cpp | 10 // <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<int> >(10) [all...] |
lt.pass.cpp | 10 // <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...] |
Android.mk | 17 test_makefile := external/libcxx/test/containers/container.adaptors/stack/stack.ops/Android.mk 19 test_name := containers/container.adaptors/stack/stack.ops/lt 23 test_name := containers/container.adaptors/stack/stack.ops/eq
|
/external/libcxx/test/containers/container.adaptors/stack/stack.special/ |
swap.pass.cpp | 10 // <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<int> q2_save = q2 [all...] |
Android.mk | 17 test_makefile := external/libcxx/test/containers/container.adaptors/stack/stack.special/Android.mk 19 test_name := containers/container.adaptors/stack/stack.special/swap 23 test_name := containers/container.adaptors/stack/stack.special/swap_noexcept
|
swap_noexcept.pass.cpp | 10 // <stack> 12 // void swap(stack& c) 17 #include <stack> 26 typedef std::stack<MoveOnly> C;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
swap.pass.cpp | 10 // <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;
|
empty.pass.cpp | 10 // <stack> 14 #include <stack> 19 std::stack<int> q;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.ops/ |
eq.pass.cpp | 10 // <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<int> >(10) [all...] |
lt.pass.cpp | 10 // <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/ |
swap.pass.cpp | 10 // <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<int> q2_save = q2 [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
SizesCalcParser.cpp | 32 bool SizesCalcParser::handleOperator(Vector<MediaQueryToken>& stack, const MediaQueryToken& token) 35 // while there is an operator token, o2, at the top of the stack, and 38 // pop o2 off the stack, onto the output queue; 39 // push o1 onto the stack. 45 if (!stack.isEmpty() && stack.last().type() == DelimiterToken) { 46 if (!operatorPriority(stack.last().delimiter(), stackOperatorPriority)) 49 appendOperator(stack.last()); 50 stack.removeLast(); 53 stack.append(token) 88 Vector<MediaQueryToken> stack; local 198 Vector<SizesCalcValue> stack; local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
stack_utils.py | 29 """Simple routines for logging, obtaining thread stack information.""" 37 stack = _find_thread_stack(thread_id) 38 assert(stack is not None) 41 _log_stack(logger, stack) 46 """Returns a stack object that can be used to dump a stack trace for 48 for tid, stack in sys._current_frames().items(): 50 return stack 54 def _log_stack(logger, stack): 55 """Log a stack trace to the logger callback."" [all...] |
/external/easymock/src/org/easymock/internal/ |
LastControl.java | 21 import java.util.Stack;
31 private static final ThreadLocal<Stack<Invocation>> threadToCurrentInvocation = new ThreadLocal<Stack<Invocation>>();
33 private static final ThreadLocal<Stack<IArgumentMatcher>> threadToArgumentMatcherStack = new ThreadLocal<Stack<IArgumentMatcher>>();
48 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
local 49 if (stack == null) {
50 stack = new Stack<IArgumentMatcher>(); 57 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local 66 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local 72 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local 78 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local 98 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local 104 Stack<Invocation> stack = threadToCurrentInvocation.get(); local 112 Stack<Invocation> stack = threadToCurrentInvocation.get(); local 121 Stack<Invocation> stack = threadToCurrentInvocation.get(); local [all...] |
/prebuilts/misc/common/swig/include/2.0.11/std/ |
std_stack.i | 5 * @brief A wrapping of std::stack for Ruby. 12 // Stack 14 %define %std_stack_methods(stack...) 15 stack(); 16 stack( const _Sequence& ); 25 %define %std_stack_methods_val(stack...) 26 %std_stack_methods(stack) 30 // std::stack 35 // -- f(std::stack<T>), f(const std::stack<T>&) [all...] |
/external/chromium_org/chrome/browser/ui/panels/ |
stacked_panel_drag_handler.cc | 20 StackedPanelCollection* stack = panel->stack(); local 21 DCHECK(stack); 23 // If the panel is in its original stack, only top panel is allowed to drag. 24 if (in_orginal_collection && panel != stack->top_panel()) 27 // Find out if all panels in the stack are being dragged. 30 stack->panels().begin(); 31 iter != stack->panels().end(); ++iter) { 40 // If not all panels in the stack are being dragged, it means that these 41 // panels being dragged have just been added to this stack. Dragging thes 54 StackedPanelCollection* stack = panel->stack(); local [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cf2stack.h | 5 /* Adobe's code for emulating a CFF stack (specification). */ 46 /* CFF operand stack; specified maximum of 48 or 192 values */ 75 cf2_stack_free( CF2_Stack stack ); variable 78 cf2_stack_count( CF2_Stack stack ); variable 81 cf2_stack_pushInt( CF2_Stack stack, 84 cf2_stack_pushFixed( CF2_Stack stack, 88 cf2_stack_popInt( CF2_Stack stack ); variable 90 cf2_stack_popFixed( CF2_Stack stack ); variable 93 cf2_stack_getReal( CF2_Stack stack, 97 cf2_stack_clear( CF2_Stack stack ); variable [all...] |
/external/freetype/src/cff/ |
cf2stack.h | 5 /* Adobe's code for emulating a CFF stack (specification). */ 46 /* CFF operand stack; specified maximum of 48 or 192 values */ 75 cf2_stack_free( CF2_Stack stack ); variable 78 cf2_stack_count( CF2_Stack stack ); variable 81 cf2_stack_pushInt( CF2_Stack stack, 84 cf2_stack_pushFixed( CF2_Stack stack, 88 cf2_stack_popInt( CF2_Stack stack ); variable 90 cf2_stack_popFixed( CF2_Stack stack ); variable 93 cf2_stack_getReal( CF2_Stack stack, 97 cf2_stack_clear( CF2_Stack stack ); variable [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/ |
cf2stack.h | 5 /* Adobe's code for emulating a CFF stack (specification). */ 46 /* CFF operand stack; specified maximum of 48 or 192 values */ 75 cf2_stack_free( CF2_Stack stack ); variable 78 cf2_stack_count( CF2_Stack stack ); variable 81 cf2_stack_pushInt( CF2_Stack stack, 84 cf2_stack_pushFixed( CF2_Stack stack, 88 cf2_stack_popInt( CF2_Stack stack ); variable 90 cf2_stack_popFixed( CF2_Stack stack ); variable 93 cf2_stack_getReal( CF2_Stack stack, 97 cf2_stack_clear( CF2_Stack stack ); variable [all...] |