Searched refs:subtree (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DRFC822Name.java232 * Return subtree depth of this name for purposes of determining
239 String subtree=name;
243 int atNdx = subtree.lastIndexOf('@');
246 subtree=subtree.substring(atNdx+1);
250 for (; subtree.lastIndexOf('.') >= 0; i++) {
251 subtree=subtree.substring(0,subtree.lastIndexOf('.'));
H A DDNSName.java169 * <li>NAME_NARROWS = 1: input name narrows name (is lower in the naming subtree)
170 * <li>NAME_WIDENS = 2: input name widens name (is higher in the naming subtree)
227 * Return subtree depth of this name for purposes of determining
235 String subtree=name;
239 for (; subtree.lastIndexOf('.') >= 0; i++) {
240 subtree=subtree.substring(0,subtree.lastIndexOf('.'));
H A DNameConstraintsExtension.java97 GeneralSubtree subtree = excluded.get(i);
98 if (subtree.getMinimum() != 0)
100 if (subtree.getMaximum() != -1)
107 GeneralSubtree subtree = permitted.get(i);
108 if (subtree.getMinimum() != 0)
110 if (subtree.getMaximum() != -1)
514 // if name matches or narrows any excluded subtree,
545 // and Name does not match or narrow some permitted subtree,
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java50 * each node acting as the root for its own subtree.
53 * subtree in various orders or for following the path between two nodes.
354 * Removes the subtree rooted at this node from the tree, giving this
752 * Creates and returns an enumeration that traverses the subtree rooted at
767 * Creates and returns an enumeration that traverses the subtree rooted at
784 * Creates and returns an enumeration that traverses the subtree rooted at
799 * Creates and returns an enumeration that traverses the subtree rooted at
1096 * @return the first leaf in the subtree rooted at this node
1116 * @return the last leaf in the subtree rooted at this node
1335 protected Enumeration<TreeNode> subtree; field in class:DefaultMutableTreeNode.PostorderEnumeration
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp3285 // Constants in match rule subtree with specified type
3393 // Build string representation of subtree
3395 char *iop, *subtree; local
3397 // Build string representation of subtree
3405 subtree = (char *)malloc(len);
3406 sprintf(subtree,"_%s_%s_%s", _opType, lstr, rstr);
3407 // Hash the subtree string in _internalOps; if a name exists, use it
3408 iop = (char *)_AD._internalOps[subtree];
3411 iop = subtree;
3412 _AD._internalOps.Insert(subtree, io
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c1233 BOOL subtree = (watchSubTree == JNI_TRUE) ? TRUE : FALSE; local
1239 subtree,

Completed in 69 milliseconds