Searched refs:stack (Results 1 - 25 of 30) sorted by relevance

12

/glassfish-3.1.2/common/common-util/src/test/java/com/sun/enterprise/util/io/
H A DServerDirsTest.java133 Stack<File> stack = new Stack<File>();
137 stack.push(f);
144 userTopLevelFile = stack.pop();
145 userNextToTopLevelFile = stack.pop();
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DCurrentTransaction.java155 * @param stack Indicates whether the current Control should be stacked.
162 boolean stack ) {
173 // If there is a current Control object, and we have not been asked to stack
175 // Otherwise stack the current Control object behind the new one, which
179 if( stack ) {
223 statics.distributeStart(control,stack);
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/pi/
H A DInterceptorImpl.java798 //Stack stack = (Stack) threadLocalState[NULL_CTX_SLOT];
800 if (stack.empty()) {
804 // return ((Integer) stack.peek() == NULL_CTX);
805 ArrayListStack stack = (ArrayListStack) threadLocalState[NULL_CTX_SLOT];
806 return (stack.peek() == NULL_CTX);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/
H A DWebdavServlet.java634 // The stack always contains the object of the current level
635 Stack<String> stack = new Stack<String>();
636 stack.push(path);
641 while ((!stack.isEmpty()) && (depth >= 0)) {
643 String currentPath = stack.pop();
695 if (stack.isEmpty()) {
697 stack = stackBelow;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/
H A DDigester.java173 * The stack of body text string buffers for surrounding elements.
183 * stack. After the end tag is reached, the matches are popped again.
184 * The depth of is stack is therefore exactly the same as the current
269 * The parameters stack being utilized by CallMethodRule and
295 * The "root" element of the stack (in other words, the last object
323 * The object stack being constructed.
325 protected ArrayStack<Object> stack = new ArrayStack<Object>(); field in class:Digester
388 ArrayStack<String> stack = namespaces.get(prefix);
389 if (stack == null) {
393 return stack
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/logger/
H A DIASLogger.java133 * Examine the call stack and determine the name of the method and the
137 // Get the stack trace.
138 StackTraceElement stack[] = (new Throwable()).getStackTrace();
141 for (int ix=0; ix < stack.length; ix++) {
142 StackTraceElement frame = stack[ix];
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DDescriptor.java124 * Return the stack descriptor for the result of a method
132 * Return the stack descriptor for the arguments to a method
140 * Return the reversed stack descriptor for the arguments to a method
141 * invocation (not including any "this" argument). The top of stack
281 * Return the number of stack words required for a value of the specified
282 * type on the operand stack.
296 * stackSig is a signature for a list of types on the JVM stack with the
297 * last type in the signature intended to be on the top of JVM stack.
301 public static void computeStackTypes(String stackSig, Stack stack) { argument
348 stack
[all...]
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DMethodAnnotater.java162 /* The maximum amount of stack needed by any specific annotation sequence,
163 * less the amount of stack which the annotated instruction is known to
591 // sort in order of decreasing stack depth
646 // there's no field value on the stack yet
727 // size of field value on the stack
1536 // to be on the top of stack
1553 // The value is on top of the stack - the dup in the basic
1558 // The value on top of the stack is one deep. Because the
1561 // operand on top of the stack
1566 // reduce the code fragment's stack requirement
2470 knownTypes(Stack stack, int nWords) argument
2841 AnnotationFragment(Insn i, int stack) argument
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/constraint/
H A DConstraint.java62 * The stack that contains all constraints beside join constraints.
63 * Join constraints are handled by a separate stack.
65 public List stack; field in class:Constraint
68 * The stack that contains outer join constraints. All the elements of this stack
75 * The stack that contains order by constraints. We would like to
76 * separate Order By constraints from the main stack, but they must
86 * Adds a field to the constraint stack.
90 * and adds it to the constraint stack.
94 * added to the constrant stack
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/
H A DSelectQueryPlan.java75 * into one stack.
89 * Pointer to the retrieve descriptor's constraint stack.
90 * NOTE: The retrieve descriptor's stack will be modified
142 * "empid == department.deptid". As the foreign constraint stack is empty,
651 * Asociates every local constraint on the stack with it's original plan
658 List stack = constraint.getConstraints();
660 for (int i = 0; i < stack.size(); i++) {
661 ConstraintNode node = (ConstraintNode) stack.get(i);
748 * constraint stack. Also add the table alias from the subquery
770 constraint.stack
[all...]
H A DSelectStatement.java168 // from clause, the constraint stack has to be processed before we
445 List stack,
451 stack.remove(stack.size() - 1);
452 ConstraintNode node = (ConstraintNode) stack.get(stack.size() - 1);
459 stack.remove(stack.size() - 1);
462 super.processRootConstraint(opNode, stack, whereText);
468 List stack,
444 processRootConstraint(ConstraintOperation opNode, List stack, StringBuffer whereText) argument
466 processIrregularOperation(ConstraintOperation opNode, int opCode, List stack, StringBuffer result) argument
[all...]
H A DStatement.java238 * Processes the constraint stack and adds it to the query.
239 * This means turning the constraint stack into SQL text and
242 * @return Where clause based on the constraint stack.
246 List stack = constraint.getConstraints();
248 while (stack.size() > 0) {
249 ConstraintNode node = (ConstraintNode) stack.get(stack.size() - 1);
257 processRootConstraint((ConstraintOperation) node, stack, whereText);
264 List stack,
270 String constraint = getWhereText(stack);
263 processRootConstraint(ConstraintOperation opNode, List stack, StringBuffer whereText) argument
300 getWhereText(List stack) argument
456 processConstraintOperation(ConstraintOperation opNode, List stack, StringBuffer result) argument
469 processFunctionOrBinaryOperation(int format, int opCode, List stack, StringBuffer result) argument
507 processIrregularOperation(ConstraintOperation opNode, int opCode, List stack, StringBuffer result) argument
685 processConcatOperation(int opCode, List stack, StringBuffer result) argument
714 processMaybeNullOperation(List stack, StringBuffer result) argument
791 processNullOperation(int opCode, List stack, StringBuffer result) argument
824 processInOperation(int opCode, List stack, StringBuffer result) argument
[all...]
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/logging/
H A DLoggerJDK14.java469 * The method analyses the current stack trace, to find the method that
474 // Get the stack trace.
475 StackTraceElement[] stack = (new Throwable()).getStackTrace();
477 for(int ix = 0; ix < stack.length; ix++) {
478 StackTraceElement frame = stack[ix];
492 * that should be ignored when analysing the stack trace to infer the
/yui3/build/datatable-head/
H A Ddatatable-head-debug.js392 stack = [],
399 stack.push([data, -1]);
401 while (stack.length) {
402 entry = stack[stack.length - 1];
413 stack.push([children, -1]);
416 rowSpan = Math.max(rowSpan, stack.length);
427 if (stack.length > 1) {
428 entry = stack[stack
[all...]
/yui3/build/event-custom-complex/
H A Devent-custom-complex-debug.js129 if (self.stack) {
131 if (self.queuable && self.type != self.stack.next.type) {
133 self.stack.queue.push([self, args]);
138 es = self.stack || {
139 // id of the first event in the stack
262 // set up stack to allow the next item to be processed
267 self.stack = null;
336 if (this.stack) {
337 this.stack.stopped = 1;
349 if (this.stack) {
[all...]
/yui3/build/handlebars-compiler/
H A Dhandlebars-compiler-debug.js117 stack = [0],
118 vstack = [null], // semantic value stack
119 lstack = [], // location stack
142 stack.length = stack.length - 2*n;
159 // retreive state number from top of stack
160 state = stack[stack.length-1];
218 state = stack[stack
[all...]
/yui3/build/json-stringify/
H A Djson-stringify-debug.js128 stack = [],
191 for (i = stack.length - 1; i >= 0; --i) {
192 if (stack[i] === value) {
199 // Add the object to the processing stack
200 stack.push(value);
221 // remove the array from the stack
222 stack.pop();
/yui3/build/pjax-base/
H A Dpjax-base-debug.js269 i, len, normalized, segments, segment, stack;
276 stack = [];
282 stack.pop();
284 stack.push(segment);
288 normalized = slash + stack.join(slash);
/yui3/build/querystring-stringify/
H A Dquerystring-stringify-debug.js13 stack = [],
85 for (i = stack.length - 1; i >= 0; --i) {
86 if (stack[i] === obj) {
91 stack.push(obj);
102 stack.pop();
/yui3/build/test/
H A Dtest-debug.js3460 * @property stack
3462 this.stack = cause.stack;
/yui3/build/widget-modality/
H A Dwidget-modality-debug.js182 * A stack of Y.Widget objects representing the current hierarchy of modal widgets presently displayed on the screen
309 * Performs events attaching/detaching, stack shifting and mask repositioning based on the visibility of the widget
315 var stack = WidgetModal.STACK,
322 Y.Array.each(stack, function(modal){
327 // push on top of stack
328 stack.unshift(this);
342 index = Y.Array.indexOf(stack, this);
344 // Remove modal widget from global stack.
345 stack.splice(index, 1);
351 if (stack
[all...]
/yui3/src/datatable/js/
H A Dhead.js390 stack = [],
397 stack.push([data, -1]);
399 while (stack.length) {
400 entry = stack[stack.length - 1];
411 stack.push([children, -1]);
414 rowSpan = Math.max(rowSpan, stack.length);
425 if (stack.length > 1) {
426 entry = stack[stack
[all...]
/yui3/src/event-custom/js/
H A Devent-facade.js127 if (self.stack) {
129 if (self.queuable && self.type != self.stack.next.type) {
131 self.stack.queue.push([self, args]);
136 es = self.stack || {
137 // id of the first event in the stack
260 // set up stack to allow the next item to be processed
265 self.stack = null;
334 if (this.stack) {
335 this.stack.stopped = 1;
347 if (this.stack) {
[all...]
/yui3/src/handlebars/js/
H A Dhandlebars-compiler-parser.js104 stack = [0],
105 vstack = [null], // semantic value stack
106 lstack = [], // location stack
129 stack.length = stack.length - 2*n;
146 // retreive state number from top of stack
147 state = stack[stack.length-1];
205 state = stack[stack
[all...]
/yui3/src/json/js/
H A Dstringify.js126 stack = [],
189 for (i = stack.length - 1; i >= 0; --i) {
190 if (stack[i] === value) {
197 // Add the object to the processing stack
198 stack.push(value);
219 // remove the array from the stack
220 stack.pop();

Completed in 161 milliseconds

12