Searched refs:fNodeIndex (Results 1 - 13 of 13) sorted by relevance

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDeferredNotationImpl.java62 protected transient int fNodeIndex; field in class:DeferredNotationImpl
69 * This is the deferred constructor. Only the fNodeIndex is given here.
75 fNodeIndex = nodeIndex;
86 return fNodeIndex;
105 name = ownerDocument.getNodeName(fNodeIndex);
107 ownerDocument.getNodeType(fNodeIndex);
109 publicId = ownerDocument.getNodeValue(fNodeIndex);
110 systemId = ownerDocument.getNodeURI(fNodeIndex);
111 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
H A DDeferredTextImpl.java57 protected transient int fNodeIndex; field in class:DeferredTextImpl
64 * This is the deferred constructor. Only the fNodeIndex is given here.
70 fNodeIndex = nodeIndex;
81 return fNodeIndex;
97 data = ownerDocument.getNodeValueString(fNodeIndex);
104 isIgnorableWhitespace(ownerDocument.getNodeExtra(fNodeIndex) == 1);
H A DDeferredProcessingInstructionImpl.java49 protected transient int fNodeIndex; field in class:DeferredProcessingInstructionImpl
56 * This is the deferred constructor. Only the fNodeIndex is given here.
63 fNodeIndex = nodeIndex;
74 return fNodeIndex;
90 target = ownerDocument.getNodeName(fNodeIndex);
91 data = ownerDocument.getNodeValueString(fNodeIndex);
H A DDeferredEntityReferenceImpl.java92 protected transient int fNodeIndex; field in class:DeferredEntityReferenceImpl
99 * This is the deferred constructor. Only the fNodeIndex is given here.
106 fNodeIndex = nodeIndex;
117 return fNodeIndex;
136 name = ownerDocument.getNodeName(fNodeIndex);
137 baseURI = ownerDocument.getNodeValue(fNodeIndex);
151 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredAttrNSImpl.java57 protected transient int fNodeIndex; field in class:DeferredAttrNSImpl
64 * This is the deferred constructor. Only the fNodeIndex is given here.
70 fNodeIndex = nodeIndex;
82 return fNodeIndex;
98 name = ownerDocument.getNodeName(fNodeIndex);
109 int extra = ownerDocument.getNodeExtra(fNodeIndex);
113 namespaceURI = ownerDocument.getNodeURI(fNodeIndex);
115 int extraNode = ownerDocument.getLastChild(fNodeIndex);
128 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredCDATASectionImpl.java66 protected transient int fNodeIndex; field in class:DeferredCDATASectionImpl
73 * This is the deferred constructor. Only the fNodeIndex is given here. All other data,
79 fNodeIndex = nodeIndex;
90 return fNodeIndex;
106 data = ownerDocument.getNodeValueString(fNodeIndex);
H A DDeferredCommentImpl.java47 protected transient int fNodeIndex; field in class:DeferredCommentImpl
54 * This is the deferred constructor. Only the fNodeIndex is given here. All other data,
60 fNodeIndex = nodeIndex;
71 return fNodeIndex;
87 data = ownerDocument.getNodeValueString(fNodeIndex);
H A DDeferredAttrImpl.java84 protected transient int fNodeIndex; field in class:DeferredAttrImpl
91 * This is the deferred constructor. Only the fNodeIndex is given here.
97 fNodeIndex = nodeIndex;
109 return fNodeIndex;
125 name = ownerDocument.getNodeName(fNodeIndex);
126 int extra = ownerDocument.getNodeExtra(fNodeIndex);
130 int extraNode = ownerDocument.getLastChild(fNodeIndex);
143 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredElementImpl.java69 protected transient int fNodeIndex; field in class:DeferredElementImpl
76 * This is the deferred constructor. Only the fNodeIndex is given here. All
82 fNodeIndex = nodeIndex;
93 return fNodeIndex;
114 name = ownerDocument.getNodeName(fNodeIndex);
118 int index = ownerDocument.getNodeExtra(fNodeIndex);
136 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredEntityImpl.java75 protected transient int fNodeIndex; field in class:DeferredEntityImpl
82 * This is the deferred constructor. Only the fNodeIndex is given here.
88 fNodeIndex = nodeIndex;
100 return fNodeIndex;
119 name = ownerDocument.getNodeName(fNodeIndex);
122 publicId = ownerDocument.getNodeValue(fNodeIndex);
123 systemId = ownerDocument.getNodeURI(fNodeIndex);
124 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
149 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredElementDefinitionImpl.java52 protected transient int fNodeIndex; field in class:DeferredElementDefinitionImpl
59 * This is the deferred constructor. Only the fNodeIndex is given here.
66 fNodeIndex = nodeIndex;
78 return fNodeIndex;
94 name = ownerDocument.getNodeName(fNodeIndex);
115 for (int nodeIndex = ownerDocument.getLastChild(fNodeIndex);
H A DDeferredDocumentTypeImpl.java63 protected transient int fNodeIndex; field in class:DeferredDocumentTypeImpl
70 * This is the deferred constructor. Only the fNodeIndex is given here.
76 fNodeIndex = nodeIndex;
88 return fNodeIndex;
104 name = ownerDocument.getNodeName(fNodeIndex);
107 publicID = ownerDocument.getNodeValue(fNodeIndex);
108 systemID = ownerDocument.getNodeURI(fNodeIndex);
109 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
133 for (int index = ownerDocument.getLastChild(fNodeIndex);
H A DDeferredElementNSImpl.java61 protected transient int fNodeIndex; field in class:DeferredElementNSImpl
68 * This is the deferred constructor. Only the fNodeIndex is given here. All
74 fNodeIndex = nodeIndex;
85 return fNodeIndex;
106 name = ownerDocument.getNodeName(fNodeIndex);
117 namespaceURI = ownerDocument.getNodeURI(fNodeIndex);
118 type = (XSTypeDefinition)ownerDocument.getTypeInfo(fNodeIndex);
122 int attrIndex = ownerDocument.getNodeExtra(fNodeIndex);
159 ownerDocument.synchronizeChildren(this, fNodeIndex);

Completed in 88 milliseconds