HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 751 - 775 of 3945) sorted by null

<<31323334353637383940>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
log.py 38 # This mirrors the call stack of the profiled code as the log
182 stack = [st.totuple(1)]
184 while stack:
185 tree = stack.pop()
194 stack.extend(list(tree[1:]))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickletools.py 39 The PM has two data areas, "the stack" and "the memo".
41 Many opcodes push Python objects onto the stack; e.g., INT pushes a Python
42 integer object on the stack, whose value is gotten from a decimal string
44 opcodes take Python objects off the stack. The result of unpickling is
45 whatever object is left on the stack when the final STOP opcode is executed.
50 names. Some opcodes pop a stack object into the memo at a given index,
51 and others push a memo object at a given index onto the stack again.
111 a number of opcodes that operate on many stack elements at once (like APPENDS
153 # off the stack -- ArgumentDescriptor applies only to arguments embedded in
692 # Object descriptors. The stack used by the pickle machine holds objects
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java 79 public static final String STACK = "stack";
93 public static final String STACK = "stack";
133 RecentColumns.STACK + " BLOB DEFAULT NULL," +
149 ResumeColumns.STACK + " BLOB DEFAULT NULL," +
308 final DocumentStack stack = new DocumentStack(); local
315 cursor.getColumnIndex(RecentColumns.STACK));
316 DurableUtils.readFromArray(rawStack, stack);
318 if (stack.root != null && predicate.apply(stack.root.authority))
    [all...]
  /system/core/libutils/
RefBase.cpp 49 // folder where stack traces are saved when DEBUG_REFS is enabled
116 refs->stack.log(LOG_TAG);
130 refs->stack.log(LOG_TAG);
137 CallStack stack(LOG_TAG);
203 snprintf(name, 100, DEBUG_REFS_CALLSTACK_PATH "/%p.stack", this);
208 ALOGD("STACK TRACE for %p saved in %s", this, name);
210 else ALOGE("FAILED TO PRINT STACK TRACE for %p in %s: %s", this,
221 CallStack stack; member in struct:android::RefBase::weakref_impl::ref_entry
238 ref->stack.update(2);
273 CallStack stack(LOG_TAG)
    [all...]
  /dalvik/hit/src/com/android/hit/
HprofParser.java 412 StackTrace stack = mState.getStackTrace(thread.mStackTrace); local
414 threadSerialNumber, stack);
438 StackTrace stack = mState.getStackTrace(stackSerialNumber); local
497 ClassObj theClass = new ClassObj(id, stack, mClassNames.get(id));
518 StackTrace stack = mState.getStackTrace(stackId); local
521 ClassInstance instance = new ClassInstance(id, stack, classId);
533 StackTrace stack = mState.getStackTrace(stackId); local
542 ArrayInstance array = new ArrayInstance(id, stack, Types.OBJECT,
555 StackTrace stack = mState.getStackTrace(stackId); local
564 ArrayInstance array = new ArrayInstance(id, stack, type, numElements
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen_unittest.cc 274 std::vector<Instruction*> stack; local
288 stack.push_back(insn->jf_ptr);
293 if (stack.empty()) {
296 insn = stack.back();
297 stack.pop_back();
389 std::vector<BasicBlock*> stack; local
420 stack.push_back(all_blocks[insn->jf_ptr]);
425 if (stack.empty()) {
428 bb = stack.back();
429 stack.pop_back()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_ssa.cpp 299 Stack *stack; member in class:nv50_ir::RenamePass
406 stack = new Stack[func->allLValues.getSize()];
411 if (stack)
412 delete[] stack;
418 if (!stack[val->id].getSize())
420 return reinterpret_cast<LValue *>(stack[val->id].peek().u.p);
437 if (!stack)
461 stack[lval->id].push(ssa)
    [all...]
  /external/chromium_org/v8/src/
profile-generator.cc 311 List<Position> stack(10);
312 stack.Add(Position(root_));
313 while (stack.length() > 0) {
314 Position& current = stack.last();
317 stack.Add(Position(current.current_child()));
320 if (stack.length() > 1) {
321 Position& parent = stack[stack.length() - 2];
325 // Remove child from the stack.
326 stack.RemoveLast()
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ssa.cpp 299 Stack *stack; member in class:nv50_ir::RenamePass
406 stack = new Stack[func->allLValues.getSize()];
411 if (stack)
412 delete[] stack;
418 if (!stack[val->id].getSize())
420 return reinterpret_cast<LValue *>(stack[val->id].peek().u.p);
437 if (!stack)
461 stack[lval->id].push(ssa)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
AlternateRecentsComponent.java 191 TaskStack stack = loader.getTaskStack(mSystemServicesProxy, mContext.getResources(), local
194 if (stack.getTaskCount() == 0) return;
197 // Return early if the running task is in the home stack (optimization)
201 ArrayList<Task> tasks = stack.getTasks();
222 toTask = stack.findTaskWithId(toTaskKey.id);
280 TaskStack stack = new TaskStack(); local
281 mDummyStackView = new TaskStackView(mContext, stack);
358 // Check if the top task is in the home stack, and start the recents activity
444 // Get the stack of tasks that we are animating into
446 TaskStack stack = loader.getTaskStack(mSystemServicesProxy, mContext.getResources() local
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 307 * Gets the failure message to show from the stack trace.
311 * @param stack the full stack trace
314 static String getFailureMessageFromStackTrace(String stack) {
315 // return the first two lines of stack as failure message
316 int endPoint = stack.indexOf('\n');
318 int nextLine = stack.indexOf('\n', endPoint + 1);
320 return stack.substring(0, nextLine);
323 return stack;
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
test_support.py 158 stack = traceback.extract_stack()
159 frame = stack[len(stack)-3]
162 for line in traceback.format_list(stack[:len(stack)-2]):
  /external/chromium_org/testing/gtest/test/
gtest_xml_output_unittest.py 69 Expected: 1%(stack)s]]></failure>
77 Expected: 1%(stack)s]]></failure>
80 Expected: 2%(stack)s]]></failure>
88 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
95 Invalid characters in brackets []%(stack)s]]></failure>
130 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
lexer.py 46 self.stack = None
221 self.stack = self.get_state() # a short stack :)
222 #self.stack.push( self.get_state() )
225 assert self.stack is not None
226 self.set_state(*self.stack)
227 self.stack = None
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_amd64.S 36 # Align stack frame.
47 # Unalign stack frame back.
116 # Align stack frame.
127 # Unalign stack frame back.
232 // align stack frame
242 // unalign stack frame
273 // align stack frame
283 // unalign stack frame
302 /* We do not need executable stack. */
303 .section .note.GNU-stack,"",@progbit
    [all...]
  /external/gtest/test/
gtest_xml_output_unittest.py 69 Expected: 1%(stack)s]]></failure>
77 Expected: 1%(stack)s]]></failure>
80 Expected: 2%(stack)s]]></failure>
88 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
95 Invalid characters in brackets []%(stack)s]]></failure>
130 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_output_unittest.py 68 Expected: 1%(stack)s]]></failure>
76 Expected: 1%(stack)s]]></failure>
79 Expected: 2%(stack)s]]></failure>
87 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
94 Invalid characters in brackets []%(stack)s]]></failure>
129 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
  /external/checkpolicy/
