Home | History | Annotate | Download | only in util

Lines Matching refs:push

86         this.callStack.push(eles[i]);
117 public Object push(Object o) {
119 return super.push(o);
125 * @param val the value to push
127 public void push(boolean val) {
128 this.push(new BaseTypeWrapper(val));
134 * @param val the value to push
136 public void push(char val) {
137 this.push(new BaseTypeWrapper(val));
143 * @param val the value to push
145 public void push(double val) {
146 this.push(new BaseTypeWrapper(val));
152 * @param val the value to push
154 public void push(float val) {
155 this.push(new BaseTypeWrapper(val));
161 * @param val the value to push
163 public void push(int val) {
164 this.push(new BaseTypeWrapper(val));
170 * @param val the value to push
172 public void push(long val) {
173 this.push(new BaseTypeWrapper(val));
179 * @param val the value to push
181 public void push(short val) {
182 this.push(new BaseTypeWrapper(val));