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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DParentNode.java83 protected ChildNode firstChild = null; field in class:ParentNode
139 newnode.firstChild = null;
146 for (ChildNode child = firstChild;
182 for (ChildNode child = firstChild;
200 return firstChild != null;
231 return firstChild;
247 return firstChild != null ? firstChild.previousSibling : null;
252 if (firstChild != null) {
253 firstChild
[all...]
H A DEntityReferenceImpl.java211 if (firstChild != null){
212 if (firstChild.getNodeType() == Node.ENTITY_REFERENCE_NODE){
213 value = ((EntityReferenceImpl)firstChild).getEntityRefValue();
215 else if (firstChild.getNodeType() == Node.TEXT_NODE){
216 value = firstChild.getNodeValue();
223 if (firstChild.nextSibling == null){
228 ChildNode next = firstChild.nextSibling;
302 for (ChildNode mykid = firstChild;
H A DAttrImpl.java397 ChildNode firstChild = (ChildNode) value;
398 firstChild.previousSibling = null;
399 firstChild.isFirstChild(false);
400 firstChild.ownerNode = ownerDocument;
455 ChildNode firstChild = ((ChildNode) value);
458 if (firstChild.getNodeType() == Node.ENTITY_REFERENCE_NODE){
459 data = ((EntityReferenceImpl)firstChild).getEntityRefValue();
462 data = firstChild.getNodeValue();
465 ChildNode node = firstChild.nextSibling;
545 ChildNode firstChild
[all...]
H A DDocumentFragmentImpl.java123 for (kid = firstChild; kid != null; kid = next) {
H A DTextImpl.java494 Node firstChild = next.getFirstChild();
498 if (firstChild == null) {
505 while (firstChild != null) {
506 short lType = firstChild.getNodeType();
512 if (!canModifyNext(firstChild)) {
529 firstChild = firstChild.getNextSibling();
H A DTreeWalkerImpl.java130 public Node firstChild() { method in class:TreeWalkerImpl
H A DElementNSImpl.java206 firstChild = null;
H A DElementImpl.java342 for (kid = firstChild; kid != null; kid = next) {
H A DDeferredDocumentImpl.java1664 firstChild = first;
1718 a.value = firstNode; // firstChild = firstNode
1768 p.firstChild = firstNode;
H A DCoreDocumentImpl.java360 for (ChildNode kid = firstChild; kid != null;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuBorder.java91 final Component firstChild = menu.getComponent(0);
92 if (firstChild instanceof Box.Filler) return getEmptyInsets();
93 if (firstChild instanceof JScrollPane) return getEmptyInsets();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDChoicePattern.java55 for( DPattern p=firstChild(); p!=null; p=p.next )
H A DDGroupPattern.java53 for( DPattern p=firstChild(); p!=null; p=p.next )
H A DDInterleavePattern.java53 for( DPattern p=firstChild(); p!=null; p=p.next )
H A DDContainerPattern.java60 public DPattern firstChild() { method in class:DContainerPattern
70 for( DPattern p=firstChild(); p!=null; p=p.next)
H A DDPatternWalker.java65 for( DPattern c=p.firstChild(); c!=null; c=c.next )
H A DPatternParseable.java120 for( DPattern c=p.firstChild(); c!=null; c=c.next )
151 for( DPattern c=p.firstChild(); c!=null; c=c.next )
158 for( DPattern c=p.firstChild(); c!=null; c=c.next )
/openjdk7/jaxp/src/org/w3c/dom/traversal/
H A DTreeWalker.java154 public Node firstChild(); method in interface:TreeWalker
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DSimpleContentModel.java143 * @param firstChild qualified name of the first child
147 public SimpleContentModel(short operator, QName firstChild, QName secondChild) { argument
154 fFirstChild.setValues(firstChild);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBase.java726 int firstChild = _firstch(index);
728 if (DTM.NULL == firstChild)
730 else if (NOTPROCESSED == firstChild)
733 ps.println("First child: " + firstChild);
883 int firstChild = _firstch(identity);
885 return firstChild != DTM.NULL;
973 int firstChild = _firstch(identity);
975 return makeNodeHandle(firstChild);
989 int firstChild, eType;
991 for (firstChild
[all...]
H A DDTMDocumentImpl.java1045 int firstChild = kid | m_docHandle;
1047 return firstChild;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DSCDBasedBindingSet.java84 private Target firstChild; field in class:SCDBasedBindingSet.Target
107 this.nextSibling = parent.firstChild;
108 parent.firstChild = this;
147 if(firstChild!=null)
148 firstChild.applyAll(childNodes);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DEnvelopeImpl.java106 SOAPElement firstChild = null;
110 firstChild = (SOAPElement) eachChild.next();
111 if (firstChild.getElementName().equals(headerName)) {
114 } else if (!firstChild.getElementName().equals(bodyName)) {
121 insertBefore(header, firstChild);
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java263 private IIOMetadataNode firstChild = null; field in class:IIOMetadataNode
391 return firstChild;
499 if (this.firstChild == refChildNode) {
500 this.firstChild = newChildNode;
546 if (firstChild == oldChildNode) {
547 firstChild = newChildNode;
589 if (this.firstChild == oldChildNode) {
590 this.firstChild = next;
654 for (IIOMetadataNode child = firstChild;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM.java534 int firstChild = _firstch(identity);
536 if (DTM.NULL != firstChild)
542 identity = firstChild;
1277 int firstChild = _firstch(identity);
1279 if (DTM.NULL != firstChild)
1285 identity = firstChild;

Completed in 3590 milliseconds