Searched refs:Stack (Results 1 - 25 of 67) sorted by relevance

123

/external/valgrind/main/memcheck/tests/
H A Ddeep_templates.cpp11 class Stack class
14 Stack(int = 10) { size=5; top=6; stackPtr=(T*)6; }; function in class:Stack
15 ~Stack() { }
27 typedef Stack<int,char> Foo;
28 typedef Stack<Foo,Foo> Foo2;
29 typedef Stack<Foo2,Foo2> Foo3;
30 typedef Stack<Foo3,Foo3> Foo4;
31 typedef Stack<Foo4,Foo4> Foo5;
32 typedef Stack<Foo5,Foo5> Foo6;
33 typedef Stack<Foo
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DEmptyStackExceptionTest.java21 import java.util.Stack;
26 Stack s;
52 s = new Stack();
H A DStackTest.java21 import java.util.Stack;
25 Stack s;
28 * @tests java.util.Stack#Stack()
31 // Test for method java.util.Stack()
32 assertEquals("Stack creation failed", 0, s.size());
36 * @tests java.util.Stack#empty()
39 // Test for method boolean java.util.Stack.empty()
42 assertTrue("Stack should not be empty but answers empty", !s.empty());
44 assertTrue("Stack shoul
[all...]
/external/easymock/src/org/easymock/internal/
H A DLastControl.java21 import java.util.Stack;
31 private static final ThreadLocal<Stack<Invocation>> threadToCurrentInvocation = new ThreadLocal<Stack<Invocation>>();
33 private static final ThreadLocal<Stack<IArgumentMatcher>> threadToArgumentMatcherStack = new ThreadLocal<Stack<IArgumentMatcher>>();
48 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
50 stack = new Stack<IArgumentMatcher>();
57 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
66 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
72 Stack<IArgumentMatche
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DNamespaceMappings.java73 * Each entry (prefix) in this hashtable points to a Stack of URIs
74 * This table maps a prefix (String) to a Stack of NamespaceNodes.
95 private Stack m_nodeStack = new Stack();
119 Stack stack;
141 final Stack stack = getPrefixStack(prefix);
152 final Stack stack = (Stack) m_namespaces.get(prefix);
210 Stack stack;
233 Stack stac
374 private class Stack { class in class:NamespaceMappings
392 public Stack() method in class:NamespaceMappings.Stack
[all...]
/external/clang/lib/Sema/
H A DSemaAttr.cpp45 /// Stack - Entries in the #pragma pack stack, consisting of saved
47 stack_ty Stack; member in class:__anon2927::PragmaPackStack
59 Stack.push_back(PSE);
74 if (Stack.empty()) {
86 Alignment = Stack.back().Alignment;
87 Stack.pop_back();
94 for (unsigned i = Stack.size(); i != 0; ) {
96 if (Stack[i].Name == Name) {
98 Alignment = Stack[i].Alignment;
99 Stack
347 VisStack *Stack = static_cast<VisStack*>(S.VisContext); local
400 VisStack *Stack = static_cast<VisStack*>(VisContext); local
[all...]
/external/valgrind/main/coregrind/
H A Dm_stacks.c3 /*--- Stack management. m_stacks.c ---*/
90 } Stack; typedef in typeref:struct:_Stack
92 static Stack *stacks;
100 static Stack *current_stack;
105 static void move_Stack_one_step_forward ( Stack* st )
107 Stack *st0, *st1, *st2;
122 Stack* tmp;
145 static Stack* find_stack_by_addr(Addr sp)
150 Stack *i = stacks;
180 Stack *
[all...]
/external/antlr/src/org/antlr/runtime/debug/
H A DParseTreeBuilder.java34 import java.util.Stack;
44 Stack callStack = new Stack();
H A DProfiler.java130 protected Stack<String> currentGrammarFileName = new Stack();
131 protected Stack<String> currentRuleName = new Stack();
132 protected Stack<Integer> currentLine = new Stack();
133 protected Stack<Integer> currentPos = new Stack();
142 protected Stack<DecisionEvent> decisionStack = new Stack<DecisionEven
[all...]
/external/proguard/src/proguard/evaluation/
H A DInvocationUnit.java61 Stack stack);
H A DStack.java31 public class Stack class
42 * Creates a new Stack with a given maximum size, accounting for the double
45 public Stack(int maxSize) method in class:Stack
52 * Creates a Stack that is a copy of the given Stack.
54 public Stack(Stack stack) method in class:Stack
75 * Resets this Stack, so that it can be reused.
94 * Copies the values of the given Stack into this Stack
[all...]
H A DTracedStack.java26 * This Stack saves additional information with stack elements, to keep track
36 public class TracedStack extends Stack
39 private Stack producerStack;
49 producerStack = new Stack(maxSize);
60 producerStack = new Stack(tracedStack.producerStack);
122 // Implementations for Stack.
/external/proguard/src/proguard/classfile/util/
H A DDescriptorClassEnumeration.java25 import java.util.Stack;
41 private Stack accumulatedClassNames;
105 accumulatedClassNames = new Stack();
/external/apache-harmony/support/src/test/java/tests/util/
H A DCallVerificationStack.java20 import java.util.Stack;
26 public class CallVerificationStack extends Stack<Object> {
46 private final Stack<StackTraceElement> callStack = new Stack<StackTraceElement>();
/external/giflib/
H A Dgif_lib_private.h51 GifByteType Stack[LZ_MAX_CODE]; /* Decoded pixels are stacked here. */ member in struct:GifFilePrivateType
/external/clang/lib/Serialization/
H A DModuleManager.cpp135 SmallVector<Module *, 4> Stack; local
136 Stack.push_back(CurrentModule);
138 while (!Stack.empty()) {
139 Module *NextModule = Stack.back();
140 Stack.pop_back();
149 Stack.push_back(*M);
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java23 import java.util.Stack;
221 * @param stack non-null reference to a Stack.
226 private boolean stackContains(Stack stack, String url)
1166 private Stack m_stylesheets = new Stack();
1253 private Stack m_processors = new Stack();
1307 private Stack m_elems = new Stack();
1369 Stack m_baseIdentifier
[all...]
/external/clang/lib/AST/
H A DDumpXML.cpp177 SmallVector<Node, 16> Stack; member in struct:__anon2735::XMLDumper
189 if (!Stack.empty()) {
190 assert(Stack.back().isDoneWithAttrs());
191 if (Stack.back().State == NS_LazyChildren) {
192 Stack.back().State = NS_Children;
198 Stack.push_back(Node(name));
204 assert(!Stack.empty() && !Stack.back().isDoneWithAttrs());
210 assert(!Stack.empty() && !Stack
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp197 new BuiltinBug("Stack address stored into global variable",
198 "Stack address was saved into a global variable. "
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp34 SmallVector<WorkListUnit,20> Stack; member in class:__anon3120::DFS
37 return !Stack.empty();
41 Stack.push_back(U);
45 assert (!Stack.empty());
46 const WorkListUnit& U = Stack.back();
47 Stack.pop_back(); // This technically "invalidates" U, but we are fine.
53 I = Stack.begin(), E = Stack.end(); I != E; ++I) {
100 SmallVector<WorkListUnit,20> Stack; member in class:__anon3121::BFSBlockDFSContents
103 return !Queue.empty() || !Stack
[all...]
/external/llvm/test/Scripts/
H A Dcoff-dump.py236 Stack = [] variable
282 Stack [0:0] = [Input.tell()]
287 assert(len(Stack) > 0)
288 Input.seek(Stack[0])
289 del Stack[0]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathContext.java24 import java.util.Stack;
67 * Stack of cached "reusable" DTMs for Result Tree Fragments.
71 * %REVIEW% I'm using a Vector rather than Stack so we can reuse
668 private Stack m_contextNodeLists = new Stack();
670 public Stack getContextNodeListsStack() { return m_contextNodeLists; }
671 public void setContextNodeListsStack(Stack s) { m_contextNodeLists = s; }
969 * Stack of AxesIterators.
971 private Stack m_axesIteratorStack = new Stack();
[all...]
/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp1 //===-- X86FloatingPoint.cpp - Floating point Reg -> Stack converter ------===//
59 memset(Stack, 0, sizeof(Stack));
135 unsigned Stack[8]; // FP<n> Registers in each stack slot... member in struct:__anon6963::FPS
142 // For each live FP<n> register, point to its Stack[] entry.
176 dbgs() << "Stack contents:";
178 dbgs() << " FP" << Stack[i];
179 assert(RegMap[Stack[i]] == i && "Stack[] doesn't match RegMap[]!");
196 return Slot < StackTop && Stack[Slo
[all...]
/external/bison/data/
H A Dyacc.c29 # Stack parameters.
410 # define YYSTACK_RELOCATE(Stack) \
414 YYCOPY (&yyptr->Stack, Stack, yysize); \
415 Stack = &yyptr->Stack; \
416 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
677 YYFPRINTF (stderr, "Stack now");
1157 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
/external/libpcap/
H A Dgrammar.c592 # define YYSTACK_RELOCATE(Stack) \
596 YYCOPY (&yyptr->Stack, Stack, yysize); \
597 Stack = &yyptr->Stack; \
598 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
1256 YYFPRINTF (stderr, "Stack now");
1682 YYDPRINTF ((stderr, "Stack size increased to %lu\n",

Completed in 2109 milliseconds

123