HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 276 - 300 of 2692) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_rcontainer_alloc.pass.cpp 10 // <stack>
13 // stack(const container_type& c, const Alloc& a);
15 #include <stack>
37 : public std::stack<T, C>
39 typedef std::stack<T, C> base;
ctor_rqueue_alloc.pass.cpp 10 // <stack>
13 // stack(stack&& q, const Alloc& a);
15 #include <stack>
37 : public std::stack<T, C>
39 typedef std::stack<T, C> base;
  /external/chromium_org/content/renderer/pepper/
v8_var_converter.cc 8 #include <stack>
34 // Used to track parent nodes on the stack while traversing the graph.
234 // To/FromV8Value use a stack-based DFS search to traverse V8/Var graph. Each
235 // iteration, the top node on the stack examined. If the node has not been
240 // Otherwise, if they can have children, we add them to the stack. If the
241 // node at the top of the stack has already been visited, then we pop it off the
242 // stack and erase it from the list of parents.
253 std::stack<StackEntry<PP_Var> > stack; local
254 stack.push(StackEntry<PP_Var>(var))
356 std::stack<StackEntry<v8::Handle<v8::Value> > > stack; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java 155 ArrayList<BIHStackData> stack = vars.bihStack; local
156 stack.clear();
166 stack.add(new BIHStackData(this, 0, 0));
172 while (stack.size() > 0) {
173 BIHNode node = stack.remove(stack.size() - 1).node;
195 stack.add(new BIHStackData(node.right, 0, 0));
252 ArrayList<BIHStackData> stack = vars.bihStack; local
253 stack.clear();
254 stack.add(new BIHStackData(this, 0, 0))
304 ArrayList<BIHStackData> stack = vars.bihStack; local
    [all...]
  /cts/tools/dasm/src/java_cup/
parser.java 303 java.util.Stack stack,
308 return action_obj.CUP$do_action(act_num, parser, stack, top);
430 java.util.Stack CUP$stack,
452 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
460 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
468 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
478 if (symbols.get((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null)
481 lexer.emit_error( "Symbol \"" + (/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val
    [all...]
  /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...]
  /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/compiler-rt/lib/tsan/rtl/
tsan_report.cc 67 Printf(" [failed to restore the stack]\n\n");
107 PrintStack(mop->stack);
119 PrintStack(loc->stack);
121 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
127 PrintStack(loc->stack);
136 PrintStack(rm->stack);
150 if (rt->stack)
153 PrintStack(rt->stack);
163 return rep->mops[0]->stack;
167 return rep->mutexes[0]->stack;
    [all...]
  /external/grub/stage2/
tparm.c 85 * The parameter mechanism uses a stack and special %
87 * of the parameters onto the stack and then print it in some
123 * the stack works in the usual way, with
138 static stack_frame stack[STACKSIZE]; variable
193 stack[stack_ptr].num_type = TRUE;
194 stack[stack_ptr].data.num = x;
205 if (stack[stack_ptr].num_type)
206 result = stack[stack_ptr].data.num;
215 stack[stack_ptr].num_type = FALSE;
216 stack[stack_ptr].data.str = x
    [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...]
  /external/chromium_org/chrome/renderer/resources/extensions/
last_error.js 19 * optional |stack|.
21 function set(name, message, stack, targetChrome) {
23 if (stack != null && stack != '')
24 errorMessage += '\n' + stack;
72 function run(name, message, stack, callback, args) {
74 set(name, message, stack, targetChrome);
  /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);
  /external/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);
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-common.c 348 Protect the stack active area and the guard areas appropriately.
350 stack. On success, also sets *initial_sp to what the stack pointer
357 VgStack* stack; local
361 /* Allocate the stack. */
369 stack = (VgStack*)(AddrH)sr_Res(sres);
372 aspacem_assert(VG_IS_PAGE_ALIGNED(stack));
376 (Addr) &stack[0],
381 (Addr) &stack->bytes[0],
386 (Addr) &stack->bytes[VG_STACK_GUARD_SZB + VG_STACK_ACTIVE_SZB],
    [all...]
  /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/v8/src/
json.js 64 function SerializeArray(value, replacer, stack, indent, gap) {
65 if (!%PushIfAbsent(stack, value)) {
73 var strP = JSONSerialize($String(i), value, replacer, stack,
90 stack.pop();
94 function SerializeObject(value, replacer, stack, indent, gap) {
95 if (!%PushIfAbsent(stack, value)) {
106 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
118 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
138 stack.pop();
142 function JSONSerialize(key, holder, replacer, stack, indent, gap)
    [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/compiler-rt/lib/lsan/
lsan_interceptors.cc 38 StackTrace stack; \
47 GetStackTrace(&stack, __sanitizer::common_flags()->malloc_context_size, \
63 return Allocate(stack, size, 1, kAlwaysClearMemory);
76 return Allocate(stack, size, 1, true);
82 return Reallocate(stack, q, size, 1);
88 return Allocate(stack, size, alignment, kAlwaysClearMemory);
94 *memptr = Allocate(stack, size, alignment, kAlwaysClearMemory);
104 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory);
135 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory);
143 return Allocate(stack, size, 1, kAlwaysClearMemory)
    [all...]
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 34 * and it updates the stack for the invocation of a class member,
50 private Stack stack; field in class:BasicInvocationUnit
138 public void invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack)
176 this.stack = stack;
178 this.stack = null;
189 setFieldValue(clazz, fieldrefConstant, stack.pop());
195 setFieldClassValue(clazz, fieldrefConstant, stack.apop())
    [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>

Completed in 1040 milliseconds

<<11121314151617181920>>