HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 1 - 25 of 1681) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
stack_header_test.cpp 8 #include <stack>
  /ndk/tests/device/test-gnustl-full/unit/
stack_header_test.cpp 8 #include <stack>
  /ndk/tests/device/test-stlport/unit/
stack_header_test.cpp 8 #include <stack>
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestTest.java 28 * Test {@link Test#getFailureMessageFromStackTrace(String)} for an empty stack
31 final String stack = ""; local
32 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack));
36 * Test {@link Test#getFailureMessageFromStackTrace(String)} for a one line stack
39 final String stack = "this is a line"; local
40 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack));
44 * Test {@link Test#getFailureMessageFromStackTrace(String)} for a one line stack with a newline
48 final String stack = "this is a line\n" local
56 final String stack = "this is a line\\nthis is also a line"; local
64 final String stack = "this is a line\\nthis is also a line\\n oh look another line"; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StackExtensions.cs 45 public static T elementAt<T>( this Stack<T> stack, int index )
47 return stack.ElementAt( index );
51 public static T peek<T>( this Stack<T> stack )
53 return stack.Peek();
57 public static T pop<T>( this Stack<T> stack )
59 return stack.Pop();
63 public static void push<T>( this Stack<T> stack, T obj
    [all...]
  /bionic/libc/arch-arm/bionic/
crtend_so.S 30 .section .note.GNU-stack,"",%progbits
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.cons/
default_noexcept.pass.cpp 10 // <stack>
12 // stack()
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
dtor_noexcept.pass.cpp 10 // <stack>
12 // ~stack() // implied noexcept;
14 #include <stack>
23 typedef std::stack<MoveOnly> C;
move_assign_noexcept.pass.cpp 10 // <stack>
12 // stack& operator=(stack&& c)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
move_noexcept.pass.cpp 10 // <stack>
12 // stack(stack&&)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
ctor_copy.pass.cpp 10 // <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;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.defn/
size.pass.cpp 10 // <stack>
14 #include <stack>
19 std::stack<int> q;
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/speex/libspeex/
stack_alloc.h 4 @brief Temporary memory allocation on stack
51 * @def ALIGN(stack, size)
53 * Aligns the stack to a 'size' boundary
55 * @param stack Stack
60 * @def PUSH(stack, size, type)
62 * Allocates 'size' elements of type 'type' on the stack
64 * @param stack Stack
72 * Declare variable on stack
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 34 * local variable frame and stack.
44 private final Stack stack; field in class:Processor
57 * @param stack the local stack.
62 Stack stack,
68 this.stack = stack;
85 stack.push(valueFactory.createReferenceValueNull())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/
version.pass.cpp 10 // <stack>
12 #include <stack>
  /ndk/sources/cxx-stl/llvm-libc++/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++/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...]
swap_noexcept.pass.cpp 10 // <stack>
12 // void swap(stack& c)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
  /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...]
  /external/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/compiler-rt/lib/asan/
asan_stack.cc 12 // Code for ASan stack trace.
26 void PrintStack(StackTrace *stack) {
27 stack->PrintStack(stack->trace, stack->size, flags()->symbolize,

Completed in 457 milliseconds

1 2 3 4 5 6 7 8 91011>>