/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/valgrind/main/memcheck/tests/ |
writev1.stderr.exp | 5 Address 0x........ is not stack'd, malloc'd or (recently) free'd 11 Address 0x........ is not stack'd, malloc'd or (recently) free'd 17 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
badjump.stderr.exp | 5 Address 0x........ is not stack'd, malloc'd or (recently) free'd 12 If you believe this happened as a result of a stack 15 main thread stack using the --main-stacksize= flag. 16 The main thread stack size used in this run was ....
|
badjump2.stderr.exp | 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
long_namespace_xml.stderr.exp | 36 <stack> 53 </stack> 55 <stack> 80 </stack>
|
/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]
|
/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...] |
/art/runtime/arch/arm/ |
jni_entrypoints_arm.S | 31 sub sp, #12 @ pad stack pointer to align frame 35 add sp, #12 @ restore stack pointer
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
IncomingMessageInterstitial.java | 50 * Perform a switch to the app. A new activity stack is started, replacing 58 // Build the new activity stack, launch it, and finish this UI. 59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg); local 60 startActivities(stack);
|
/external/chromium_org/media/formats/webm/chromeos/ |
webm_encoder.h | 9 #include <stack> 90 // Stack with start offsets of currently open sub-elements. 91 std::stack<long int> ebml_sub_elements_;
|
/external/chromium_org/third_party/bintrees/bintrees/ |
cwalker.pyx | 11 from stack cimport * 18 self.stack = stack_init(MAXSTACK) 21 stack_delete(self.stack) 28 stack_reset(self.stack) 61 stack_push(self.stack, self.node) 64 if stack_is_empty(self.stack) != 0: 65 raise IndexError('pop(): stack is empty') 66 self.node = stack_pop(self.stack) 69 return <bint> stack_is_empty(self.stack)
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
profiledata.h | 50 // Each sample contains a stack trace and a count. Memory usage is 51 // reduced by combining profile samples that have the same stack trace 103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile 126 // entries from 'stack'. (depth must be > 0.) At most 127 // kMaxStackDepth stack entries will be recorded, starting with 128 // stack[0]. 132 void Add(int depth, const void* const* stack); 155 Slot depth; // Stack depth 156 Slot stack[kMaxStackDepth]; // Stack content member in struct:ProfileData::Entry [all...] |
stacktrace_config.h | 58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file) 60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
profiledata.h | 50 // Each sample contains a stack trace and a count. Memory usage is 51 // reduced by combining profile samples that have the same stack trace 103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile 126 // entries from 'stack'. (depth must be > 0.) At most 127 // kMaxStackDepth stack entries will be recorded, starting with 128 // stack[0]. 132 void Add(int depth, const void* const* stack); 155 Slot depth; // Stack depth 156 Slot stack[kMaxStackDepth]; // Stack content member in struct:ProfileData::Entry [all...] |
stacktrace_config.h | 58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file) 60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/ |
run.sh | 10 cp ../../../third_party/flot/jquery.flot.stack.min.js static/third_party/flot
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-350865.js | 5 // Flags: --stress-compaction --stack-size=150
|
/external/compiler-rt/lib/msan/ |
msan_new_delete.cc | 39 return MsanReallocate(&stack, 0, size, sizeof(u64), false) 52 if (ptr) MsanDeallocate(&stack, ptr)
|
/external/valgrind/main/drd/tests/ |
annotate_barrier_xml.stderr.exp | 39 <stack> 64 </stack> 72 <stack> 97 </stack> 105 <stack> 130 </stack> 138 <stack> 163 </stack> 171 <stack> 188 </stack> [all...] |
hg04_race.stderr.exp | 9 (thread finished, call stack no longer available) 11 (thread finished, call stack no longer available) 19 (thread finished, call stack no longer available) 21 (thread finished, call stack no longer available)
|
hg05_race2.stderr.exp | 9 (thread finished, call stack no longer available) 11 (thread finished, call stack no longer available) 19 (thread finished, call stack no longer available) 21 (thread finished, call stack no longer available)
|
tc21_pthonce.stderr.exp | 9 (thread finished, call stack no longer available) 11 (thread finished, call stack no longer available) 19 (thread finished, call stack no longer available) 21 (thread finished, call stack no longer available)
|