Searched defs:getNodeType (Results 1 - 25 of 34) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DCDATASectionImpl.java80 public short getNodeType() { method in class:CDATASectionImpl
H A DCommentImpl.java62 public short getNodeType() { method in class:CommentImpl
H A DDocumentFragmentImpl.java99 public short getNodeType() { method in class:DocumentFragmentImpl
131 if ( kid.getNodeType() == Node.TEXT_NODE )
134 if ( next!=null && next.getNodeType() == Node.TEXT_NODE )
H A DElementDefinitionImpl.java75 public short getNodeType() { method in class:ElementDefinitionImpl
H A DProcessingInstructionImpl.java73 public short getNodeType() { method in class:ProcessingInstructionImpl
H A DEntityReferenceImpl.java132 public short getNodeType() { method in class:EntityReferenceImpl
212 if (firstChild.getNodeType() == Node.ENTITY_REFERENCE_NODE){
215 else if (firstChild.getNodeType() == Node.TEXT_NODE){
231 if (next.getNodeType() == Node.ENTITY_REFERENCE_NODE){
234 else if (next.getNodeType() == Node.TEXT_NODE){
H A DNotationImpl.java95 public short getNodeType() { method in class:NotationImpl
H A DTextImpl.java95 public short getNodeType() { method in class:TextImpl
200 inEntRef = parent.getNodeType()==Node.ENTITY_REFERENCE_NODE;
204 short type = node.getNodeType();
247 inEntRef = parent.getNodeType()==Node.ENTITY_REFERENCE_NODE;
251 short type = node.getNodeType();
347 if ((prev.getNodeType() == Node.TEXT_NODE)
348 || (prev.getNodeType() == Node.CDATA_SECTION_NODE)
349 || (prev.getNodeType() == Node.ENTITY_REFERENCE_NODE && hasTextOnlyChildren(prev))) {
365 if ((next.getNodeType() == Node.TEXT_NODE)
366 || (next.getNodeType()
[all...]
H A DDocumentTypeImpl.java188 public short getNodeType() { method in class:DocumentTypeImpl
H A DEntityImpl.java122 public short getNodeType() { method in class:EntityImpl
H A DAttrImpl.java261 public short getNodeType() { method in class:AttrImpl
458 if (firstChild.getNodeType() == Node.ENTITY_REFERENCE_NODE){
471 if (node.getNodeType() == Node.ENTITY_REFERENCE_NODE){
554 if ( kid.getNodeType() == Node.TEXT_NODE )
557 if ( next!=null && next.getNodeType() == Node.TEXT_NODE )
720 if (newChild.getNodeType() == Node.DOCUMENT_FRAGMENT_NODE) {
1126 if (mykid.getNodeType() != Node.ENTITY_REFERENCE_NODE) {
1163 if (insertedChild.getNodeType() == Node.TEXT_NODE) {
1168 if ((prev != null && prev.getNodeType() == Node.TEXT_NODE) ||
1169 (next != null && next.getNodeType()
[all...]
H A DElementImpl.java113 public short getNodeType() { method in class:ElementImpl
350 if ( kid.getNodeType() == Node.TEXT_NODE )
353 if ( next!=null && next.getNodeType() == Node.TEXT_NODE )
369 else if (kid.getNodeType() == Node.ELEMENT_NODE) {
H A DDeferredDocumentImpl.java1159 getNodeType(prevSib, false) == Node.TEXT_NODE) {
1175 } while (getNodeType(prevSib, false) == Node.TEXT_NODE);
1297 public short getNodeType(int nodeIndex) { method in class:DeferredDocumentImpl
1298 return getNodeType(nodeIndex, true);
1305 public short getNodeType(int nodeIndex, boolean free) { method in class:DeferredDocumentImpl
1316 } // getNodeType(int):int
1632 getNodeType(0);
1654 int type = node.getNodeType();
H A DNodeImpl.java192 public abstract short getNodeType(); method in class:NodeImpl
809 short thisType = this.getNodeType();
810 short otherType = other.getNodeType();
852 int thisAncestorType = thisAncestor.getNodeType();
853 int otherAncestorType = otherAncestor.getNodeType();
990 if (this.getNodeType() == Node.DOCUMENT_NODE)
994 if (other.getNodeType() == Node.DOCUMENT_NODE)
1051 int thisAncestorType = thisAncestor.getNodeType();
1052 int otherAncestorType = otherAncestor.getNodeType();
1396 short type = this.getNodeType();
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DExtendedType.java126 public int getNodeType() method in class:ExtendedType
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DNodeImpl.java72 public short getNodeType() { method in class:NodeImpl
H A DDefaultNode.java59 public short getNodeType() { method in class:DefaultNode
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStep.java117 public int getNodeType() { method in class:Step
H A DStepPattern.java99 public int getNodeType() { method in class:StepPattern
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathNamespaceImpl.java116 * @see org.w3c.dom.Node#getNodeType()
118 public short getNodeType() { method in class:XPathNamespaceImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DAssertionData.java425 public ModelNode.Type getNodeType() { method in class:AssertionData
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java91 public short getNodeType() {return Node.ATTRIBUTE_NODE;} method in class:DOM2DTMdefaultNamespaceDeclarationNode
239 if (arg.getNodeType() != getNodeType()) {
312 short type = this.getNodeType();
374 if (this.getOwnerElement().getNodeType() == Node.ELEMENT_NODE) {
405 short type = this.getNodeType();
447 if (this.ownerNode.getNodeType() == Node.ELEMENT_NODE) {
484 short type = this.getNodeType();
505 if (this.getOwnerElement().getNodeType() == Node.ELEMENT_NODE) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DKeywords.java285 static Object getNodeType(String key){ method in class:Keywords
/openjdk7/jaxp/src/org/w3c/dom/
H A DNode.java246 public short getNodeType(); method in interface:Node
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTM.java544 public short getNodeType(int nodeHandle); method in interface:DTM

Completed in 106 milliseconds

12