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.
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.
125 * Pushes a boolean onto the top of this stack.
135 * Pushes a char onto the top of this stack.
145 * Pushes a double onto the top of this stack.
155 * Pushes a float onto the top of this stack.
165 * Pushes an int onto the top of this stack.
175 * Pushes a long onto the top of this stack.
185 * Pushes a short onto the top of this stack.