Home | History | Annotate | Download | only in util

Lines Matching refs:Stack

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.
123 * Pushes a boolean onto the top of this stack.
132 * Pushes a char onto the top of this stack.
141 * Pushes a double onto the top of this stack.
150 * Pushes a float onto the top of this stack.
159 * Pushes an int onto the top of this stack.
168 * Pushes a long onto the top of this stack.
177 * Pushes a short onto the top of this stack.