HomeSort by relevance Sort by last modified time
    Searched refs:Stack (Results 201 - 225 of 334) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/bison/src/
parse-gram.c 486 /* The OS might guarantee only one guard page at the bottom of the stack,
489 to allow for a few compiler-allocated temporary stack slots. */
530 /* A type that is properly aligned for any stack member. */
538 /* The size of the maximum gap between one aligned stack and the next. */
549 /* Relocate STACK from its old location to the new one. The
551 elements in the stack, and YYPTR gives the new location of the
552 stack. Advance YYPTR to a properly aligned location for the next
553 stack. */
554 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
558 YYCOPY (&yyptr->Stack_alloc, Stack, yysize);
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 26 #include <stack>
171 std::stack<const Node *> stack; local
175 stack.push(node);
177 while (!stack.empty()) {
178 pos = stack.top();
179 stack.pop();
190 stack.push(ei.getNode());
286 Stack bb, cross;
nv50_ir_from_tgsi.cpp 1129 Stack condBBs; // fork BB, then else clause BB
1130 Stack joinBBs; // fork BB, for inserting join ops on ENDIF
1131 Stack loopBBs; // loop headers
1132 Stack breakBBs; // end of / after loop
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
open_element_stack.js 82 //Stack of open elements
203 //NOTE: here we assume that root <html> element is always first in the open element stack, so
204 //we perform this fast stack clean up.
240 //Properly nested <body> element (should be second element in stack).
  /external/proguard/src/proguard/evaluation/
Processor.java 31 * local variable frame and stack.
39 private final Stack stack; field in class:Processor
52 * @param stack the local stack.
59 Stack stack,
66 this.stack = stack;
87 stack.push(valueFactory.createReferenceValueNull())
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
URLClassPath.java 82 /* The stack of unopened URLs */
83 Stack<URL> urls = new Stack<URL>();
312 // or the URL stack is empty.
314 // Pop the next URL from the URL stack
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Table.java 282 /** Adds a new cell to the table with the specified actors in a {@link Stack}.
283 * @param actors May be null to add a stack without any actors. */
284 public Cell<Stack> stack (Actor... actors) { method in class:Table
285 Stack stack = new Stack(); local
288 stack.addActor(actors[i]);
290 return add(stack);
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 56 import java.util.Stack;
741 // Use a stack to help to build the group tree.
742 // The top of the stack is always the current group.
743 final Stack<VGroup> groupStack = new Stack<VGroup>();
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 32 import com.android.layoutlib.bridge.impl.Stack;
151 private final Stack<BridgeXmlBlockParser> mParserStack = new Stack<>();
288 * Adds a parser to the stack.
299 * Removes the parser at the top of the stack
309 * Returns the current parser at the top the of the stack.
    [all...]
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
VectorDrawableCompat.java 60 import java.util.Stack;
754 // Use a stack to help to build the group tree.
755 // The top of the stack is always the current group.
756 final Stack<VGroup> groupStack = new Stack<VGroup>();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudformation/
stack.py 6 class Stack(object):
104 raise ValueError("%s is not a valid Stack ID or Name" %
112 Returns the stack policy for this stack. If it has no policy
119 Sets a stack policy for this stack.
122 :param stack_policy_body: Structure containing the stack policy body.
123 (For more information, go to ` Prevent Updates to Stack Resources`_
129 :param stack_policy_url: Location of a file containing the stack
131 an S3 bucket in the same region as the stack. You must pas
    [all...]
  /external/llvm/include/llvm/Object/
MachO.h 97 SmallVector<NodeState, 16> Stack;
  /cts/tools/dasm/src/dasm/
parser.java 812 java.util.Stack stack,
817 return action_obj.CUP$do_action(act_num, parser, stack, top);
    [all...]
  /external/v8/src/js/
array.js 109 function Stack() {
116 Stack.prototype.length = null;
117 Stack.prototype.values = null;
119 function StackPush(stack, value) {
120 stack.values[stack.length++] = value;
123 function StackPop(stack) {
124 stack.values[--stack.length] = null
127 function StackHas(stack, v)
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 32 function stackToString(stack) {
33 return stack.join(' -> ');
88 // Stack looks like this: [pc, caller, ..., main].
191 var stack = stackToString(path);
192 assertNotNull(node, 'node not found: ' + stack);
193 assertEquals(selfTicks, node.selfWeight, 'self of ' + stack);
194 assertEquals(totalTicks, node.totalWeight, 'total of ' + stack);
243 // Only count each function in the stack once.
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 59 import java.util.Stack;
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 55 /// Stack abstraction that also supports the IList interface
61 /// Adds an element to the top of the stack list.
66 /// Removes the element at the top of the stack list and returns it.
68 /// <returns>The element at the top of the stack.</returns>
72 /// Removes the element at the top of the stack list without removing it.
74 /// <returns>The element at the top of the stack.</returns>
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarParser.cs 11 using Stack = System.Collections.Generic.Stack<object>;
    [all...]
ProfileGrammarParser.cs 11 using Stack = System.Collections.Generic.Stack<object>;
    [all...]

Completed in 2226 milliseconds

1 2 3 4 5 6 7 891011>>