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

<<11121314151617181920>>

  /external/chromium-trace/catapult/third_party/Paste/paste/util/
finddata.py 53 stack = [(convert_path(where), '', package, only_in_packages)]
54 while stack:
55 where, prefix, package, only_in_packages = stack.pop(0)
76 stack.append((fn, '', new_package, False))
78 stack.append((fn, prefix + name + '/', package, only_in_packages))
  /external/mesa3d/src/mapi/glapi/gen/
gl_x86_asm.py 206 print ' .section .note.GNU-stack,"",%progbits'
214 stack = self.get_stack_size(f)
215 alt = "%s@%u" % (name, stack)
225 stack = self.get_stack_size(f)
226 alt = "%s@%u" % (name, stack)
231 alt2 = "%s@%u" % (n, stack)
  /external/v8/test/mjsunit/compiler/
regress-stacktrace-methods.js 30 // Test stack traces with method calls.
56 var stack = e.stack.toString();
57 var p3 = stack.indexOf("at Hest.three");
58 var p2 = stack.indexOf("at Svin.two");
59 var p1 = stack.indexOf("at Hest.one");
65 assertTrue(stack.indexOf("38:56") != -1);
66 assertTrue(stack.indexOf("34:51") != -1);
67 assertTrue(stack.indexOf("36:38") != -1);
68 assertTrue(stack.indexOf("54:5") != -1)
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.cc 82 const State& state = it->second.stack.top();
101 const State& state = it->second.stack.top();
124 const State& state = it->second.stack.top();
137 const State& state = it->second.stack.top();
153 const State& state = it->second.stack.top();
172 const State& state = it->second.stack.top();
187 const State& state = it->second.stack.top();
223 std::stack<State>* stack = &thread_state->stack; local
236 std::stack<State>* stack = &it->second.stack; local
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
State.java 117 /** Current user navigation stack; empty implies recents. */
118 public DocumentStack stack = new DocumentStack(); field in class:State
143 if (!mInitialRootChanged && stack.root != null && !root.equals(stack.root)) {
146 stack.root = root;
147 stack.clear();
152 if (DEBUG) Log.d(TAG, "Adding doc to stack: " + info);
153 if (!mInitialDocChanged && stack.size() > 0 && !info.equals(stack.peek())) {
156 stack.push(info)
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.h 160 void *asan_memalign(uptr alignment, uptr size, BufferedStackTrace *stack,
162 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type);
163 void asan_sized_free(void *ptr, uptr size, BufferedStackTrace *stack,
166 void *asan_malloc(uptr size, BufferedStackTrace *stack);
167 void *asan_calloc(uptr nmemb, uptr size, BufferedStackTrace *stack);
168 void *asan_realloc(void *p, uptr size, BufferedStackTrace *stack);
169 void *asan_valloc(uptr size, BufferedStackTrace *stack);
170 void *asan_pvalloc(uptr size, BufferedStackTrace *stack);
173 BufferedStackTrace *stack);
  /external/valgrind/helgrind/tests/
tc06_two_races_xml.stderr.exp 47 <stack>
73 </stack>
84 <stack>
93 </stack>
98 <stack>
116 </stack>
129 <stack>
138 </stack>
143 <stack>
161 </stack>
    [all...]
  /art/tools/ahat/src/
AhatSnapshot.java 113 StackTrace stack = getStack(inst); local
114 int stackId = getStackTraceSerialNumber(stack);
115 if (stack != null) {
116 StackFrame[] frames = getStackFrames(stack);
198 StackTrace stack = getStack(inst); local
199 if (stack != null) {
200 StackFrame[] frames = getStackFrames(stack);
235 // Return the stack where the given instance was allocated.
240 // Return the list of stack frames for a stack trace
255 StackTrace stack = mSnapshot.getStackTrace(stackId); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 27 * of a set of locals and a value stack, and it can be told to act on
35 /** {@code non-null;} the stack */
36 private final ExecutionStack stack; field in class:Frame
38 /** {@code null-ok;} stack of labels of subroutines that this block is nested in */
45 * @param stack {@code non-null;} the execution stack to use
47 private Frame(LocalsArray locals, ExecutionStack stack) {
48 this(locals, stack, IntList.EMPTY);
55 * @param stack {@code non-null;} the execution stack to us
    [all...]
  /external/valgrind/memcheck/tests/x86-solaris/
scalar_obsolete.stderr.exp 12 Address 0x........ is not stack'd, malloc'd or (recently) free'd
16 Address 0x........ is not stack'd, malloc'd or (recently) free'd
29 Address 0x........ is not stack'd, malloc'd or (recently) free'd
33 Address 0x........ is not stack'd, malloc'd or (recently) free'd
46 Address 0x........ is not stack'd, malloc'd or (recently) free'd
59 Address 0x........ is not stack'd, malloc'd or (recently) free'd
75 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 90 byte[] stack = new byte[5];
91 int pos = stack.length;
93 stack[--pos] = (byte)(tagNo & 0x7F);
98 stack[--pos] = (byte)(tagNo & 0x7F | 0x80);
102 write(stack, pos, stack.length - pos);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONWriter.java 79 * The object/array stack.
81 private JSONObject stack[]; field in class:JSONWriter
84 * The stack top index. A value of 0 indicates that the stack is empty.
99 this.stack = new JSONObject[maxdepth];
210 stack[top - 1].putOnce(s, Boolean.TRUE);
257 char m = this.stack[this.top - 1] == null ? 'a' : 'k';
262 this.mode = this.top == 0 ? 'd' : this.stack[this.top - 1] == null ? 'a' : 'k';
274 this.stack[this.top] = jo;
  /external/v8/test/mjsunit/
debug-evaluate-nested-let.js 19 // We cannot change stack locals in optimized frames.
28 // We cannot change stack locals in optimized frames.
43 print("Caught something. " + e + " " + e.stack);
  /external/v8/test/mjsunit/regress/
regress-crbug-608278.js 10 var stack = (new Error("boom")).stack;
11 print(stack);
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
misc.py 31 class Stack:
33 self.stack = []
34 self.pop = self.stack.pop
36 return len(self.stack)
38 self.stack.append(elt)
40 return self.stack[-1]
42 return self.stack[index]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
misc.py 31 class Stack:
33 self.stack = []
34 self.pop = self.stack.pop
36 return len(self.stack)
38 self.stack.append(elt)
40 return self.stack[-1]
42 return self.stack[index]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
misc.py 31 class Stack:
33 self.stack = []
34 self.pop = self.stack.pop
36 return len(self.stack)
38 self.stack.append(elt)
40 return self.stack[-1]
42 return self.stack[index]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
misc.py 31 class Stack:
33 self.stack = []
34 self.pop = self.stack.pop
36 return len(self.stack)
38 self.stack.append(elt)
40 return self.stack[-1]
42 return self.stack[index]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.h 196 /* Stack element */
329 ///rayTest is slower than rayTestInternal, because it builds a local stack, using memory allocations, and it recomputes signs/rayDirectionInverses each time
335 ///rayTestInternal is faster than rayTest, because it uses a persistent stack (to reduce dynamic memory allocations to a minimum) and it uses precomputed signs/rayInverseDirections
930 btAlignedObjectArray<const btDbvtNode*> stack; local
931 stack.resize(0);
932 stack.reserve(SIMPLE_STACKSIZE);
933 stack.push_back(root);
935 const btDbvtNode* n=stack[stack.size()-1];
936 stack.pop_back()
972 btAlignedObjectArray<const btDbvtNode*>& stack = m_rayTestStack; local
1029 btAlignedObjectArray<const btDbvtNode*> stack; local
1086 btAlignedObjectArray<sStkNP> stack; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pickle.py 102 MARK = '(' # push special markobject on stack
104 POP = '0' # discard topmost stack item
105 POP_MARK = '1' # discard stack top through topmost markobject
106 DUP = '2' # duplicate top stack item
115 BINPERSID = 'Q' # " " " ; " " " " stack
116 REDUCE = 'R' # apply callable to argtuple, both on stack
122 APPEND = 'a' # append stack top to list below it
125 DICT = 'd' # build a dict from stack items
127 APPENDS = 'e' # extend list on stack by topmost stack slic
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pickle.py 102 MARK = '(' # push special markobject on stack
104 POP = '0' # discard topmost stack item
105 POP_MARK = '1' # discard stack top through topmost markobject
106 DUP = '2' # duplicate top stack item
115 BINPERSID = 'Q' # " " " ; " " " " stack
116 REDUCE = 'R' # apply callable to argtuple, both on stack
122 APPEND = 'a' # append stack top to list below it
125 DICT = 'd' # build a dict from stack items
127 APPENDS = 'e' # extend list on stack by topmost stack slic
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py 102 MARK = '(' # push special markobject on stack
104 POP = '0' # discard topmost stack item
105 POP_MARK = '1' # discard stack top through topmost markobject
106 DUP = '2' # duplicate top stack item
115 BINPERSID = 'Q' # " " " ; " " " " stack
116 REDUCE = 'R' # apply callable to argtuple, both on stack
122 APPEND = 'a' # append stack top to list below it
125 DICT = 'd' # build a dict from stack items
127 APPENDS = 'e' # extend list on stack by topmost stack slic
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py 102 MARK = '(' # push special markobject on stack
104 POP = '0' # discard topmost stack item
105 POP_MARK = '1' # discard stack top through topmost markobject
106 DUP = '2' # duplicate top stack item
115 BINPERSID = 'Q' # " " " ; " " " " stack
116 REDUCE = 'R' # apply callable to argtuple, both on stack
122 APPEND = 'a' # append stack top to list below it
125 DICT = 'd' # build a dict from stack items
127 APPENDS = 'e' # extend list on stack by topmost stack slic
    [all...]
  /frameworks/base/core/java/android/util/
JsonWriter.java 125 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonWriter
127 stack.add(JsonScope.EMPTY_DOCUMENT);
240 stack.add(empty);
253 throw new IllegalStateException("Nesting problem: " + stack);
256 stack.remove(stack.size() - 1);
265 * Returns the value on the top of the stack.
268 return stack.get(stack.size() - 1);
272 * Replace the value on the top of the stack with the given value
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityMetricsLogger.java 71 ActivityStack stack = mSupervisor.getStack(DOCKED_STACK_ID); local
72 if (stack != null && stack.getStackVisibilityLocked(null) != STACK_INVISIBLE) {
77 stack = mSupervisor.getFocusedStack();
78 if (stack.mStackId == PINNED_STACK_ID) {
79 stack = mSupervisor.findStackBehind(stack);
81 if (stack.mStackId == HOME_STACK_ID
82 || stack.mStackId == FULLSCREEN_WORKSPACE_STACK_ID) {
84 } else if (stack.mStackId == DOCKED_STACK_ID)
    [all...]

Completed in 1471 milliseconds

<<11121314151617181920>>