module_compiler.c 48 /* keep track of the last item added to the stack */
92 /* reset the scoping stack */
104 /* Given the current parse stack, returns 1 if a declaration would be
107 * current scope stack then this would return a 0.
601 /* Given the current parse stack, returns 1 if a requirement would be
1225 static int is_scope_in_stack(scope_datum_t * scope, scope_stack_t * stack)
1228 if (stack == NULL) {
1231 if (stack->type == 1) {
1232 avrule_decl_t *decl = stack->decl;
1243 /* not within scope of this stack, so try its parent *
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
d3basics.c 492 FAIL("evaluate_Dwarf3_Expr: stack overflow(1)"); \
494 stack[sp] = (_arg); \
501 FAIL("evaluate_Dwarf3_Expr: stack underflow(1)"); \
502 _lval = stack[sp]; \
509 Addr stack[N_EXPR_STACK]; /* stack of addresses, as per D3 spec */ local
559 /* end of expr - return expr on the top of stack. */
561 /* stack empty. Bad. */
562 FAIL("evaluate_Dwarf3_Expr: stack empty at end of expr");
605 FAIL("evaluate_Dwarf3_Expr: DW_OP_{implicit,stack}_value
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Delaunay.cpp 372 int stack[DM]; local
409 // Now to recurse on shorter partition, store longer partition on stack
413 break; // empty stack && both partitions < QQ so break
415 sj = stack[--m];
416 si = stack[--m];
423 stack[m++] = si;
424 stack[m++] = sL;
432 break; // empty stack && both partitions < QQ so break
434 sj = stack[--m];
435 si = stack[--m]
    [all...]
  /external/bison/data/
glr.c 30 # Stack parameters.
547 if the built-in stack extension method is used).
557 /* Minimum number of free items on the stack allowed after an
560 stack is expanded, thus insuring that all necessary pointers get
687 /** Preceding state in this stack */
729 /** Type of the items in the GLR stack. The yyisState field
826 * and top stack item YYVSP. YYLVALP points to place to put semantic
1043 * stack #K of *STACKP. */
1068 /** Initialize SET to a singleton set containing an empty stack. */
1094 /** Initialize STACK to a single empty stack, with total maximu
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
jtl_interpreter.cc 89 std::vector<const base::Value*>* stack() { return &stack_; } function in class:__anon9063::ExecutionContext
100 // A stack of Values, indicating a navigation path from the root node of
128 context->stack()->push_back(&i.value());
130 context->stack()->pop_back();
152 context->stack()->push_back(&i.value());
154 context->stack()->pop_back();
161 context->stack()->push_back(*i);
163 context->stack()->pop_back();
183 context->stack()->pop_back();
185 context->stack()->push_back(current_node)
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-main.c 71 mips32 v0 a0 a1 a2 a3 stack stack n/a n/a v0 (== NUM)
110 * Ensures the root thread's stack is suitably mapped. Tedious and
523 UWord *stack = (UWord *)gst->guest_ESP;
527 // stack[0] is return address
528 canonical->arg1 = stack[1];
529 canonical->arg2 = stack[2];
530 canonical->arg3 = stack[3];
531 canonical->arg4 = stack[4];
532 canonical->arg5 = stack[5]
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Delaunay.cpp 372 int stack[DM]; local
409 // Now to recurse on shorter partition, store longer partition on stack
413 break; // empty stack && both partitions < QQ so break
415 sj = stack[--m];
416 si = stack[--m];
423 stack[m++] = si;
424 stack[m++] = sL;
432 break; // empty stack && both partitions < QQ so break
434 sj = stack[--m];
435 si = stack[--m]
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.cpp 372 int stack[DM]; local
409 // Now to recurse on shorter partition, store longer partition on stack
413 break; // empty stack && both partitions < QQ so break
415 sj = stack[--m];
416 si = stack[--m];
423 stack[m++] = si;
424 stack[m++] = sL;
432 break; // empty stack && both partitions < QQ so break
434 sj = stack[--m];
435 si = stack[--m]
    [all...]

Completed in 2693 milliseconds

<<31323334353637383940>>