Searched refs:child (Results 1 - 25 of 300) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDUnaryPattern.java52 private DPattern child; field in class:DUnaryPattern
55 return child;
58 public void setChild(DPattern child) { argument
59 this.child = child;
H A DDContainerPattern.java94 void add( DPattern child ) {
96 child.prev = child.next = null;
97 head = tail = child;
99 child.prev = tail;
100 tail.next = child;
101 child.next = null;
102 tail = child;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DOneOrMore.java37 private final Expression child; field in class:OneOrMore
39 public OneOrMore(Expression child) { argument
40 this.child = child;
44 return child.lastSet();
48 return child.isNullable();
52 child.buildDAG(ElementSets.union(incoming,child.lastSet()));
56 return child.toString()+'+';
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbeddingContainer.java49 void add(long child) { argument
50 if (checkXEmbed(child)) {
51 Component proxy = createChildProxy(child);
54 children.put(Long.valueOf(child), proxy.getPeer());
59 Component createChildProxy(long child) { argument
60 return new XEmbedChildProxy(this, child);
62 void notifyChildEmbedded(long child) { argument
63 sendMessage(child, XEMBED_EMBEDDED_NOTIFY, embedder.getWindow(), XEMBED_VERSION, 0);
66 void childResized(Component child) { argument
69 boolean checkXEmbed(long child) { argument
83 detachChild(long child) argument
101 focusGained(long child) argument
104 focusLost(long child) argument
108 getChild(long child) argument
130 forwardKeyEvent(long child, KeyEvent e) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DContainerEvent.java90 Component child; field in class:ContainerEvent
108 * @param child the component that was added or removed
114 public ContainerEvent(Component source, int id, Component child) { argument
116 this.child = child;
136 return child;
157 return typeStr + ",child="+child.getName();
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DNodeChangeEvent.java32 * a child of that node has been added or removed.<p>
52 private Preferences child; field in class:NodeChangeEvent
58 * @param child The node that was added or removed.
60 public NodeChangeEvent(Preferences parent, Preferences child) { argument
62 this.child = child;
68 * @return The parent Preferences node whose child was added or removed
80 return child;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DDistributedPropertySet.java94 for (PropertySet child : satellites) {
95 if (satelliteClass.isInstance(child)) {
96 return satelliteClass.cast(child);
99 if (DistributedPropertySet.class.isInstance(child)) {
100 T satellite = DistributedPropertySet.class.cast(child).getSatellite(satelliteClass);
113 for (PropertySet child : satellites) {
114 if(child.supports(key))
115 return child.get(key);
125 for (PropertySet child : satellites) {
126 if(child
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeGroupNode.java43 public void addChild(SimpleTreeNode child) { argument
44 children.add(child);
55 public int getIndexOfChild(SimpleTreeNode child) { argument
56 return children.indexOf(child);
H A DOopTreeNodeAdapter.java90 public int getIndexOfChild(SimpleTreeNode child) { argument
91 if (child instanceof RevPtrsTreeNodeAdapter) {
95 FieldIdentifier id = ((FieldTreeNodeAdapter) child).getID();
144 private SimpleTreeNode child; field in class:OopTreeNodeAdapter.Fetcher
151 return child;
161 child = new OopTreeNodeAdapter(field.getValue(getObj()), field.getID(), getTreeTableMode());
163 child = new BadOopTreeNodeAdapter(field.getValueAsOopHandle(getObj()), field.getID(), getTreeTableMode());
165 child = new BadOopTreeNodeAdapter(field.getValueAsOopHandle(getObj()), field.getID(), getTreeTableMode());
173 child = new LongTreeNodeAdapter(field.getValue(getObj()) & 0xFF, field.getID(), getTreeTableMode());
180 child
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DFlattenIterator.java41 private Iterator<? extends T> child = null; field in class:FlattenIterator
69 if(child!=null && child.hasNext()) {
70 next = child.next();
73 // child is empty
75 child = parent.next().values().iterator();
/openjdk7/jdk/test/java/lang/InheritableThreadLocal/
H A DBasic.java60 Thread child = null;
62 child = new MyThread();
63 child.start();
73 // Wait for child (if any)
74 if (child != null) {
76 child.join();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java151 /** Finds and returns the first child element node. */
155 Node child = parent.getFirstChild();
156 while (child != null) {
157 if (child.getNodeType() == Node.ELEMENT_NODE) {
158 return (Element)child;
160 child = child.getNextSibling();
168 /** Finds and returns the first visible child element node. */
172 Node child = parent.getFirstChild();
173 while (child !
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DNameNode.java43 * that is contained in one zone, but that actually belongs to a child zone.
55 private Hashtable children = null; // child nodes
105 * Returns the child node given the hash key (the down-cased label)
107 * child.
141 NameNode child = null;
145 child = (NameNode) node.children.get(key);
147 if (child == null) {
148 child = newNameNode(label);
149 child.depth = node.depth + 1;
150 node.children.put(key, child);
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWContainerPeer.java47 // List of child peers sorted by z-order from bottom-most
56 void addChildPeer(LWComponentPeer child) { argument
58 addChildPeer(child, childPeers.size());
62 void addChildPeer(LWComponentPeer child, int index) { argument
64 childPeers.add(index, child);
69 void removeChildPeer(LWComponentPeer child) { argument
71 childPeers.remove(child);
104 // child windows occurs. That's why no-op
110 // child windows occurs. That's why no-op
144 * Removes bounds of children above specific child fro
[all...]
/openjdk7/jdk/test/sun/text/resources/Format/
H A DBug4685470.java62 private boolean Test(String parent, String child, String patterninfo) argument
66 if( ! contains(parent, child)){
68 System.out.println("Which should contain the day of the week: " + child);
77 private boolean contains(String parent, String child) argument
81 if(parent.length() < child.length()) result = false;
83 for ( int i = 0; i < parent.length() - child.length(); i++){
84 result = parent.regionMatches(i, child, 0, child.length());
H A DBug4442855.java62 private boolean Test(String parent, String child, String info){ argument
65 if(!parent.equals(child)){
67 System.out.println("Which should be: " + child );
/openjdk7/jdk/src/share/instrument/
H A DFileSystemSupport.h65 * Resolve the child pathname string against the parent.
67 char* resolve(const char* parent, const char* child);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DUtilities.java53 for (Component child : comp.getComponents()) {
55 setTransparency((JComponent)child, transparent);
56 } else if (child instanceof JComponent) {
57 setTabbedPaneTransparency((JComponent)child, transparent);
64 for (Component child : comp.getComponents()) {
65 if (child instanceof JPanel ||
66 child instanceof JSplitPane ||
67 child instanceof JScrollPane ||
68 child instanceof JViewport ||
69 child instanceo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibOid.java168 // getChild() will raise an exception if no child is found.
170 final SnmpMibNode child= getChild(oid[depth]);
174 // if child==null, then we're dealing with a variable or
181 if (child == null)
184 child.findHandlingNode(varbind,oid,depth+1,handlers);
230 final SnmpMibNode child = getChild(index);
232 if (child == null) {
241 result = child.findNextHandlingNode(varbind,oid,pos+1,
280 // Now query our child.
332 SnmpMibOid child
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAttributeGroupTraverser.java83 Element child = DOMUtil.getFirstChildElement(elmNode);
84 if (child != null) {
85 String childName = DOMUtil.getLocalName(child);
87 traverseAnnotationDecl(child, attrValues, false, schemaDoc);
88 child = DOMUtil.getNextSiblingElement(child);
90 String text = DOMUtil.getSyntheticAnnotation(child);
92 traverseSyntheticAnnotation(child, text, attrValues, false, schemaDoc);
96 if (child != null) {
97 Object[] args = new Object [] {refAttr.rawname, "(annotation?)", DOMUtil.getLocalName(child)};
[all...]
H A DXSDAbstractParticleTraverser.java70 Element child = DOMUtil.getFirstChildElement(allDecl);
73 if (child !=null && DOMUtil.getLocalName(child).equals(SchemaSymbols.ELT_ANNOTATION)) {
74 annotation = traverseAnnotationDecl(child, attrValues, false, schemaDoc);
75 child = DOMUtil.getNextSiblingElement(child);
87 for (; child != null; child = DOMUtil.getNextSiblingElement(child)) {
90 childName = DOMUtil.getLocalName(child);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStructureLoader.java55 * attributes, child elements, or child text.
157 Object child;
161 child = context.getInnerPeer();
163 if(child != null && beanInfo.jaxbType!=child.getClass())
164 child = null; // unexpected type.
166 if(child != null)
167 beanInfo.reset(child,context);
169 if(child
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DTextSerializer.java252 Node child;
283 child = elem.getFirstChild();
284 while ( child != null ) {
285 serializeNode( child );
286 child = child.getNextSibling();
346 Node child;
351 child = node.getFirstChild();
352 while ( child != null ) {
353 serializeNode( child );
[all...]
/openjdk7/jdk/test/java/lang/ClassLoader/
H A DGetPackage.java34 TestClassLoader child = new TestClassLoader(parent);
35 // child define a package first
36 child.defineEmptyPackage("foo");
39 if (!child.testPackageView("foo"))
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_TopLevel.h38 extern Widget getShellWidget(Widget child);
39 extern Boolean isFocusableComponentTopLevelByWidget(JNIEnv * env, Widget child);

Completed in 150 milliseconds

1234567891011>>