/external/proguard/src/proguard/classfile/attribute/preverification/ |
FullFrame.java | 37 public VerificationType[] stack; field in class:FullFrame 49 * Creates a FullFrame with the given variables and stack. 53 VerificationType[] stack) 58 stack.length, 59 stack); 64 * Creates a FullFrame with the given variables and stack. 70 VerificationType[] stack) 76 this.stack = stack; 93 * Applies the given verification type visitor to all stack [all...] |
/frameworks/base/tools/preload/ |
Proc.java | 46 /** Maps thread ID to operation stack. */ 96 LinkedList<Operation> stack = stacks.get(threadId); local 97 if (stack == null) { 98 stack = new LinkedList<Operation>(); 99 stacks.put(threadId, stack); 102 if (!stack.isEmpty()) { 103 stack.getLast().subops.add(o); 106 stack.add(o); 118 LinkedList<Operation> stack = stacks.get(threadId); local 120 if (stack == null || stack.isEmpty()) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
assign_move.pass.cpp | 10 // <stack> 12 // stack& operator=(stack&& q); 14 #include <stack> 36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5)); 37 std::stack<MoveOnly> q2;
|
/cts/tools/dasm/src/dasm/ |
parser.java | 812 java.util.Stack stack, 817 return action_obj.CUP$do_action(act_num, parser, stack, top); [all...] |
/external/chromium_org/third_party/cld/base/ |
crash.h | 19 // We'll also store a bit of stack trace context at the time of crash as 21 void* stack[32]; member in struct:base::CrashReason
|
/external/clang/test/CodeGen/ |
2002-12-15-StructParameters.c | 5 void *stack; member in struct:__anon22335
|
/external/libunwind/src/ppc/ |
longjmp.S | 34 /* We do not need executable stack. */ 35 .section .note.GNU-stack,"",@progbits
|
/external/libunwind/src/x86_64/ |
longjmp.S | 33 /* We do not need executable stack. */ 34 .section .note.GNU-stack,"",@progbits
|
siglongjmp.S | 31 /* We do not need executable stack. */ 32 .section .note.GNU-stack,"",@progbits
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/ |
mem-memcpy-x86-64-asm.S | 8 * We need to provide note.GNU-stack section, saying that we want 9 * NOT executable stack. Otherwise the final linking will assume that 10 * the ELF stack should not be restricted at all and set it RWX. 12 .section .note.GNU-stack,"",@progbits
|
mem-memset-x86-64-asm.S | 9 * We need to provide note.GNU-stack section, saying that we want 10 * NOT executable stack. Otherwise the final linking will assume that 11 * the ELF stack should not be restricted at all and set it RWX. 13 .section .note.GNU-stack,"",@progbits
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
RawMessageChannel.java | 1 package gov.nist.javax.sip.stack;
|
SIPStackTimerTask.java | 9 package gov.nist.javax.sip.stack; 31 System.out.println("SIP stack timer task failed due to exception:");
|
ServerRequestInterface.java | 29 package gov.nist.javax.sip.stack; 35 * This is implemented by the application. The stack calls the message
|
/external/speex/libspeex/ |
cb_search.h | 62 char *stack, 72 char *stack, 88 char *stack, 99 char *stack,
|
lsp_bfin.h | 42 char *stack
|
vq.h | 45 void vq_nbest(spx_word16_t *in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack); 47 void vq_nbest_sign(spx_word16_t *in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack); 49 void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack); 51 void vq_nbest_sign(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack);
|
/external/chromium_org/base/ |
at_exit.h | 8 #include <stack> 23 // AtExitManager object on the stack: 55 // AtExitManagers are kept on a global stack, and it will be removed during 61 std::stack<base::Closure> stack_; 62 AtExitManager* next_manager_; // Stack of managers to allow shadowing.
|
/external/chromium_org/third_party/bintrees/bintrees/ |
cwalker.pxd | 9 from stack cimport node_stack_t 14 cdef node_stack_t *stack
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/ |
nasm-sectname.asm | 2 section .note.GNU-stack
|
/external/compiler-rt/lib/asan/ |
asan_report.h | 22 // on the memory type (shadow/heap/stack/global). 45 StackTrace *stack); 47 ReportSanitizerGetAllocatedSizeNotOwned(uptr addr, StackTrace *stack); 50 const char *offset2, uptr length2, StackTrace *stack); 52 ReportStringFunctionSizeOverflow(uptr offset, uptr size, StackTrace *stack); 55 uptr new_mid, StackTrace *stack); 63 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack); 65 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack); 67 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
|
/external/compiler-rt/lib/lsan/ |
lsan_allocator.h | 23 void *Allocate(const StackTrace &stack, uptr size, uptr alignment, 26 void *Reallocate(const StackTrace &stack, void *p, uptr new_size,
|
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_stack_test.cc | 22 uptr stack[128]; local 23 thr.shadow_stack = &stack[0]; 24 thr.shadow_stack_pos = &stack[0]; 25 thr.shadow_stack_end = &stack[128]; 66 uptr stack[128]; local 67 thr.shadow_stack = &stack[0]; 68 thr.shadow_stack_pos = &stack[0]; 69 thr.shadow_stack_end = &stack[128];
|
/external/libcxx/test/containers/container.adaptors/stack/ |
Android.mk | 17 test_makefile := external/libcxx/test/containers/container.adaptors/stack/Android.mk 19 test_name := containers/container.adaptors/stack/version
|
/external/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
push_rv.pass.cpp | 10 // <stack> 14 #include <stack> 22 std::stack<MoveOnly> q;
|