Home | History | Annotate | Download | only in ref

Lines Matching defs:this

4  * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
31 * This class does a pre-order walk of the DTM tree, calling a ContentHandler
35 * I think normally this class should not be needed, because
45 /** DomHelper for this TreeWalker */
93 this.m_contentHandler = contentHandler;
108 // %REVIEW% Why isn't this just traverse(pos,pos)?
110 int top = pos; // Remember the root of this subtree
131 // %REVIEW% This condition isn't tested in traverse(pos,top)
162 // -- or by simply ignoring this case and relying on the fact that
232 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
242 this.m_contentHandler.startDocument();
253 this.m_contentHandler.startPrefixMapping(prefix, dtm.getNodeValue(nsn));
279 this.m_contentHandler.startElement(ns,
295 this.m_contentHandler.processingInstruction(name,
304 ? ((LexicalHandler) this.m_contentHandler) : null;
341 ((LexicalHandler) this.m_contentHandler).startEntity(
369 this.m_contentHandler.endDocument();
375 this.m_contentHandler.endElement(ns,
385 this.m_contentHandler.endPrefixMapping(prefix);
394 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);