Searched refs:DTMManager (Results 1 - 23 of 23) sorted by path

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemForEach.java31 import org.apache.xml.dtm.DTMManager;
359 int docID = sourceNode & DTMManager.IDENT_DTM_DEFAULT;
367 if ((child & DTMManager.IDENT_DTM_DEFAULT) != docID)
370 docID = child & DTMManager.IDENT_DTM_DEFAULT;
395 // be moved into DTMManager rather than being explicitly invoked in
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java32 import org.apache.xml.dtm.DTMManager;
H A DTransformerImpl.java71 import org.apache.xml.dtm.DTMManager;
530 * @param shouldRelease Flag indicating whether to release DTMManager.
573 DTMManager mgr = m_xcontext.getDTMManager();
1130 * @param shouldRelease Flag indicating whether to release DTMManager.
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java68 * of slots in the DTMManager. There's even been a proposal that we
71 * reduce the need to continuously consult the DTMManager to retrieve
851 * DTMManager.
943 * As the DTM is registered with the DTMManager, this method
951 * As documents are released from the DTMManager, the DTM implementation
960 * Migrate a DTM built with an old DTMManager to a new DTMManager.
961 * After the migration, the new DTMManager will treat the DTM as
964 * @param manager the DTMManager
966 public void migrateTo(DTMManager manage
[all...]
H A DDTMIterator.java75 * iterator may be passed without a DTMManager, this allows the
85 * Get an instance of the DTMManager. Since a node
86 * iterator may be passed without a DTMManager, this allows the
87 * caller to easily get the DTMManager using just the iterator.
89 * @return a non-null DTMManager reference.
91 public DTMManager getDTMManager();
H A DDTMManager.java19 * $Id: DTMManager.java 468653 2006-10-28 07:07:05Z minchau $
29 * A DTMManager instance can be used to create DTM and
39 * of a DTMManager to use across multiple threads. This will allow sharing
48 public abstract class DTMManager class
53 "org.apache.xml.dtm.DTMManager";
68 protected DTMManager(){} method in class:DTMManager
93 * Obtain a new instance of a <code>DTMManager</code>.
96 * the <code>DTMManager</code> implementation class to
100 * Use the <code>org.apache.xml.dtm.DTMManager</code> system
113 * <code>META-INF/services/org.apache.xml.dtm.DTMManager</cod
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java111 public DTMManager m_mgr;
127 //protected final static int m_mask = DTMManager.IDENT_NODE_DEFAULT;
158 * @param mgr The DTMManager who owns this DTM.
167 public DTMDefaultBase(DTMManager mgr, Source source, int dtmIdentity,
178 * @param mgr The DTMManager who owns this DTM.
190 public DTMDefaultBase(DTMManager mgr, Source source, int dtmIdentity,
906 if(JJK_DEBUG && nodeIdentity>DTMManager.IDENT_NODE_DEFAULT)
909 return m_dtmIdent.elementAt(nodeIdentity >>> DTMManager.IDENT_DTM_NODE_BITS)
910 + (nodeIdentity & DTMManager.IDENT_NODE_DEFAULT) ;
939 int whichDTMindex=nodeHandle>>>DTMManager
[all...]
H A DDTMDefaultBaseIterators.java41 * @param mgr The DTMManager who owns this DTM.
50 public DTMDefaultBaseIterators(DTMManager mgr, Source source,
63 * @param mgr The DTMManager who owns this DTM.
75 public DTMDefaultBaseIterators(DTMManager mgr, Source source,
H A DDTMDefaultBaseTraversers.java46 * @param mgr The DTMManager who owns this DTM.
55 public DTMDefaultBaseTraversers(DTMManager mgr, Source source,
68 * @param mgr The DTMManager who owns this DTM.
80 public DTMDefaultBaseTraversers(DTMManager mgr, Source source,
H A DDTMDocumentImpl.java28 import org.apache.xml.dtm.DTMManager;
158 * DTMManager's responsibility to assign a unique number to each
161 public DTMDocumentImpl(DTMManager mgr, int documentNumber,
395 * DTMManager.
618 * The DTMManager will invoke this method when the dtm is created.
2401 * Migrate a DTM built with an old DTMManager to a new DTMManager.
2402 * After the migration, the new DTMManager will treat the DTM as
2405 * @param manager the DTMManager
2407 public void migrateTo(DTMManager manage
[all...]
H A DDTMManagerDefault.java34 import org.apache.xml.dtm.DTMManager;
57 * The default implementation for the DTMManager.
61 * DTMManager.release(), and may do so at the same time that the main
73 public class DTMManagerDefault extends DTMManager
213 * always be returned. Otherwise it is up to the DTMManager to return a
538 // explicitly add the DTM to a DTMManager... and thus to know when
544 // and the DTM wasn't registered with this DTMManager, we will create
696 * Release the DTMManager's reference(s) to a DTM, making it unmanaged.
740 m_dtms[ids.elementAt(i)>>>DTMManager.IDENT_DTM_NODE_BITS]=null;
747 m_dtms[i >>> DTMManager
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java29 import org.apache.xml.dtm.DTMManager;
109 * @param mgr The DTMManager who owns this DTM.
118 public DOM2DTM(DTMManager mgr, DOMSource domSource,
188 if(m_dtmIdent.size() == (nodeIndex>>>DTMManager.IDENT_DTM_NODE_BITS))
199 m_dtmIdent.addElement(id<<DTMManager.IDENT_DTM_NODE_BITS);
1573 * DTMManager.
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java209 * @param mgr The DTMManager who owns this DTM.
218 public SAX2DTM(DTMManager mgr, Source source, int dtmIdentity,
232 * @param mgr The DTMManager who owns this DTM.
244 public SAX2DTM(DTMManager mgr, Source source, int dtmIdentity,
475 * DTMManager.
875 if(m_dtmIdent.size() == (nodeIndex>>>DTMManager.IDENT_DTM_NODE_BITS))
934 m_dtmIdent.addElement(id<<DTMManager.IDENT_DTM_NODE_BITS);
946 * Migrate a DTM built with an old DTMManager to a new DTMManager.
947 * After the migration, the new DTMManager wil
[all...]
H A DSAX2DTM2.java1845 public SAX2DTM2(DTMManager mgr, Source source, int dtmIdentity,
1858 public SAX2DTM2(DTMManager mgr, Source source, int dtmIdentity,
1886 m_maxNodeIndex = 1 << DTMManager.IDENT_DTM_NODE_BITS;
2342 //if(m_dtmIdent.size() == (nodeIndex>>>DTMManager.IDENT_DTM_NODE_BITS))
2346 m_maxNodeIndex += (1 << DTMManager.IDENT_DTM_NODE_BITS);
H A DSAX2RTFDTM.java26 import org.apache.xml.dtm.DTMManager;
121 public SAX2RTFDTM(DTMManager mgr, Source source, int dtmIdentity,
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSetDTM.java27 import org.apache.xml.dtm.DTMManager;
69 public NodeSetDTM(DTMManager dtmManager)
81 public NodeSetDTM(int blocksize, int dummy, DTMManager dtmManager)
183 public NodeSetDTM(int node, DTMManager dtmManager)
346 * iterator may be passed without a DTMManager, this allows the
359 /* An instance of the DTMManager. */
360 DTMManager m_manager;
363 * Get an instance of the DTMManager. Since a node
364 * iterator may be passed without a DTMManager, this allows the
365 * caller to easily get the DTMManager usin
[all...]
H A DXPathContext.java40 import org.apache.xml.dtm.DTMManager;
60 * <p>This class extends DTMManager but does not directly implement it.</p>
63 public class XPathContext extends DTMManager // implements ExpressionContext
99 * the DTMManager, it really is a proxy for this object, which
100 * is the real DTMManager.
102 protected DTMManager m_dtmManager = DTMManager.newInstance(
106 * Return the DTMManager object. Though XPathContext context extends
107 * the DTMManager, it really is a proxy for the real DTMManager
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DLocPathIterator.java27 import org.apache.xml.dtm.DTMManager;
169 * iterator may be passed without a DTMManager, this allows the
183 * Get an instance of the DTMManager. Since a node
184 * iterator may be passed without a DTMManager, this allows the
185 * caller to easily get the DTMManager using just the iterator.
187 * @return a non-null DTMManager reference.
189 public DTMManager getDTMManager()
H A DNodeSequence.java28 import org.apache.xml.dtm.DTMManager;
150 * The DTMManager to use if we're using a NodeVector only.
153 protected DTMManager m_dtmMgr;
200 private NodeSequence(DTMManager dtmMgr)
222 DTMManager mgr = getDTMManager();
227 assertion(false, "Can not get a DTM Unless a DTMManager has been set!");
235 public DTMManager getDTMManager()
H A DRTFIterator.java30 import org.apache.xml.dtm.DTMManager;
39 public RTFIterator(int root, DTMManager manager) {
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNodeSet.java25 import org.apache.xml.dtm.DTMManager;
95 public XNodeSet(DTMManager dtmMgr)
105 public XNodeSet(int n, DTMManager dtmMgr)
H A DXNodeSetForDOM.java23 import org.apache.xml.dtm.DTMManager;
40 public XNodeSetForDOM(Node node, DTMManager dtmMgr)
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DVariableSafeAbsRef.java23 import org.apache.xml.dtm.DTMManager;
62 DTMManager dtmMgr = xctxt.getDTMManager();

Completed in 343 milliseconds