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

<<21222324252627282930>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
sgmllib.py 75 self.stack = []
216 # XXX if end: check for empty stack
344 self.stack.append(tag)
351 found = len(self.stack) - 1
356 if tag not in self.stack:
364 found = len(self.stack)
366 if self.stack[i] == tag: found = i
367 while len(self.stack) > found:
368 tag = self.stack[-1]
377 del self.stack[-1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
sgmllib.py 75 self.stack = []
216 # XXX if end: check for empty stack
344 self.stack.append(tag)
351 found = len(self.stack) - 1
356 if tag not in self.stack:
364 found = len(self.stack)
366 if self.stack[i] == tag: found = i
367 while len(self.stack) > found:
368 tag = self.stack[-1]
377 del self.stack[-1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sgmllib.py 75 self.stack = []
216 # XXX if end: check for empty stack
344 self.stack.append(tag)
351 found = len(self.stack) - 1
356 if tag not in self.stack:
364 found = len(self.stack)
366 if self.stack[i] == tag: found = i
367 while len(self.stack) > found:
368 tag = self.stack[-1]
377 del self.stack[-1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sgmllib.py 75 self.stack = []
216 # XXX if end: check for empty stack
344 self.stack.append(tag)
351 found = len(self.stack) - 1
356 if tag not in self.stack:
364 found = len(self.stack)
366 if self.stack[i] == tag: found = i
367 while len(self.stack) > found:
368 tag = self.stack[-1]
377 del self.stack[-1
    [all...]
  /system/bt/btif/
Android.mk 91 $(LOCAL_PATH)/../stack/include \
92 $(LOCAL_PATH)/../stack/l2cap \
93 $(LOCAL_PATH)/../stack/a2dp \
94 $(LOCAL_PATH)/../stack/btm \
95 $(LOCAL_PATH)/../stack/avdt \
  /external/v8/test/mjsunit/
eval-stack-trace.js 28 // Return the stack frames of an Error object.
35 var frames = this.stack;
94 // f (eval at g (eval-stack.js:87:8), <anonymous>:2:9)
95 // eval (eval at g (eval-stack.js:87:8), <anonymous>:4:1)
96 // g (eval-stack.js:87:3)
97 // eval-stack.js:94:3
124 // f (eval at h (eval at <anonymous> (eval-stack.js:116:8)),
126 // eval (eval at h (eval at <anonymous> (eval-stack.js:116:8)),
128 // h (eval at <anonymous> (eval-stack.js:116:8), <anonymous>:3:3)
129 // eval (eval at <anonymous> (eval-stack.js:116:8), <anonymous>:5:1
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
FileOperationService.java 162 DocumentStack stack = intent.getParcelableExtra(Shared.EXTRA_STACK); local
164 job = createJob(operationType, jobId, srcs, srcParent, stack);
230 DocumentStack stack) {
239 + ". Ignoring job request for srcs: " + srcs + ", stack: " + stack + ".");
246 this, getApplicationContext(), this, id, stack, srcs);
249 this, getApplicationContext(), this, id, stack, srcs,
253 this, getApplicationContext(), this, id, stack, srcs,
FileOperations.java 70 DocumentStack stack, int operationType) {
76 return FileOperations.copy(activity, srcDocs, stack);
91 DocumentStack stack, int operationType) {
97 return FileOperations.copy(activity, srcDocs, stack);
99 return FileOperations.move(activity, srcDocs, srcParent, stack);
141 * @param destination The move destination stack.
  /dalvik/dx/src/com/android/dx/ssa/
SsaMethod.java 35 import java.util.Stack;
757 // We push the parent first, then the child on the stack.
758 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local
767 stack.add(null); // Start with null parent.
768 stack.add(rootBlock);
770 while (stack.size() > 0) {
771 SsaBasicBlock cur = stack.pop();
772 SsaBasicBlock parent = stack.pop()
797 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaMethod.java 36 import java.util.Stack;
758 // We push the parent first, then the child on the stack.
759 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local
768 stack.add(null); // Start with null parent.
769 stack.add(rootBlock);
771 while (stack.size() > 0) {
772 SsaBasicBlock cur = stack.pop();
773 SsaBasicBlock parent = stack.pop()
798 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
ExecutionListBenchmark.java 333 // A version of the execution list that doesn't reverse the stack in execute().
394 // rather than flipping the stack in execute().
463 // A version of the list that uses compare and swap to manage the stack without locks.
472 * bottom of the stack.
526 // Try to make newHead the new head of the stack at runnables.
532 RunnableExecutorPair stack;
534 stack = head;
535 if (stack == null) {
540 } while (!UNSAFE.compareAndSwapObject(this, HEAD_OFFSET, stack, null));
543 while (stack != NULL_PAIR)
    [all...]
  /external/opencv3/modules/ml/src/
kdtree.cpp 195 SubTree stack[MAX_TREE_DEPTH*2];
205 stack[top++] = SubTree(0, n-1, 0, 0);
210 int first = stack[top].first, last = stack[top].last;
211 int depth = stack[top].depth, nidx = stack[top].nodeIdx;
258 stack[top++] = SubTree(first, middle, left, depth+1);
259 stack[top++] = SubTree(middle+1, last, right, depth+1);
436 int* stack = _stack;
439 stack[top++] = 0
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStarter.java 127 * an activity and associated task and stack.
365 final ActivityStack resultStack = resultRecord == null ? null : resultRecord.task.stack;
487 final ActivityStack stack = mSupervisor.mFocusedStack; local
488 if (voiceSession == null && (stack.mResumedActivity == null
489 || stack.mResumedActivity.info.applicationInfo.uid != callingUid)) {
493 sourceRecord, startFlags, stack, callerApp);
520 postStartActivityUncheckedProcessing(r, err, stack.mStackId, mSourceRecord, mTargetStack);
596 if (r.task != null && r.task.stack != null) {
597 startedActivityStackId = r.task.stack.mStackId;
603 // screen, we also need to start recents to un-minimize the docked stack, since th
783 final ActivityStack stack; local
1798 final ActivityStack stack = mSupervisor.moveTaskToStackUncheckedLocked( local
1908 ActivityStack stack = getLaunchStack(r, launchFlags, task, aOptions); local
    [all...]
  /external/libchrome/base/trace_event/
trace_event_argument.cc 354 std::vector<Value*> stack; local
366 stack.push_back(cur_dict);
370 stack.push_back(cur_list);
378 if (stack.back()->GetAsDictionary(&cur_dict)) {
380 } else if (stack.back()->GetAsList(&cur_list)) {
383 stack.pop_back();
391 stack.push_back(cur_dict);
396 stack.push_back(cur_list);
445 DCHECK(stack.empty());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsTransitionHelper.java 101 public void launchTaskFromRecents(final TaskStack stack, @Nullable final Task task,
152 startTaskActivity(stack, task, taskView, opts, transitionFuture, animStartedListener);
160 startTaskActivity(stack, task, taskView, opts, transitionFuture,
167 startTaskActivity(stack, task, taskView, opts, transitionFuture,
198 private void startTaskActivity(TaskStack stack, Task task, @Nullable TaskView taskView,
205 int taskIndex = stack.indexOfStackTask(task);
207 taskIndexFromFront = stack.getTaskCount() - taskIndex - 1;
280 * Composes the animation specs for all the tasks in the target stack.
284 // Ensure we have a valid target stack id
297 // If this is a full screen stack, the transition will be towards the single, full scree
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 185 * Gets the failure message to show from the stack trace.
189 * @param stack the full stack trace
192 static String getFailureMessageFromStackTrace(String stack) {
193 // return the first two lines of stack as failure message
194 int endPoint = stack.indexOf('\n');
196 int nextLine = stack.indexOf('\n', endPoint + 1);
198 return stack.substring(0, nextLine);
201 return stack;
  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 120 ExecutionStack stack = frame.getStack(); local
130 args[i] = stack.pop();
148 throw new SimException("at stack depth " + (size - 1 - i) +
531 * onto the stack.
552 ExecutionStack stack = frame.getStack(); local
555 stack.setLocal();
557 stack.push(results[i]);
  /external/boringssl/src/crypto/bn/
ctx.c 65 /* The stack frame info is resizing, set a first-time expansion size; */
80 /* Stack depth and allocation size */
93 /* A wrapper to manage the "stack frames" */
95 /* Array of indexes into the bignum stack */
97 /* Number of stack frames, and the size of the allocated array */
114 /* The "stack frames", if you will */
115 BN_STACK stack; member in struct:bignum_ctx
118 /* Depth of stack overflow */
133 BN_STACK_init(&ret->stack);
145 BN_STACK_finish(&ctx->stack);
    [all...]
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.stack.js 13 Two or more series are stacked when their "stack" attribute is set to the same
15 stack, you can set the stack option like this:
18 stack: null/false, true, or a key (number/string)
25 stack: true
40 series: { stack: null } // or number/string
50 if (allseries[i].stack == s.stack)
58 if (s.stack == null || s.stack === false
    [all...]
jquery.flot.stack.min.js 7 (function($){var options={series:{stack:null}};function init(plot){function findMatchingSeries(s,allseries){var res=null;for(var i=0;i<allseries.length;++i){if(s==allseries[i])break;if(allseries[i].stack==s.stack)res=allseries[i]}return res}function stackData(plot,s,datapoints){if(s.stack==null||s.stack===false)return;var other=findMatchingSeries(s,plot.getData());if(!other)return;var ps=datapoints.pointsize,points=datapoints.points,otherps=other.datapoints.pointsize,otherpoints=other.datapoints.points,newpoints=[],px,py,intery,qx,qy,bottom,withlines=s.lines.show,horizontal=s.bars.horizontal,withbottom=ps>2&&(horizontal?datapoints.format[2].x:datapoints.format[2].y),withsteps=withlines&&s.lines.steps,fromgap=true,keyOffset=horizontal?1:0,accumulateOffset=horizontal?0:1,i=0,j=0,l,m;while(true){if(i>=points.length)break;l=newpoints.length;if(points[i]==null){for(m=0;m<ps;++m)newpoints.push(points[i+m]);i+=ps}else if(j>=otherpoints.length){if(!withlines){for(m=0;m<ps;++m)newpoints.push(points[i+m])}i+=ps}else if(otherpoints[j]==null){for(m=0;m<ps;++m)newpoints.push(null);fromgap=true;j+=otherps}else{px=points[i+keyOffset];py=points[i+accumulateOffset];qx=otherpoints[j+keyOffset];qy=otherpoints[j+accumulateOffset];bottom=0;if(px==qx){for(m=0;m<ps;++m)newpoints.push(points[i+m]);newpoints[l+accumulateOffset]+=qy;bottom=qy;i+=ps;j+=otherps}else if(px>qx){if(withlines&&i>0&&points[i-ps]!=null){intery=py+(points[i-ps+accumulateOffset]-py)*(qx-px)/(points[i-ps+keyOffset]-px);newpoints.push(qx);newpoints.push(intery+qy);for(m=2;m<ps;++m)newpoints.push(points[i+m]);bottom=qy}j+=otherps}else{if(fromgap&&withlines){i+=ps;continue}for(m=0;m<ps;++m)newpoints.push(points[i+m]);if(withlines&&j>0&&otherpoints[j-otherps]!=null)bottom=qy+(otherpoints[j-otherps+accumulateOffset]-qy)*(px-qx)/(otherpoints[j-otherps+keyOffset]-qx);newpoints[l+accumulateOffset]+=bottom;i+=ps}fromgap=false;if(l!=newpoints.length&&withbottom)newpoints[l+2]+=bottom}if(withsteps&&l!=newpoints.length&&l>0&&newpoints[l]!=null&&newpoints[l]!=newpoints[l-ps]&&newpoints[l+1]!=newpoints[l-ps+1]){for(m=0;m<ps;++m)newpoints[l+ps+m]=newpoints[l+m];newpoints[l+1]=newpoints[l-ps+1]}}datapoints.points=newpoints}plot.hooks.processDatapoints.push(stackData)}$.plot.plugins.push({init:init,options:options,name:"stack",version:"1.2"})})(jQuery)
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 25 self.stack = []
93 self.stack.append(_TAG_)
97 assert self.stack and self.stack[-1] == _TAG_, "nonmatching endtag"
98 del self.stack[-1]
  /external/google-breakpad/src/processor/
stackwalker_selftest.cc 31 // running process' stack as test data, if running on an x86 or ppc and
37 // - stack frame reuse. The Recursor function here calls itself with
42 // caller frame in the stack than its caller.
127 // end of a stack when it tries to dereference a null or low pointer
149 // on the stack (provided frame pointers are not being omitted.) Because
165 // The CALL instruction places a 4-byte return address on the stack above
167 // on the stack as well, for another 4 bytes, before storing %esp in %ebp.
181 // stack, where it was placed by the call instruction that called GetEIP.
204 // is the stack pointer on ppc. Because it's implemented as a function,
205 // %r1 itself contains GetSP's own stack pointer and not the caller's stac
346 CallStack stack; local
    [all...]
  /external/javassist/src/main/javassist/
CodeConverter.java 515 int stack = 0; local
522 if (s > stack)
523 stack = s;
532 if (stack > 0)
533 codeAttr.setMaxStack(codeAttr.getMaxStack() + stack);
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 100 context.updateMax(h.locals(), h.stack());
166 void updateMax(int locals, int stack) {
170 if (maxStack < stack)
171 maxStack = stack;
245 context.updateMax(expr.locals(), expr.stack());
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
NavigationView.java 104 while (mState.stack.size() > position + 1) {
125 if (mState.stack.size() <= 1) {
178 return mState.stack.size();
183 return mState.stack.get(mState.stack.size() - position - 1);

Completed in 1520 milliseconds

<<21222324252627282930>>