HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 601 - 625 of 3511) sorted by null

<<21222324252627282930>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
shlex.py 60 "Push a token onto the stack popped by the get_token method"
66 "Push an input source onto the lexer's input source stack."
80 "Pop the input source stack."
89 "Get a token from the input stream (or from stack if it's nonempty)"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyParse.py 390 stack = [] # stack of open bracket indices
391 push_stack = stack.append
413 bracketing.append((p, len(stack)))
419 if stack:
420 del stack[-1]
423 bracketing.append((p, len(stack)))
434 bracketing.append((p, len(stack)+1))
437 bracketing.append((p, len(stack)))
442 bracketing.append((p, len(stack)+1)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 60 "Push a token onto the stack popped by the get_token method"
66 "Push an input source onto the lexer's input source stack."
80 "Pop the input source stack."
89 "Get a token from the input stream (or from stack if it's nonempty)"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyParse.py 390 stack = [] # stack of open bracket indices
391 push_stack = stack.append
413 bracketing.append((p, len(stack)))
419 if stack:
420 del stack[-1]
423 bracketing.append((p, len(stack)))
434 bracketing.append((p, len(stack)+1))
437 bracketing.append((p, len(stack)))
442 bracketing.append((p, len(stack)+1)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 60 "Push a token onto the stack popped by the get_token method"
66 "Push an input source onto the lexer's input source stack."
80 "Pop the input source stack."
89 "Get a token from the input stream (or from stack if it's nonempty)"
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/
relax-direct.s 8 lds stack
20 addd stack+256-20
79 stack: label
  /external/opencv/cvaux/src/
cvsegment.cpp 58 #define PUSH(Y,IL,IR,IPL,IPR,FL) { stack[StIn].y=(ushort)(Y); \
59 stack[StIn].l=(ushort)(IL); \
60 stack[StIn].r=(ushort)(IR); \
61 stack[StIn].Prevl=(ushort)(IPL); \
62 stack[StIn].Prevr=(ushort)(IPR); \
63 stack[StIn].fl=(short)(FL); \
67 Y=stack[StIn].y; \
68 IL=stack[StIn].l; \
69 IR=stack[StIn].r;\
70 IPL=stack[StIn].Prevl;
94 Seg *stack = (Seg*)pStack; local
486 void* stack = 0; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMessage.java 45 import java.util.Stack;
540 private final Stack<Object> stack = new Stack<Object>(); field in class:MimeMessage.MimeMessageBuilder
546 if (!c.isInstance(stack.peek())) {
547 throw new IllegalStateException("Internal stack error: " + "Expected '"
548 + c.getName() + "' found '" + stack.peek().getClass().getName() + "'");
554 if (stack.isEmpty()) {
555 stack.push(MimeMessage.this);
560 ((Part)stack.peek()).setBody(m)
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeMessage.java 44 import java.util.Stack;
539 private final Stack<Object> stack = new Stack<Object>(); field in class:MimeMessage.MimeMessageBuilder
545 if (!c.isInstance(stack.peek())) {
546 throw new IllegalStateException("Internal stack error: " + "Expected '"
547 + c.getName() + "' found '" + stack.peek().getClass().getName() + "'");
553 if (stack.isEmpty()) {
554 stack.push(MimeMessage.this);
559 ((Part)stack.peek()).setBody(m)
    [all...]
  /external/valgrind/memcheck/tests/x86-linux/
scalar.stderr.exp 32 Address 0x........ is not stack'd, malloc'd or (recently) free'd
52 Address 0x........ is not stack'd, malloc'd or (recently) free'd
68 Address 0x........ is not stack'd, malloc'd or (recently) free'd
102 Address 0x........ is not stack'd, malloc'd or (recently) free'd
118 Address 0x........ is not stack'd, malloc'd or (recently) free'd
134 Address 0x........ is not stack'd, malloc'd or (recently) free'd
139 Address 0x........ is not stack'd, malloc'd or (recently) free'd
151 Address 0x........ is not stack'd, malloc'd or (recently) free'd
171 Address 0x........ is not stack'd, malloc'd or (recently) free'd
183 Address 0x........ is not stack'd, malloc'd or (recently) free'
    [all...]
  /external/speex/libspeex/
sb_celp.c 54 /* Default size for the encoder and decoder stack (can be changed at compile time).
206 st->stack = NULL;
208 /*st->stack = (char*)speex_alloc_scratch(SB_ENC_STACK);*/
209 speex_encoder_ctl(st->st_low, SPEEX_GET_STACK, &st->stack);
270 VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st));
281 /*speex_free_scratch(st->stack);*/
308 char *stack; local
332 stack=st->stack;
339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack);
879 char *stack; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityRecord.java 89 * An entry in the history stack, representing an activity.
199 private boolean inHistory; // are we in the history stack?
472 if (task == null || task.stack == null || app == null || app.thread == null) {
484 if (task == null || task.stack == null || app == null || app.thread == null) {
489 appToken, task.stack.mStackId == PINNED_STACK_ID);
496 return task != null && task.stack != null
497 && task.stack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
574 if (r == null || r.task == null || r.task.stack == null) {
952 final ActivityStack stack = task.stack; local
1137 final ActivityStack stack = task.stack; local
1150 final ActivityStack stack = task.stack; local
1184 final ActivityStack stack = task.stack; local
1216 final ActivityStack stack = task.stack; local
1295 final ActivityStack stack = mStackSupervisor.getFocusedStack(); local
    [all...]
  /external/valgrind/none/tests/
cmdline1.stdout.exp 40 --num-callers=<number> show <number> callers in stack traces [12]
45 --show-below-main=no|yes continue stack traces below main() [no]
52 --max-stackframe=<number> assume stack switch for SP changes larger
54 --main-stacksize=<number> set size of main thread's stack (in bytes)
77 --smc-check=none|stack|all|all-non-file [all-non-file]
82 and use it to do better stack traces. [yes]
85 --read-var-info=yes|no read debug info on stack and global variables
110 --valgrind-stacksize=<number> size of valgrind (host) thread's stack
122 --unw-stack-scan-thresh=<number> Enable stack-scan unwind if fewe
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 79 // Interface functions for Stack
81 static void antlr3StackFree (pANTLR3_STACK stack);
82 static void * antlr3StackPop (pANTLR3_STACK stack);
83 static void * antlr3StackGet (pANTLR3_STACK stack, ANTLR3_INTKEY key);
84 static ANTLR3_BOOLEAN antlr3StackPush (pANTLR3_STACK stack, void * element, void (ANTLR3_CDECL *freeptr)(void *));
85 static ANTLR3_UINT32 antlr3StackSize (pANTLR3_STACK stack);
86 static void * antlr3StackPeek (pANTLR3_STACK stack);
966 pANTLR3_STACK stack; local
970 stack = (pANTLR3_STACK)ANTLR3_MALLOC((size_t)sizeof(ANTLR3_STACK));
972 if (stack == NULL
    [all...]
  /external/compiler-rt/lib/asan/
asan_report.cc 161 PrintShadowByte(str, " Stack left redzone: ",
163 PrintShadowByte(str, " Stack mid redzone: ",
165 PrintShadowByte(str, " Stack right redzone: ",
167 PrintShadowByte(str, " Stack partial redzone: ",
169 PrintShadowByte(str, " Stack after return: ",
171 PrintShadowByte(str, " Stack use after scope: ",
455 Printf("Address %p is located in stack of thread T%d%s", addr, t->tid(),
458 // Try to fetch precise stack frame for this access.
467 // We print this frame as a stack trace with one element.
469 // The frame numbers may be different than those in the stack trace printe
    [all...]
  /bionic/libc/arch-mips/bionic/
__bionic_clone.S 39 # set up child stack
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 33 # Copy 'fn' and 'arg' onto the child stack.
66 # with the arguments from the child stack moved into
  /external/boringssl/src/include/openssl/
conf.h 62 #include <openssl/stack.h>
110 /* NCONF_get_section returns a stack of values for a given section in |conf|.
  /external/chromium-trace/catapult/telemetry/telemetry/value/
common_value_helpers.py 12 return failure.FailureValue.FromMessage(page, mre_failure.stack)
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
GraphUtil.py 111 stack = deque([(head, head)])
116 while stack:
117 last_good, node = stack.pop()
132 stack.append((last_good, tail))
  /external/google-breakpad/src/processor/
stackwalker_x86.h 34 // Provides stack frames given x86 register context and a memory region
35 // corresponding to an x86 stack.
60 // included in the stack. The other arguments are passed directly through
69 // A STACK CFI-driven frame walker for the X86.
73 // stack conventions (saved %ebp at [%ebp], saved %eip at 4[%ebp], or
77 virtual StackFrame* GetCallerFrame(const CallStack* stack,
80 // Use windows_frame_info (derived from STACK WIN and FUNC records)
88 // Use cfi_frame_info (derived from STACK CFI records) to construct
102 // Stores the CPU context corresponding to the innermost stack frame to
  /external/guava/guava/src/com/google/common/io/
Closer.java 110 private final Deque<Closeable> stack = new ArrayDeque<Closeable>(4); field in class:Closer
126 stack.addFirst(closeable);
211 while (!stack.isEmpty()) {
212 Closeable closeable = stack.removeFirst();
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cffparse.h 44 FT_Byte* stack[CFF_MAX_STACK_DEPTH + 1]; member in struct:CFF_ParserRec_
  /external/libunwind/tests/
ia64-test-readonly-asm.S 53 /* We do not need executable stack. */
54 .section .note.GNU-stack,"",@progbits
  /external/llvm/test/MC/ELF/
basic-elf-32.s 31 .section .note.GNU-stack,"",@progbits

Completed in 1532 milliseconds

<<21222324252627282930>>