HomeSort by relevance Sort by last modified time
    Searched defs:dtm (Results 76 - 84 of 84) sorted by null

1 2 34

  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 31 import org.apache.xml.dtm.DTM;
32 import org.apache.xml.dtm.DTMManager;
33 import org.apache.xml.dtm.ref.IncrementalSAXSource_Filter;
34 import org.apache.xml.dtm.ref.sax2dtm.SAX2DTM;
98 DTM dtm = xctxt.getDTM(null, true, transformer, true, true); local
100 m_dtm = dtm;
101 dtm.setDocumentBaseURI(baseSystemID);
103 m_contentHandler = dtm.getContentHandler()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 21 package org.apache.xml.dtm.ref.dom2dtm;
28 import org.apache.xml.dtm.DTM;
29 import org.apache.xml.dtm.DTMManager;
30 import org.apache.xml.dtm.DTMWSFilter;
31 import org.apache.xml.dtm.ref.DTMDefaultBaseIterators;
32 import org.apache.xml.dtm.ref.DTMManagerDefault;
33 import org.apache.xml.dtm.ref.ExpandedNameTable;
34 import org.apache.xml.dtm.ref.IncrementalSAXSource;
54 * DTM API
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 35 import org.apache.xml.dtm.DTM;
54 // import org.apache.xalan.dtm.*;
87 DTM dtm; field in class:ElemNumber.MyPrefixResolver
95 public MyPrefixResolver(Node xpathExpressionContext, DTM dtm, int handle, boolean handleNullPrefix) {
96 this.dtm = dtm;
105 return dtm.getNamespaceURI(handle)
615 DTM dtm = xctxt.getDTM(context); local
665 DTM dtm = xctxt.getDTM(context); local
723 DTM dtm = support.getDTM(contextNode); local
857 DTM dtm = xctxt.getDTM(pos); local
984 DTM dtm = xctxt.getDTM(node); local
    [all...]
StylesheetRoot.java 42 import org.apache.xml.dtm.DTM;
43 import org.apache.xml.dtm.ref.ExpandedNameTable;
761 DTM dtm)
766 dtm);
793 DTM dtm)
799 dtm);
918 XPathContext support, int targetElement, DTM dtm) throws TransformerExceptio
946 DTM dtm = support.getDTM(targetElement); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.*;
44 public abstract class DTMDefaultBase implements DTM
50 // node of a DTM.
105 protected static final int NOTPROCESSED = DTM.NULL - 1;
108 * The DTM manager who "owns" this DTM.
126 a particular DTM wanted to use another value? */
158 * @param mgr The DTMManager who owns this DTM.
160 * @param dtmIdentity The DTM identity ID for this DTM
    [all...]
DTMDocumentImpl.java 21 package org.apache.xml.dtm.ref;
25 import org.apache.xml.dtm.DTM;
26 import org.apache.xml.dtm.DTMAxisIterator;
27 import org.apache.xml.dtm.DTMAxisTraverser;
28 import org.apache.xml.dtm.DTMManager;
29 import org.apache.xml.dtm.DTMWSFilter;
40 * This is the implementation of the DTM document interface. It receives
43 * dtm table structure. This informtion is used later for document navigation,
44 * query, and SAX event dispatch functions. The DTM can also be used directly as
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 21 package org.apache.xml.dtm.ref.sax2dtm;
28 import org.apache.xml.dtm.*;
29 import org.apache.xml.dtm.ref.*;
45 * This class implements a DTM that tends to be optimized more for speed than
77 * pending reduction in number of RTF DTMs. Now that we're sharing a DTM
111 transient protected int m_textType = DTM.TEXT_NODE;
117 transient protected int m_coalescedTextType = DTM.TEXT_NODE;
209 * @param mgr The DTMManager who owns this DTM.
210 * @param source the JAXP 1.1 Source object for this DTM.
211 * @param dtmIdentity The DTM identity ID for this DTM
    [all...]
SAX2DTM2.java 21 package org.apache.xml.dtm.ref.sax2dtm;
23 import org.apache.xml.dtm.*;
24 import org.apache.xml.dtm.ref.*;
42 * access to the DTM model. Some nested iterators in DTMDefaultBaseIterators
47 * use it in incremental situation. To reduce the overhead of pulling data from the DTM model,
94 _currentNode = (node == DTM.NULL) ? DTM.NULL
130 private int _nodeType = DTM.NULL;
149 if (node != DTM.NULL)
152 _currentNode = DTM.NULL
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathContext.java 36 import org.apache.xml.dtm.Axis;
37 import org.apache.xml.dtm.DTM;
38 import org.apache.xml.dtm.DTMFilter;
39 import org.apache.xml.dtm.DTMIterator;
40 import org.apache.xml.dtm.DTMManager;
41 import org.apache.xml.dtm.DTMWSFilter;
42 import org.apache.xml.dtm.ref.sax2dtm.SAX2RTFDTM;
73 * really a net win versus discarding the DTM and starting a new one...
74 * but the retained RTF DTM will have been tail-pruned so should be small
1133 DTM dtm = getDTM(nodeHandle); local
1147 DTM dtm = getDTM(nodeHandle); local
    [all...]

Completed in 350 milliseconds

1 2 34