Home | History | Annotate | Download | only in util

Lines Matching refs:push

87         this.callStack.push(eles[i]);
119 public Object push(Object o) {
121 return super.push(o);
128 * the value to push
130 public void push(boolean val) {
131 this.push(new BaseTypeWrapper(val));
138 * the value to push
140 public void push(char val) {
141 this.push(new BaseTypeWrapper(val));
148 * the value to push
150 public void push(double val) {
151 this.push(new BaseTypeWrapper(val));
158 * the value to push
160 public void push(float val) {
161 this.push(new BaseTypeWrapper(val));
168 * the value to push
170 public void push(int val) {
171 this.push(new BaseTypeWrapper(val));
178 * the value to push
180 public void push(long val) {
181 this.push(new BaseTypeWrapper(val));
188 * the value to push
190 public void push(short val) {
191 this.push(new BaseTypeWrapper(val));