/openjdk7/jdk/src/share/classes/javax/swing/event/ |
H A D | AncestorEvent.java | 33 * ancestor in the component hierarchy. 48 * An ancestor-component was added to the hierarchy of 53 * An ancestor-component was removed from the hierarchy 57 /** An ancestor-component changed its position on the screen. */ 60 Container ancestor; field in class:AncestorEvent 65 * in an ancestor-component's display-status. 71 * @param ancestor a Container object specifying the ancestor-component 73 * @param ancestorParent a Container object specifying the ancestor's parent 75 public AncestorEvent(JComponent source, int id, Container ancestor, Containe argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | AncestorNotifier.java | 75 protected void fireAncestorAdded(JComponent source, int id, Container ancestor, Container ancestorParent) { argument 84 new AncestorEvent(source, id, ancestor, ancestorParent); 97 protected void fireAncestorRemoved(JComponent source, int id, Container ancestor, Container ancestorParent) { argument 106 new AncestorEvent(source, id, ancestor, ancestorParent); 118 protected void fireAncestorMoved(JComponent source, int id, Container ancestor, Container ancestorParent) { argument 127 new AncestorEvent(source, id, ancestor, ancestorParent); 137 void addListeners(Component ancestor, boolean addToFirst) { argument 141 for (a = ancestor; 144 if (addToFirst || a != ancestor) { 163 void removeListeners(Component ancestor) { argument [all...] |
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/ |
H A D | ServerCompilerScheduler.java | 339 int ancestor; field in class:ServerCompilerScheduler.BlockIntermediate 392 bi.ancestor = -1; 497 int ancestor = block.ancestor; 498 assert ancestor != -1; 500 BlockIntermediate ancestor_block = blocks.get(ancestor); 501 if (ancestor_block.ancestor != -1) { 502 compress(ancestor, blocks); 513 block.ancestor = ancestor_block.ancestor; [all...] |
/openjdk7/jdk/src/share/classes/sun/rmi/transport/ |
H A D | Target.java | 131 ClassLoader ancestor) 133 if (ancestor == null) { 142 if (parent == ancestor) { 130 checkLoaderAncestry(ClassLoader child, ClassLoader ancestor) argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/ |
H A D | XSComplexTypeDecl.java | 211 public boolean derivedFromType(XSTypeDefinition ancestor, short derivationMethod) { argument 212 // ancestor is null, retur false 213 if (ancestor == null) 215 // ancestor is anyType, return true 216 if (ancestor == SchemaGrammar.fAnyType) 218 // recursively get base, and compare it with ancestor 220 while (type != ancestor && // compare with ancestor 226 return type == ancestor; 230 // ancestor i [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/tree/ |
H A D | DefaultMutableTreeNode.java | 157 * <code>newChild</code> must not be null and must not be an ancestor of 167 * ancestor of this node 178 throw new IllegalArgumentException("new child is an ancestor"); 419 * Returns true if <code>anotherNode</code> is an ancestor of this node 420 * -- if it is this node, this node's parent, or an ancestor of this 421 * node's parent. (Note that a node is considered an ancestor of itself.) 428 * @param anotherNode node to test as an ancestor of this node 436 TreeNode ancestor = this; 439 if (ancestor == anotherNode) { 442 } while((ancestor 835 pathFromAncestorEnumeration(TreeNode ancestor) argument 1459 PathBetweenNodesEnumeration(TreeNode ancestor, TreeNode descendant) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/ |
H A D | XSSimpleTypeDecl.java | 2388 // 1. If every member of {member type definitions} is derived from a common ancestor other than the simple ur-type, then {value} is the same as that ancestor's ordered facet. 2402 // and whether they have the same ancestor as the first one 2556 public boolean derivedFromType(XSTypeDefinition ancestor, short derivation) { argument 2559 // ancestor is null, return false 2560 if (ancestor == null) { 2563 // extract the actual XSTypeDefinition if the given ancestor is a delegate. 2564 while (ancestor instanceof XSSimpleTypeDelegate) { 2565 ancestor = ((XSSimpleTypeDelegate) ancestor) [all...] |
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | awt_MToolkit.c | 641 /* found peer attached to ancestor of given 1509 isAncestor(Window ancestor, Window child) { argument 1514 while (child != ancestor) { 1523 if (child != ancestor) { 1531 if (parent == ancestor) { retvalue = True; break; }
|