Searched defs:textNode (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DDOMHelper.java137 * @param textNode A text node from the source tree.
143 public boolean shouldStripSourceNode(Node textNode) argument
147 // return (null == m_envSupport) ? false : m_envSupport.shouldStripSourceNode(textNode);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DAttrImpl.java144 protected TextImpl textNode = null; field in class:AttrImpl
367 if (textNode == null) {
368 textNode = (TextImpl)
372 textNode.data = (String) value;
374 value = textNode;
375 textNode.isFirstChild(true);
376 textNode.previousSibling = textNode;
377 textNode.ownerNode = this;
378 textNode
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DDOM.java83 public void characters(final int textNode, SerializationHandler handler) argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDOMAdapter.java330 public void characters(final int textNode, SerializationHandler handler) argument
334 _enhancedDOM.characters(textNode, handler);
337 _dom.characters(textNode, handler);
H A DMultiDOM.java534 public void characters(final int textNode, SerializationHandler handler) argument
537 if (textNode != DTM.NULL) {
538 _adapters[textNode >>> DTMManager.IDENT_DTM_NODE_BITS].characters(textNode, handler);

Completed in 240 milliseconds