/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/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...] |
/external/valgrind/main/memcheck/tests/ |
deep_templates.cpp | 11 class Stack 14 Stack(int = 10) { size=5; top=6; stackPtr=(T*)6; }; 15 ~Stack() { } 27 typedef Stack<int,char> Foo; 28 typedef Stack<Foo,Foo> Foo2; 29 typedef Stack<Foo2,Foo2> Foo3; 30 typedef Stack<Foo3,Foo3> Foo4; 31 typedef Stack<Foo4,Foo4> Foo5; 32 typedef Stack<Foo5,Foo5> Foo6; 33 typedef Stack<Foo6,Foo6> Foo7 [all...] |
/ndk/sources/cxx-stl/llvm-libc++/include/ |
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 [all...] |
/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...] |
/dalvik/dx/tests/107-verify-stack-ops/ |
info.txt | 1 This tests that the various stack manipulation opcodes verify that their
|
/dalvik/dx/tests/114-value-propagation/ |
info.txt | 2 stack location to a local variable. (regression test)
|
/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...] |
/external/skia/tests/ |
ClipStackTest.cpp | 25 // Build up a clip stack with a path, an empty clip, and a rect. 124 static void assert_count(skiatest::Reporter* reporter, const SkClipStack& stack, 126 SkClipStack::B2TIter iter(stack); 137 SkClipStack stack; local 148 stack.clipDevRect(gRects[i], SkRegion::kUnion_Op, false); 151 assert_count(reporter, stack, 4); 157 SkClipStack::B2TIter iter(stack); 172 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart); 187 SkClipStack::Iter iter(stack, SkClipStack::Iter::kBottom_IterStart); 247 SkClipStack stack; local 827 SkClipStack stack; local 915 SkClipStack stack; local [all...] |
/external/clang/test/Driver/ |
stack-protector.c | 1 // RUN: %clang -fno-stack-protector -### %s 2>&1 | FileCheck %s -check-prefix=NOSSP 2 // NOSSP-NOT: "-stack-protector" "1" 3 // NOSSP-NOT: "-stack-protector-buffer-size" 6 // SSP: "-stack-protector" "1" 7 // SSP-NOT: "-stack-protector-buffer-size" 10 // SSP-BUF: "-stack-protector" "1" 11 // SSP-BUF: "-stack-protector-buffer-size" "16"
|
/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/clang/test/Misc/ |
include-stack-for-note-flag.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACK 2 // RUN: %clang_cc1 -fsyntax-only -fno-diagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACKLESS 3 // RUN: %clang_cc1 -fsyntax-only -fno-diagnostics-show-note-include-stack -fdiagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACK 4 // RUN: %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack -fno-diagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACKLESS 16 // STACK: error: no matching function for call to 'foo' 17 // STACK: In file included fro [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/stack/stack.ops/ |
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...] |
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...] |
/development/ndk/platforms/android-9/arch-x86/lib-bootstrap/ |
crtend_android.o | |
/external/proguard/src/proguard/retrace/ |
package.html | 3 ReTrace can de-obfuscate stack traces of obfuscated programs.
|
/external/valgrind/main/drd/tests/ |
pth_cancel_locked.vgtest | 2 vgopts: --read-var-info=yes --check-stack-var=yes
|
pth_process_shared_mutex.vgtest | 3 vgopts: --read-var-info=yes --check-stack-var=yes
|
sem_open.vgtest | 2 vgopts: --check-stack-var=yes --read-var-info=yes
|
tc04_free_lock.vgtest | 2 vgopts: --check-stack-var=yes
|
/prebuilts/ndk/8/platforms/android-14/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/8/platforms/android-14/arch-x86/usr/lib/ |
crtend_android.o | |
crtend_so.o | |
/prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/ |
crtend_so.o | |