Home | History | Annotate | Download | only in templates

Lines Matching defs:dtm

28 import org.apache.xml.dtm.DTM;
29 import org.apache.xml.dtm.DTMIterator;
211 xctxt.pushCurrentNode(DTM.NULL);
212 xctxt.pushCurrentExpressionNode(DTM.NULL);
230 DTM dtm = xctxt.getDTM(sourceNode);
261 while (DTM.NULL != (child = sourceNodes.nextNode()))
266 if(xctxt.getDTM(child) != dtm)
268 dtm = xctxt.getDTM(child);
271 final int exNodeType = dtm.getExpandedTypeID(child);
273 final int nodeType = dtm.getNodeType(child);
278 -1, quiet, dtm);
286 case DTM.DOCUMENT_FRAGMENT_NODE :
287 case DTM.ELEMENT_NODE :
291 case DTM.ATTRIBUTE_NODE :
292 case DTM.CDATA_SECTION_NODE :
293 case DTM.TEXT_NODE :
298 // dtm.dispatchCharactersEvents(child, chandler, false);
299 dtm.dispatchCharactersEvents(child, rth, false);
302 case DTM.DOCUMENT_NODE :
401 } // end while (DTM.NULL != (child = sourceNodes.nextNode()))