/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/ |
process.js | 205 var stack = []; 210 stack.push(ast); 221 stack.pop(); 243 return stack[stack.length - 2]; // last one is current node 245 stack: function() { 246 return stack; [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
CtsXmlResultReporter.java | 218 String stack = result.getStackTrace() == null ? "" : "\n" + result.getStackTrace(); local 220 stack);
|
/external/chromium/base/ |
file_util.h | 25 #include <stack> 500 // A stack that keeps track of which subdirectories we still need to 502 std::stack<FilePath> pending_paths_;
|
/external/chromium/chrome/browser/resources/net_internals/ |
loggrouper.js | 55 // Stack of enclosing PHASE_BEGIN elements. 66 // Walk up the parent stack to find the corresponding BEGIN for this END.
|
/external/libffi/src/sh64/ |
ffi.c | 56 /* ffi_prep_args is called by the assembly routine once stack space 60 void ffi_prep_args(char *stack, extended_cif *ecif) 69 argp = stack; 341 * parameters to be passed into the stack frame and setting 373 /* Grab the addresses of the arguments from the stack frame. */
|
/external/libffi/src/sparc/ |
v8.S | 31 #define STACKFRAME 96 /* Minimum stack framesize for SPARC */ 45 sub %sp, %i2, %sp ! alloca() space in stack for frame to set up 271 .section .note.GNU-stack,"",@progbits
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp-lex.l | 57 %option stack
|
/external/v8/test/mjsunit/compiler/ |
simple-deopt.js | 81 // Test deopt with literals on the expression stack.
|
/external/v8/test/mjsunit/ |
deep-recursion.js | 30 * cause stack overflows.
|
mjsunit.js | 30 // This allows fetching the stack trace using TryCatch::StackTrace. 31 this.stack = new Error("").stack;
|
/external/v8/test/mjsunit/regress/ |
regress-1129.js | 32 // Create RegExp that is syntactically correct, but throws a stack overflow
|
regress-1132.js | 32 // NOTE: stack size constant above has been empirically chosen.
|
regress-233.js | 29 // A stack overflow detected by a global regexp match wasn't handled correctly. 38 // Stack overflow caught.
|
regress-603.js | 29 // not mess up the stack.
|
regress-69.js | 29 // balanced stack. It should not trigger the break point when --debug_code
|
regress-784.js | 30 // on the stack.
|
regress-937896.js | 30 // to try to unlink the inner try-handler that wasn't on the stack.
|
regress-conditional-position.js | 48 return x.stack;
|
regress-deopt-gc.js | 32 // the stack.
|
/external/valgrind/tsan/ |
Android.mk | 25 -Wall -Wno-deprecated -fno-exceptions -fno-stack-protector \
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
DelegateMethodAdapter2.java | 212 // Push this.getField("this$0") on the call stack. 242 // we pushed on the call stack. The return type remains unchanged. 369 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { 371 mOrgWriter.visitFrame(type, nLocal, local, nStack, stack);
|
StubMethodAdapter.java | 152 /* Pops the stack, depending on the return type. 249 // Pop the last word from the stack since invoke will generate its own return. 284 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { 286 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack);
|
/external/libvpx/vp8/common/arm/neon/ |
bilinearpredict8x8_neon.asm | 23 ; stack(lr) int dst_pitch 29 ldr r4, [sp, #8] ;load parameters from stack 30 ldr lr, [sp, #12] ;load parameters from stack
|
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-ppc32-linux.c | 63 /* Call f(arg1), but first switch stacks, using 'stack' as the new 64 stack, and use 'retaddr' as f's return-to address. Also, clear all 67 void ML_(call_on_new_stack_0_1) ( Addr stack, 71 // r3 = stack 79 " mr %r1,%r3\n\t" // stack to %sp 152 void* stack, 168 // setup child stack 171 " stwu 0,-16(4)\n" // make initial stack frame 191 /* Note: 2.4 kernel doesn't set the child stack pointer, 194 on the wrong stack, unfortunately. * 244 UWord* stack; local [all...] |
syswrap-ppc64-linux.c | 63 /* Call f(arg1), but first switch stacks, using 'stack' as the new 64 stack, and use 'retaddr' as f's return-to address. Also, clear all 67 void ML_(call_on_new_stack_0_1) ( Addr stack, 71 // r3 = stack 90 " mr %r1,%r3\n\t" // stack to %sp 165 void* stack, 189 // setup child stack 193 " stdu 0,-32(4)\n" // make initial stack frame 219 /* Note: 2.4 kernel doesn't set the child stack pointer, 222 on the wrong stack, unfortunately. * 272 UWord* stack; local [all...] |