| /external/v8/test/mjsunit/regress/ |
| regress-117794.js | 42 print(exc2.stack); 50 print(exc3.stack); 56 print(exc1.stack);
|
| /packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
| FolderSelectorAdapter.java | 237 final Deque<TreeNode> stack = new ArrayDeque<TreeNode>(10); local 238 stack.push(root); 240 while ((currentNode = stack.poll()) != null) { 241 final TreeNode parentNode = stack.peek(); 267 stack.push(currentNode); 269 stack.push(childNode);
|
| /external/boringssl/src/ssl/ |
| ssl_file.c | 121 #include <openssl/stack.h> 196 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, 204 oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_cmp); 228 if (sk_X509_NAME_find(stack, NULL, xn)) { 231 sk_X509_NAME_push(stack, xn); 245 (void) sk_X509_NAME_set_cmp_func(stack, oldcmp); 250 /* Add a directory of certs to a stack. 252 * \param stack the stack to append to. 255 * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack wil [all...] |
| /external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/cc/ |
| layer_view.css | 15 tr-ui-e-chrome-cc-layer-tree-quad-stack-view {
|
| /external/clang/INPUTS/ |
| all-std-headers.cpp | 43 #include <stack>
|
| /external/fonttools/Lib/fontTools/misc/ |
| psLib.py | 128 self.stack = [] 276 self.stack.append(object) 279 stack = self.stack 280 if not stack: 281 raise PSError('stack underflow') 282 object = stack[-1] 286 del stack[-1] 301 del self.stack
|
| /external/gemmlowp/profiling/ |
| instrumentation.h | 114 // A pseudo-call-stack. Contrary to a real call-stack, this only 172 ProfilingStack stack; member in struct:gemmlowp::ThreadInfo 213 : profiling_stack_(&ThreadLocalThreadInfo().stack) {
|
| /external/google-breakpad/src/common/dwarf/ |
| dwarf2diehandler.h | 159 #include <stack> 326 // The type of a handler stack entry. This includes some fields 327 // which don't really need to be on the stack --- they could just be 331 // The offset of the DIE for this handler stack entry. 342 // Stack of DIE attribute handlers. At StartDIE(D), the top of the 343 // stack is the handler of D's parent, whom we may ask for a handler 344 // for D itself. At EndDIE(D), the top of the stack is D's handler. 347 // - Before we've seen the compilation unit's root DIE, the stack is 349 // perhaps push root_handler_ on the stack to look at the root's 353 // the stack for the root of the tree being ignored, rather tha [all...] |
| /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/ |
| DuplicateFrameEliminator.java | 36 final Object[] local, final int nStack, final Object[] stack) { 39 mv.visitFrame(type, nLocal, local, nStack, stack);
|
| ProbeInserter.java | 33 /** Maximum stack usage of the code to access the probe array. */ 67 // Stack[0]: [Z 71 // Stack[1]: I 72 // Stack[0]: [Z 76 // Stack[2]: I 77 // Stack[1]: I 78 // Stack[0]: [Z 108 // Max stack size of the probe code is 3 which can add to the 109 // original stack size depending on the probe locations. The accessor 110 // stack size is an absolute maximum, as the accessor code is inserte [all...] |
| /external/libavc/common/arm/ |
| ih264_intra_pred_luma_4x4_a9q.s | 107 stmfd sp!, {r4-r12, r14} @store register values to stack 120 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 182 stmfd sp!, {r4-r12, r14} @store register values to stack 200 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 264 stmfd sp!, {r4-r12, r14} @store register values to stack 342 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 400 stmfd sp!, {r4-r12, r14} @store register values to stack 422 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 482 stmfd sp!, {r4-r12, r14} @store register values to stack 504 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack [all...] |
| /external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
| UBJsonWriter.java | 32 private final Array<JsonObject> stack = new Array(); field in class:UBJsonWriter 48 stack.add(current = new JsonObject(false)); 68 stack.add(current = new JsonObject(true)); 539 /** Ends the current object or array and pops it off of the element stack. 548 stack.pop(); 550 stack.pop().close(); 551 current = stack.size == 0 ? null : stack.peek(); 562 while (stack.size > 0)
|
| /external/llvm/test/tools/llvm-objdump/Inputs/ |
| win64-unwind.exe.coff-x86_64.asm | 39 // Function with big stack allocation.
|
| /external/llvm/test/tools/llvm-readobj/ARM/ |
| attribute-10.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 1024-byte data alignment
|
| attribute-11.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 2048-byte data alignment
|
| attribute-12.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 4096-byte data alignment
|
| attribute-9.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 512-byte data alignment
|
| /external/mesa3d/src/gallium/drivers/nv50/codegen/ |
| nv50_ir_graph.cpp | 26 #include <stack> 171 std::stack<const Node *> stack; local 175 stack.push(node); 177 while (!stack.empty()) { 178 pos = stack.top(); 179 stack.pop(); 190 stack.push(ei.getNode()); 286 Stack bb, cross;
|
| /external/mockito/cglib-and-asm/src/org/mockito/asm/ |
| MethodAdapter.java | 88 final Object[] stack)
90 mv.visitFrame(type, nLocal, local, nStack, stack);
|
| /external/opencv/cv/src/ |
| cvapprox.cpp | 531 CvSeq* stack = 0; local 545 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage ); 559 cvSeqPush( stack, &slice ); 599 /* 2. initialize the stack */ 610 cvSeqPush( stack, &right_slice ); 611 cvSeqPush( stack, &slice ); 618 while( stack->total != 0 ) 620 cvSeqPop( stack, &slice ); 668 cvSeqPush( stack, &right_slice ); 669 cvSeqPush( stack, &slice ) 735 CvSeq* stack = 0; local [all...] |
| /external/parameter-framework/upstream/parameter/ |
| Subsystem.h | 40 #include <stack> 242 // Mapping Context stack 243 std::stack<CMappingContext> _contextStack;
|
| /external/proguard/src/proguard/preverify/ |
| CodePreverifier.java | 114 // Collect the stack map frames. 135 // Convert the stack values to types. 149 // Compress the stack map frames if the target is not Java Micro Edition. 207 // Remove any stack map (table) attribute from the code attribute. 221 // Put the frames into a stack map attribute. 230 // Put the frames into a stack map table attribute. 234 // Fill out the name of the stack map attribute. 238 // Add the new stack map (table) attribute to the code attribute. 340 * stack. If necessary, class constants are added to the constant pool 347 TracedStack stack) 512 VerificationType[] stack = fullFrame.stack; local [all...] |
| /external/regex-re2/util/ |
| util.h | 25 #include <stack> 39 using std::stack;
|
| /external/selinux/libsemanage/src/ |
| conf-scan.l | 32 %option stack prefix="semanage_"
|
| /external/speex/libspeex/ |
| nb_celp.h | 77 char *stack; /**< Pseudo-stack allocation for temporary memory */ member in struct:EncState 137 char *stack; /**< Pseudo-stack allocation for temporary memory */ member in struct:DecState
|