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

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/ui/panels/
panel_drag_browsertest.cc 113 // Return the delta needed to drag |panel1| to stack to the bottom of
135 // Return the delta needed to drag |panel1| to stack to the top of |panel2|.
139 StackedPanelCollection* stack1 = panel1->stack();
1807 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1868 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1931 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1988 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2189 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2278 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2340 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2390 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2442 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2502 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2556 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2796 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2847 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2931 StackedPanelCollection* stack = panel_manager->CreateStack(); local
3045 StackedPanelCollection* stack = panel_manager->CreateStack(); local
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 171 // If we don't use stack depot, we store the alloc/free stack traces
202 static void GetStackTraceFromId(u32 id, StackTrace *stack) {
207 stack->CopyFrom(trace, size);
210 void AsanChunkView::GetAllocStack(StackTrace *stack) {
211 GetStackTraceFromId(chunk_->alloc_context_id, stack);
214 void AsanChunkView::GetFreeStack(StackTrace *stack) {
215 GetStackTraceFromId(chunk_->free_context_id, stack);
283 static void *Allocate(uptr size, uptr alignment, StackTrace *stack,
288 CHECK(stack);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelinePresentationModel.js 216 var stack = [{children: this._rootRecord._presentationChildren, index: 0, parentIsCollapsed: false, parentRecord: {}}];
220 for (var depth = revealedDepth + 1; depth < stack.length; ++depth) {
221 if (stack[depth - 1].parentIsCollapsed) {
222 stack[depth].parentRecord._presentationParent._expandable = true;
225 stack[depth - 1].parentRecord._collapsed = false;
226 recordsInWindow.push(stack[depth].parentRecord);
227 stack[depth].windowLengthBeforeChildrenTraversal = recordsInWindow.length;
228 stack[depth].parentIsRevealed = true;
233 while (stack.length) {
234 var entry = stack[stack.length - 1]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pyclbr.py 151 stack = [] # stack of (class, indent) pairs
159 while stack and stack[-1][1] >= thisindent:
160 del stack[-1]
164 while stack and stack[-1][1] >= thisindent:
165 del stack[-1]
169 if stack:
170 cur_class = stack[-1][0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pyclbr.py 151 stack = [] # stack of (class, indent) pairs
159 while stack and stack[-1][1] >= thisindent:
160 del stack[-1]
164 while stack and stack[-1][1] >= thisindent:
165 del stack[-1]
169 if stack:
170 cur_class = stack[-1][0
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
schema_util.py 39 # Use an explicit stack instead of recursion.
40 stack = [schema]
42 while stack:
43 node = stack.pop()
45 stack.extend(node)
49 stack.extend(v for k, v in node.iteritems() if k not in ignore)
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 38 StackTrace stack; \
47 stack.Unwind(__sanitizer::common_flags()->malloc_context_size, \
69 return Allocate(stack, size, 1, kAlwaysClearMemory);
93 return Allocate(stack, size, 1, true);
99 return Reallocate(stack, q, size, 1);
105 return Allocate(stack, size, alignment, kAlwaysClearMemory);
111 return Allocate(stack, size, alignment, kAlwaysClearMemory);
117 *memptr = Allocate(stack, size, alignment, kAlwaysClearMemory);
127 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory);
158 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory)
    [all...]
  /external/compiler-rt/lib/msan/
msan_allocator.cc 79 static void *MsanAllocate(StackTrace *stack, uptr size, uptr alignment,
105 u32 stack_id = StackDepotPut(stack->trace, stack->size);
116 void MsanDeallocate(StackTrace *stack, void *p) {
128 u32 stack_id = StackDepotPut(stack->trace, stack->size);
146 void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size,
149 return MsanAllocate(stack, new_size, alignment, zeroise);
151 MsanDeallocate(stack, old_p);
165 void *new_p = MsanAllocate(stack, new_size, alignment, zeroise)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 118 * Constructs an "illegal top-of-stack" exception, for the stack
122 return new SimException("stack mismatch: illegal " +
123 "top-of-stack for opcode");
136 * to the actual array present on the stack, as long as what is
141 * actually present on the stack.</p>
143 * <p>In the case where there is a known-null on the stack where
156 * stack; is either an array type or a known-null
363 * over one extra stack slot to find the array.
365 ExecutionStack stack = frame.getStack() local
386 ExecutionStack stack = frame.getStack(); local
418 ExecutionStack stack = frame.getStack(); local
430 ExecutionStack stack = frame.getStack(); local
450 ExecutionStack stack = frame.getStack(); local
471 ExecutionStack stack = frame.getStack(); local
503 ExecutionStack stack = frame.getStack(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStackSupervisor.java 183 /** The stack containing the launcher app. Assumed to always be attached to
187 /** The stack currently receiving input or launching the next activity. */
190 /** If this is the same as mFocusedStack then the activity on the top of the focused stack has
191 * been resumed. If stacks are changing position this will hold the old stack until the new
192 * stack becomes resumed after which it will be set to mFocusedStack. */
250 /** Stack id of the front stack when user switched, indexed by userId. */
285 final ActivityStack stack; field in class:ActivityStackSupervisor.PendingActivityLaunch
292 stack = _stack;
382 // TODO: Split into two methods isFrontStack for any visible stack and isFrontmostStack for th
456 ActivityStack stack = stacks.get(stackNdx); local
497 ActivityStack stack = getFocusedStack(); local
517 final ActivityStack stack = stacks.get(stackNdx); local
548 final ActivityStack stack = stacks.get(stackNdx); local
567 final ActivityStack stack = stacks.get(stackNdx); local
588 final ActivityStack stack = stacks.get(stackNdx); local
608 final ActivityStack stack = stacks.get(stackNdx); local
625 final ActivityStack stack = stacks.get(stackNdx); local
648 final ActivityStack stack = stacks.get(stackNdx); local
711 final ActivityStack stack = stacks.get(stackNdx); local
730 final ActivityStack stack = stacks.get(stackNdx); local
846 final ActivityStack stack; local
1099 final ActivityStack stack = r.task.stack; local
1464 final ActivityStack stack = getFocusedStack(); local
1540 final ActivityStack stack = homeDisplayStacks.get(stackNdx); local
2294 final ActivityStack stack = r.task.stack; local
2374 final ActivityStack stack = stacks.get(stackNdx); local
2395 final ActivityStack stack = stacks.get(stackNdx); local
2434 final ActivityStack stack = stacks.get(stackNdx); local
2452 final ActivityStack stack = stacks.get(stackNdx); local
2463 final ActivityStack stack = stacks.get(stackNdx); local
2581 final ActivityStack stack = getStack(stackId); local
2603 final ActivityStack stack = getStack(stackId); local
2619 final ActivityStack stack = stacks.get(stackNdx); local
2712 final ActivityStack stack = stacks.get(stackNdx); local
2780 final ActivityStack stack = r.task.stack; local
2797 final ActivityStack stack = stacks.get(stackNdx); local
2804 final ActivityStack stack = r.task.stack; local
2874 final ActivityStack stack = stacks.get(stackNdx); local
2885 final ActivityStack stack = stacks.get(stackNdx); local
2940 final ActivityStack stack = stacks.get(stackNdx); local
2958 final ActivityStack stack = stacks.get(stackNdx); local
2967 ActivityStack stack = getStack(restoreStackId); local
3108 final ActivityStack stack = stacks.get(stackNdx); local
3359 ActivityStack stack = getStack(stackId); local
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-stacktrace.js 28 // Test correctness of stack traces with global functions.
42 var stack = e.stack.toString();
43 var p3 = stack.indexOf("at three");
44 var p2 = stack.indexOf("at two");
45 var p1 = stack.indexOf("at one");
51 print(stack);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 42 public void execute(CommandStack stack);
88 public void execute(CommandStack stack) {
90 stack.getFactory().addPackage(mPackageName);
105 public void execute(CommandStack stack) {
120 public void execute(CommandStack stack) {
123 filter = stack.getFactory().createFilterByClassName(mClassName,
125 stack.getContext());
129 stack.getBuilder().addFilter(filter);
143 public void execute(CommandStack stack) {
144 stack.getBuilder().addFrameSlotSource(mName, mSlotName)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86asm.pl 23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
44 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
45 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
46 sub ::blindpop { &pop($_[0]); $stack+=4; }
47 sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
173 $stack=4;
187 $stack=0;
197 $stack+=16; # readjust esp as if we didn't pop anything
  /external/openssl/crypto/perlasm/
x86asm.pl 23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
44 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
45 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
46 sub ::blindpop { &pop($_[0]); $stack+=4; }
47 sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
173 $stack=4;
187 $stack=0;
197 $stack+=16; # readjust esp as if we didn't pop anything
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-amd64-darwin.c 246 // on a separate non-client stack.
253 char *stack; local
258 stack = (char *)allocstack(tst->tid);
259 stack -= 64+320; // make room for top frame
260 memset(stack, 0, 64+320); // ...and clear it
261 *(uintptr_t *)stack = 0; // push fake return address
265 mach->__rsp = (uintptr_t)stack;
269 /* Call f(arg1), but first switch stacks, using 'stack' as the new
270 stack, and use 'retaddr' as f's return-to address. Also, clear all
273 void call_on_new_stack_0_1 ( Addr stack,
358 Addr stack = VG_PGROUNDUP(sp) - stacksize; local
421 Addr stack; local
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 191 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonReader
507 stack.clear();
508 stack.add(JsonScope.CLOSED);
535 return stack.get(stack.size() - 1);
539 return stack.remove(stack.size() - 1);
543 stack.add(newTop);
547 * Replace the value on the top of the stack with the given value.
550 stack.set(stack.size() - 1, newTop)
    [all...]
  /external/valgrind/main/drd/tests/
thread_name_xml.stderr.exp 39 <stack>
64 </stack>
75 <stack>
100 </stack>
111 <stack>
136 </stack>
147 <stack>
172 </stack>
183 <stack>
208 </stack>
    [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hsg.stderr.exp 37 <stack>
54 </stack>
65 <stack>
90 </stack>
92 <auxwhat>Expected: stack array "la" of size 200 in frame 1 back from here</auxwhat>
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 59 static void StackStripMain(ReportStack *stack) {
67 for (ReportStack *ent = stack; ent; ent = ent->next) {
94 // Ensure that we recovered stack completely. Trimmed stack
98 DPrintf("Bottom stack frame of stack %zx is missed\n", stack->pc);
111 const uptr *stack = StackDepotGet(stack_id, &ssz); local
112 if (stack == 0)
115 trace.Init(stack, ssz)
    [all...]
  /external/chromium_org/chrome/browser/resources/pdf/
background.js 9 * Keep a stack of stream details for requests. These are pushed onto the
10 * stack as requests come in and popped off the stack as they are handled by a
  /external/chromium_org/extensions/renderer/resources/
send_request.js 25 if (request.stack && request.stack != '')
26 errorMessage += "\n" + request.stack;
55 lastError.set(name, error, request.stack, chrome);
57 lastError.set(name, error, request.stack, callerChrome);
88 (request.stack ? "\n" + request.stack : ""));
99 var stack = $String.split(new Error().stack, '\n');
102 // Remove stack frames before and after that weren't associated with th
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp 156 stack.push_back(state);
173 if (stack.size() < 1)
176 tHeader* page = stack.back().page;
177 currentPageOffset = stack.back().offset;
193 stack.pop_back();
202 while (stack.size() > 0)
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
stacktrace_unittest.cc 112 void *stack[STACK_LEN]; local
118 size = GetStackTrace(stack, STACK_LEN, 0);
119 printf("Obtained %d stack frames.\n", size);
125 char **strings = backtrace_symbols(stack, size);
126 printf("Obtained %d stack frames.\n", size);
128 printf("%s %p\n", strings[i], stack[i]);
136 i, expected_range[i].start, expected_range[i].end, stack[i]);
138 CheckRetAddrIsInFunction(stack[i], expected_range[i]);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
stacktrace_unittest.cc 112 void *stack[STACK_LEN]; local
118 size = GetStackTrace(stack, STACK_LEN, 0);
119 printf("Obtained %d stack frames.\n", size);
125 char **strings = backtrace_symbols(stack, size);
126 printf("Obtained %d stack frames.\n", size);
128 printf("%s %p\n", strings[i], stack[i]);
136 i, expected_range[i].start, expected_range[i].end, stack[i]);
138 CheckRetAddrIsInFunction(stack[i], expected_range[i]);
  /external/chromium_org/v8/src/
json.js 50 function SerializeArray(value, replacer, stack, indent, gap) {
51 if (!%PushIfAbsent(stack, value)) {
59 var strP = JSONSerialize($String(i), value, replacer, stack,
76 stack.pop();
80 function SerializeObject(value, replacer, stack, indent, gap) {
81 if (!%PushIfAbsent(stack, value)) {
92 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
104 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
124 stack.pop();
128 function JSONSerialize(key, holder, replacer, stack, indent, gap)
    [all...]

Completed in 2882 milliseconds

<<11121314151617181920>>