/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
ParseTreeBuilder.java | 34 import java.util.Stack; 44 Stack callStack = new Stack();
|
/external/valgrind/helgrind/ |
hg_addrdescr.c | 91 tl_assert(ai->Addr.Stack.tinfo.tid); 93 if (thr->coretid == ai->Addr.Stack.tinfo.tid) { 94 ai->Addr.Stack.tinfo.tnr = thr->errmsg_index;
|
/cts/tools/dasm/src/java_cup/ |
lalr_item.java | 3 import java.util.Stack; 47 _propagate_items = new Stack(); 85 protected Stack _propagate_items; 88 public Stack propagate_items() {return _propagate_items;}
|
/external/proguard/src/proguard/evaluation/ |
InvocationUnit.java | 30 * and it updates the stack for the invocation of a class member. 53 * Updates the given stack corresponding to the execution of the given 61 Stack stack);
|
Stack.java | 28 * This class represents an operand stack that contains <code>Value</code> 33 public class Stack 44 * Creates a new Stack with a given maximum size, accounting for the double 47 public Stack(int maxSize) 54 * Creates a Stack that is a copy of the given Stack. 56 public Stack(Stack stack) 59 this(stack.values.length) [all...] |
TracedStack.java | 26 * This Stack saves additional information with stack elements, to keep track 29 * The stack stores a given producer Value along with each Value it stores. 37 public class TracedStack extends Stack 40 private Stack producerStack; 41 private Stack actualProducerStack; 51 producerStack = new Stack(maxSize); 52 actualProducerStack = new Stack(maxSize); 63 producerStack = new Stack(tracedStack.producerStack); 64 actualProducerStack = new Stack(tracedStack.actualProducerStack) [all...] |
/external/skia/tools/lua/ |
dump_clipstack_at_restore.lua | 14 -- io.write("Clip Stack at restore #", restoreCount, ":\n") 15 io.write("Reduced Clip Stack at restore #", restoreCount, ":\n")
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
unwind-3.d | 9 Stack increment 56
|
/external/llvm/include/llvm/Support/ |
FileSystem.h | 38 #include <stack> 800 std::stack<directory_iterator, std::vector<directory_iterator> > Stack; 815 State->Stack.push(directory_iterator(path, ec)); 816 if (State->Stack.top() == directory_iterator()) 827 if ((ec = State->Stack.top()->status(st))) return *this; 829 State->Stack.push(directory_iterator(*State->Stack.top(), ec)); 831 if (State->Stack.top() != end_itr) { 835 State->Stack.pop() [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
Stack.java | 36 /** A stack is a container that sizes its children to its size and positions them at 0,0 on top of each other.
38 * The preferred and min size of the stack is the largest preferred and min size of any children. The max size of the stack is the
41 public class Stack extends WidgetGroup {
45 public Stack () {
52 public Stack (Actor... actors) {
|
/external/mockito/src/org/mockito/internal/progress/ |
ArgumentMatcherStorageImpl.java | 19 import java.util.Stack; 26 private Stack<LocalizedMatcher> matcherStack = new Stack<LocalizedMatcher>();
|
/external/proguard/src/proguard/classfile/util/ |
DescriptorClassEnumeration.java | 25 import java.util.Stack; 41 private Stack accumulatedClassNames; 117 // Make sure we have a stack. 120 accumulatedClassNames = new Stack();
|
/external/testng/src/main/java/org/testng/internal/ |
Tarjan.java | 9 import java.util.Stack; 17 private Stack<T> m_s; 23 m_s = new Stack<>();
|
/external/apache-harmony/support/src/test/java/tests/util/ |
CallVerificationStack.java | 20 import java.util.Stack; 23 * A stack to store the parameters of a call, as well as the call stack. 25 public class CallVerificationStack extends Stack<Object> { 44 // the call stack, store StackTraceElement 45 private final Stack<StackTraceElement> callStack = new Stack<StackTraceElement>(); 76 * Pushes the call stack. 108 * Clear the parameter stack and the call stack [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
CoreEngine.cpp | 45 SmallVector<WorkListUnit,20> Stack; 48 return !Stack.empty(); 52 Stack.push_back(U); 56 assert (!Stack.empty()); 57 const WorkListUnit& U = Stack.back(); 58 Stack.pop_back(); // This technically "invalidates" U, but we are fine. 64 I = Stack.begin(), E = Stack.end(); I != E; ++I) { 111 SmallVector<WorkListUnit,20> Stack; 114 return !Queue.empty() || !Stack.empty() [all...] |
/external/giflib/ |
gif_lib_private.h | 42 StackPtr, /* For character stack (see below). */ 50 GifByteType Stack[LZ_MAX_CODE]; /* Decoded pixels are stacked here. */
|
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblyRegStackify.cpp | 16 /// "push" and "pop" from the stack. 64 // expression stack ordering constraints needed for an instruction which is 65 // consumed by an instruction using the expression stack. 75 // expression stack ordering constraints for an instruction which is on 76 // the expression stack. 87 // instruction on the expression stack. 149 // operands off the stack in LIFO order. 159 // an expression stack input so that it isn't reordered with anything 160 // in an expression stack which might use it (physical registers 234 SmallVector<unsigned, 0> Stack; [all...] |
/libcore/support/src/test/java/tests/util/ |
CallVerificationStack.java | 20 import java.util.Stack; 23 * A stack to store the parameters of a call, as well as the call stack. 26 public class CallVerificationStack extends Stack<Object> { 45 // the call stack, store StackTraceElement 46 private final Stack<StackTraceElement> callStack = new Stack<StackTraceElement>(); 77 * Pushes the call stack. 109 * Clear the parameter stack and the call stack [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
memorybuffer.h | 19 #include "internal/stack.h" 57 mutable internal::Stack<Allocator> stack_;
|
/external/ImageMagick/MagickWand/ |
wandcli-private.h | 86 /* Define a generic stack linked list, for pushing and popping 94 } Stack; 118 Stack
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
ParseTreeBuilder.cs | 45 Stack<ParseTree> callStack = new Stack<ParseTree>();
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
ParseTreeBuilder.cs | 47 Stack<ParseTree> callStack = new Stack<ParseTree>();
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudformation/ |
test_stack.py | 24 <StackId>arn:aws:cloudformation:ap-southeast-1:100:stack/Name/id</StackId> 59 <StackId>arn:aws:cloudformation:us-east-1:123456789:stack/MyStack/aaf549a0-a413-11df-adb3-5081b3858e83</StackId> 68 <StackId>arn:aws:cloudformation:us-east-1:123456789:stack/MyStack/aaf549a0-a413-11df-adb3-5081b3858e83</StackId> 86 arn:aws:cloudformation:us-east-1:1234567:stack/TestCreate1/aaaaa 97 arn:aws:cloudformation:us-east-1:1234567:stack/TestDelete2/bbbbb 141 ('member', boto.cloudformation.stack.Stack) 155 ('member', boto.cloudformation.stack.Stack) 167 ('member', boto.cloudformation.stack.StackResource [all...] |
/system/bt/doc/ |
directory_layout.md | 17 * doc - *Documentation* - Stack documentation. 21 * main - *Main stack entrypoint* - Provides HAL for stack access. 22 * osi - *Operating System Interface* - General resource support for stack. 24 * stack - **Deprecated** - The Stack - Push to proper spot in *./profiles* 25 * test - *Test suite* - Stack level validiation and stress test suite. 29 * vnd - *Vendor* - Vendor specific APIs - *to be integrated into rest of stack ?*.
|
/frameworks/base/tools/aapt2/xml/ |
XmlDom.cpp | 24 #include <stack> 33 struct Stack { 35 std::stack<xml::Node*> nodeStack; 57 static void addToStack(Stack* stack, XML_Parser parser, std::unique_ptr<Node> node) { 62 if (!stack->nodeStack.empty()) { 63 stack->nodeStack.top()->addChild(std::move(node)); 65 stack->root = std::move(node); 69 stack->nodeStack.push(thisNode); 75 Stack* stack = reinterpret_cast<Stack*>(XML_GetUserData(parser)) local 91 Stack* stack = reinterpret_cast<Stack*>(XML_GetUserData(parser)); local 104 Stack* stack = reinterpret_cast<Stack*>(XML_GetUserData(parser)); local 126 Stack* stack = reinterpret_cast<Stack*>(XML_GetUserData(parser)); local 135 Stack* stack = reinterpret_cast<Stack*>(XML_GetUserData(parser)); local 160 Stack* stack = reinterpret_cast<Stack*>(XML_GetUserData(parser)); local 169 Stack stack; local [all...] |