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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDeferredAttrImpl.java83 protected transient int fNodeIndex; field in class:DeferredAttrImpl
90 * This is the deferred constructor. Only the fNodeIndex is given here.
96 fNodeIndex = nodeIndex;
108 return fNodeIndex;
124 name = ownerDocument.getNodeName(fNodeIndex);
125 int extra = ownerDocument.getNodeExtra(fNodeIndex);
129 int extraNode = ownerDocument.getLastChild(fNodeIndex);
142 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredAttrNSImpl.java56 protected transient int fNodeIndex; field in class:DeferredAttrNSImpl
63 * This is the deferred constructor. Only the fNodeIndex is given here.
69 fNodeIndex = nodeIndex;
81 return fNodeIndex;
97 name = ownerDocument.getNodeName(fNodeIndex);
108 int extra = ownerDocument.getNodeExtra(fNodeIndex);
112 namespaceURI = ownerDocument.getNodeURI(fNodeIndex);
114 int extraNode = ownerDocument.getLastChild(fNodeIndex);
127 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredCDATASectionImpl.java65 protected transient int fNodeIndex; field in class:DeferredCDATASectionImpl
72 * This is the deferred constructor. Only the fNodeIndex is given here. All other data,
78 fNodeIndex = nodeIndex;
89 return fNodeIndex;
105 data = ownerDocument.getNodeValueString(fNodeIndex);
H A DDeferredCommentImpl.java46 protected transient int fNodeIndex; field in class:DeferredCommentImpl
53 * This is the deferred constructor. Only the fNodeIndex is given here. All other data,
59 fNodeIndex = nodeIndex;
70 return fNodeIndex;
86 data = ownerDocument.getNodeValueString(fNodeIndex);
H A DDeferredDocumentTypeImpl.java62 protected transient int fNodeIndex; field in class:DeferredDocumentTypeImpl
69 * This is the deferred constructor. Only the fNodeIndex is given here.
75 fNodeIndex = nodeIndex;
87 return fNodeIndex;
103 name = ownerDocument.getNodeName(fNodeIndex);
106 publicID = ownerDocument.getNodeValue(fNodeIndex);
107 systemID = ownerDocument.getNodeURI(fNodeIndex);
108 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
132 for (int index = ownerDocument.getLastChild(fNodeIndex);
H A DDeferredElementDefinitionImpl.java51 protected transient int fNodeIndex; field in class:DeferredElementDefinitionImpl
58 * This is the deferred constructor. Only the fNodeIndex is given here.
65 fNodeIndex = nodeIndex;
77 return fNodeIndex;
93 name = ownerDocument.getNodeName(fNodeIndex);
114 for (int nodeIndex = ownerDocument.getLastChild(fNodeIndex);
H A DDeferredElementImpl.java68 protected transient int fNodeIndex; field in class:DeferredElementImpl
75 * This is the deferred constructor. Only the fNodeIndex is given here. All
81 fNodeIndex = nodeIndex;
92 return fNodeIndex;
113 name = ownerDocument.getNodeName(fNodeIndex);
117 int index = ownerDocument.getNodeExtra(fNodeIndex);
135 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredElementNSImpl.java60 protected transient int fNodeIndex; field in class:DeferredElementNSImpl
67 * This is the deferred constructor. Only the fNodeIndex is given here. All
73 fNodeIndex = nodeIndex;
84 return fNodeIndex;
105 name = ownerDocument.getNodeName(fNodeIndex);
116 namespaceURI = ownerDocument.getNodeURI(fNodeIndex);
117 type = (XSTypeDefinition)ownerDocument.getTypeInfo(fNodeIndex);
121 int attrIndex = ownerDocument.getNodeExtra(fNodeIndex);
158 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredEntityImpl.java74 protected transient int fNodeIndex; field in class:DeferredEntityImpl
81 * This is the deferred constructor. Only the fNodeIndex is given here.
87 fNodeIndex = nodeIndex;
99 return fNodeIndex;
118 name = ownerDocument.getNodeName(fNodeIndex);
121 publicId = ownerDocument.getNodeValue(fNodeIndex);
122 systemId = ownerDocument.getNodeURI(fNodeIndex);
123 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
148 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredEntityReferenceImpl.java91 protected transient int fNodeIndex; field in class:DeferredEntityReferenceImpl
98 * This is the deferred constructor. Only the fNodeIndex is given here.
105 fNodeIndex = nodeIndex;
116 return fNodeIndex;
135 name = ownerDocument.getNodeName(fNodeIndex);
136 baseURI = ownerDocument.getNodeValue(fNodeIndex);
150 ownerDocument.synchronizeChildren(this, fNodeIndex);
H A DDeferredNotationImpl.java61 protected transient int fNodeIndex; field in class:DeferredNotationImpl
68 * This is the deferred constructor. Only the fNodeIndex is given here.
74 fNodeIndex = nodeIndex;
85 return fNodeIndex;
104 name = ownerDocument.getNodeName(fNodeIndex);
106 ownerDocument.getNodeType(fNodeIndex);
108 publicId = ownerDocument.getNodeValue(fNodeIndex);
109 systemId = ownerDocument.getNodeURI(fNodeIndex);
110 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
H A DDeferredProcessingInstructionImpl.java48 protected transient int fNodeIndex; field in class:DeferredProcessingInstructionImpl
55 * This is the deferred constructor. Only the fNodeIndex is given here.
62 fNodeIndex = nodeIndex;
73 return fNodeIndex;
89 target = ownerDocument.getNodeName(fNodeIndex);
90 data = ownerDocument.getNodeValueString(fNodeIndex);
H A DDeferredTextImpl.java56 protected transient int fNodeIndex; field in class:DeferredTextImpl
63 * This is the deferred constructor. Only the fNodeIndex is given here.
69 fNodeIndex = nodeIndex;
80 return fNodeIndex;
96 data = ownerDocument.getNodeValueString(fNodeIndex);
103 isIgnorableWhitespace(ownerDocument.getNodeExtra(fNodeIndex) == 1);

Completed in 67 milliseconds