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

12 3 4

  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
Counter.java 26 import org.apache.xml.dtm.DTM;
64 int m_fromNode = DTM.NULL;
134 DTM dtm = support.getDTM(countedNode); local
138 if (dtm.isNodeAfter(countedNode, node))
155 return (size > 0) ? m_countNodes.elementAt(size - 1) : DTM.NULL;
TreeWalker2Result.java 24 import org.apache.xml.dtm.DTM;
25 import org.apache.xml.dtm.ref.DTMTreeWalker;
88 if(DTM.ELEMENT_NODE == m_dtm.getNodeType(node))
109 if (DTM.ELEMENT_NODE == m_dtm.getNodeType(node))
127 DTM dtm = m_dtm; local
128 for (int ns = dtm.getFirstNamespaceNode(node, true);
129 DTM.NULL != ns; ns = dtm.getNextNamespaceNode(node, ns, true)
    [all...]
XalanTransformState.java 28 import org.apache.xml.dtm.DTM;
29 import org.apache.xml.dtm.DTMIterator;
44 int m_currentNodeHandle = DTM.NULL;
46 int m_matchedNode = DTM.NULL;
68 DTM dtm = m_transformer.getXPathContext().getDTM(currentNodeHandle); local
69 m_currentNode = dtm.getNode(currentNodeHandle);
92 DTM dtm = m_transformer.getXPathContext().getDTM(m_transformer.getCurrentNode()) local
123 DTM dtm = m_transformer.getXPathContext().getDTM(m_matchedNode); local
126 DTM dtm = m_transformer.getXPathContext().getDTM(m_transformer.getMatchedNode()); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisIterator.java 21 package org.apache.xml.dtm;
29 /** Specifies the end of the iteration, and is the same as DTM.NULL. */
30 public static final int END = DTM.NULL;
SecuritySupport.java 22 package org.apache.xml.dtm;
DTMFilter.java 21 package org.apache.xml.dtm;
123 * are modeled by DTM but not by the DOM. Make sure this does not
128 * possibly, to create a DTM-specific field for these additional bits.
139 * possibly, to create a DTM-specific field for these additional bits.
182 * the DTM interface. Wild cards will be defined
Axis.java 21 package org.apache.xml.dtm;
DTMException.java 21 package org.apache.xml.dtm;
35 * in the DTM module.
DTMIterator.java 21 package org.apache.xml.dtm;
44 * TreeWalker's "current node" semantics. However, since the base DTM
74 * Get an instance of a DTM that "owns" a node handle. Since a node
76 * caller to easily get the DTM using just the iterator.
80 * @return a non-null DTM reference.
82 public DTM getDTM(int nodeHandle);
159 * <p>NOTE: In Xalan's use of DTM we will generally have fully expanded
173 * <code>DTM.NULL</code> if there are no more members in that set.
181 * or <code>DTM.NULL</code> if there are no more members in that set.
DTMManager.java 21 package org.apache.xml.dtm;
29 * A DTMManager instance can be used to create DTM and
30 * DTMIterator objects, and manage the DTM objects in the system.
53 "org.apache.xml.dtm.DTMManager";
57 "org.apache.xml.dtm.ref.DTMManagerDefault";
100 * Use the <code>org.apache.xml.dtm.DTMManager</code> system
113 * <code>META-INF/services/org.apache.xml.dtm.DTMManager</code>
118 * <code>org.apache.xml.dtm.ref.DTMManagerDefault</code>.
160 * Get an instance of a DTM, loaded with the content from the
172 * @param unique true if the returned DTM must be unique, probably because i
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeIterator.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMDOMException;
25 import org.apache.xml.dtm.DTMIterator;
109 * @return false, always (the DTM model flattens entity references)
164 if (handle==DTM.NULL)
182 if (handle==DTM.NULL)
ExtendedType.java 21 package org.apache.xml.dtm.ref;
SecuritySupport.java 22 package org.apache.xml.dtm.ref;
CoroutineManager.java 21 package org.apache.xml.dtm.ref;
DTMAxisIteratorBase.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTMAxisIterator;
33 * Note that this is _not_ the node's handle within the DTM. Also, don't
39 * Note that this is _not_ the node's handle within the DTM!
DTMStringPool.java 22 package org.apache.xml.dtm.ref;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FunctionDef1Arg.java 24 import org.apache.xml.dtm.DTM;
87 if(DTM.NULL == currentNode)
91 DTM dtm = xctxt.getDTM(currentNode); local
92 return dtm.getStringValue(currentNode);
120 if(DTM.NULL == currentNode)
124 DTM dtm = xctxt.getDTM(currentNode); local
125 XMLString str = dtm.getStringValue(currentNode)
    [all...]
FuncId.java 25 import org.apache.xml.dtm.DTM;
26 import org.apache.xml.dtm.DTMIterator;
66 DTM dtm = xctxt.getDTM(docContext); local
80 int node = dtm.getElementById(ref);
82 if (DTM.NULL != node)
110 DTM dtm = xctxt.getDTM(context); local
111 int docContext = dtm.getDocument()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObjectFactory.java 23 import org.apache.xml.dtm.Axis;
24 import org.apache.xml.dtm.DTM;
25 import org.apache.xml.dtm.DTMAxisIterator;
26 import org.apache.xml.dtm.DTMIterator;
103 else if (val instanceof DTM)
105 DTM dtm = (DTM)val; local
108 int dtmRoot = dtm.getDocument()
    [all...]
XRTreeFrag.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMIterator;
42 private int m_dtmRoot = DTM.NULL;
69 final DTM dtm = xctxt.getDTM(root); local
70 if(dtm != null){
71 m_DTMXRTreeFrag = xctxt.getDTMXRTreeFrag(xctxt.getDTMIdentity(dtm));
84 return new org.apache.xml.dtm.ref.DTMNodeIterator((DTMIterator)(new org.apache.xpath.NodeSetDTM(m_dtmRoot, m_DTMXRTreeFrag.getXPathContext().getDTMManager())));
243 return new org.apache.xml.dtm.ref.DTMNodeList(asNodeIterator())
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
ContextMatchStepPattern.java 23 import org.apache.xml.dtm.Axis;
24 import org.apache.xml.dtm.DTM;
25 import org.apache.xml.dtm.DTMAxisTraverser;
26 import org.apache.xml.dtm.DTMFilter;
92 DTM dtm = xctxt.getDTM(context); local
94 if (null != dtm)
102 boolean iterRootIsAttr = (dtm.getNodeType(xctxt.getIteratorRoot())
103 == DTM.ATTRIBUTE_NODE)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCopy.java 27 import org.apache.xml.dtm.DTM;
98 DTM dtm = xctxt.getDTM(sourceNode); local
99 short nodeType = dtm.getNodeType(sourceNode);
101 if ((DTM.DOCUMENT_NODE != nodeType) && (DTM.DOCUMENT_FRAGMENT_NODE != nodeType))
106 ClonerToResultTree.cloneToResultTree(sourceNode, nodeType, dtm,
109 if (DTM.ELEMENT_NODE == nodeType)
112 SerializerUtils.processNSDecls(rthandler, sourceNode, nodeType, dtm);
    [all...]
FuncKey.java 27 import org.apache.xml.dtm.DTM;
28 import org.apache.xml.dtm.DTMIterator;
63 DTM dtm = xctxt.getDTM(context); local
64 int docContext = dtm.getDocumentRoot(context);
66 if (DTM.NULL == docContext)
96 while (DTM.NULL != (pos = ni.nextNode()))
98 dtm = xctxt.getDTM(pos);
99 XMLString ref = dtm.getStringValue(pos)
    [all...]
ElemApplyTemplates.java 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); local
261 while (DTM.NULL != (child = sourceNodes.nextNode()))
266 if(xctxt.getDTM(child) != dtm)
268 dtm = xctxt.getDTM(child)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
LocPathIterator.java 24 import org.apache.xml.dtm.DTM;
25 import org.apache.xml.dtm.DTMFilter;
26 import org.apache.xml.dtm.DTMIterator;
27 import org.apache.xml.dtm.DTMManager;
168 * Get an instance of a DTM that "owns" a node handle. Since a node
170 * caller to easily get the DTM using just the iterator.
174 * @return a non-null DTM reference.
176 public DTM getDTM(int nodeHandle)
242 DTM dtm = clone.getDTM(node) local
    [all...]

Completed in 318 milliseconds

12 3 4