Searched defs:depth (Results 1 - 7 of 7) sorted by relevance

/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/
H A DNodeCreateRule.java169 protected int depth = 0; field in class:NodeCreateRule.NodeBuilder
229 if (depth == 0) {
237 depth--;
303 depth++;
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/
H A DJSONUtil.java65 * <li>{@link #javaToJSON(Object obj, int depth)}</li></ul>
85 * to given depth. If -1 (or lower) is supplied for depth, it will
86 * walk upto a default depth of 10 levels of the given Object. If 0
96 public static String javaToJSON(Object obj, int depth) { argument
97 if (depth == 0) {
100 } else if (depth == -1) {
102 depth = 10;
179 if (depth == 1) {
184 builder.append(javaToJSON(element, depth
[all...]
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DMethodAnnotater.java591 // sort in order of decreasing stack depth
1451 // The note list should be sorted in order of decreasing arg depth
1567 // the amount that minimizeStack reduced the stack depth,
1576 int depth = state.argDepth;
1581 int regnums[] = new int[depth];
1585 while (depth > 0) {
1589 depth -= elemSize;
1601 affirm((depth >= 0),
2351 // keep going to find the real depositer at a greater depth
2373 * depth
2824 StackState(int depth, String stackSig, Insn i) argument
[all...]
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Ddeflate.h196 uch depth[2*L_CODES+1]; member in struct:internal_state
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/
H A DDOMStreamReader.java121 * Depth of the current element. The first element gets depth==0.
124 private int depth = 0; field in class:DOMStreamReader
268 depth=0;
329 Scope scope = scopes[depth];
352 if(scopes.length==depth) {
357 Scope scope = scopes[depth];
359 scope = scopes[depth] = new Scope(scopes[depth-1]);
517 return scopes[depth];
558 String nsUri = scopes[depth]
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/
H A DWebdavServlet.java177 * Default depth is infite.
488 // Propfind depth
489 int depth = INFINITY;
496 depth = INFINITY;
499 depth = 0;
501 depth = 1;
503 depth = INFINITY;
630 if (depth == 0) {
641 while ((!stack.isEmpty()) && (depth >= 0)) {
653 if ((object instanceof DirContext) && (depth >
2717 int depth = 0; field in class:WebdavServlet.LockInfo
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DRequest.java385 * The current application dispatch depth.
389 * The maximum allowed application dispatch depth.
1797 * Static setter method for the maximum dispatch depth
1799 public static void setMaxDispatchDepth(int depth) { argument
1800 maxDispatchDepth = depth;
1808 * Increment the depth of application dispatch
1815 * Decrement the depth of application dispatch

Completed in 262 milliseconds