HomeSort by relevance Sort by last modified time
    Searched refs:dtm (Results 76 - 100 of 132) sorted by null

1 2 34 5 6

  /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...]
FuncDocument.java 34 import org.apache.xml.dtm.DTM;
35 import org.apache.xml.dtm.DTMIterator;
76 DTM dtm = xctxt.getDTM(context); local
78 int docContext = dtm.getDocumentRoot(context);
97 if (baseNode == DTM.NULL)
106 DTM baseDTM = xctxt.getDTM(baseNode);
113 // if (baseDoc == DTM.NULL /* || baseDoc instanceof Stylesheet -->What to do?? */)
148 int pos = DTM.NULL
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
AxesWalker.java 26 import org.apache.xml.dtm.DTM;
27 import org.apache.xml.dtm.DTMAxisTraverser;
28 import org.apache.xml.dtm.DTMIterator;
179 m_currentNode = DTM.NULL;
183 m_root = DTM.NULL;
227 if (DTM.NULL == root)
323 return DTM.NULL;
333 else if(DTM.NULL != m_currentNode)
338 if (DTM.NULL == m_currentNode
    [all...]
FilterExprWalker.java 23 import org.apache.xml.dtm.Axis;
24 import org.apache.xml.dtm.DTM;
25 import org.apache.xml.dtm.DTMIterator;
201 return DTM.NULL;
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...]
NodeSequence.java 25 import org.apache.xml.dtm.DTM;
26 import org.apache.xml.dtm.DTMFilter;
27 import org.apache.xml.dtm.DTMIterator;
28 import org.apache.xml.dtm.DTMManager;
220 public DTM getDTM(int nodeHandle)
227 assertion(false, "Can not get a DTM Unless a DTMManager has been set!");
252 return DTM.NULL;
328 return DTM.NULL;
333 return DTM.NULL
745 DTM dtm = m_dtmMgr.getDTM(node); local
    [all...]
MatchPatternIterator.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.DTMIterator;
52 /** The DTM inner traversal class, that corresponds to the super axis. */
58 // protected int m_nsElemBase = DTM.NULL;
186 * @return The next node on the axis, or DTM.NULL.
190 m_lastFetched = (DTM.NULL == m_lastFetched)
206 return DTM.NULL
    [all...]
WalkingIteratorSorted.java 23 import org.apache.xml.dtm.Axis;
UnionPathIterator.java 23 import org.apache.xml.dtm.Axis;
24 import org.apache.xml.dtm.DTM;
25 import org.apache.xml.dtm.DTMIterator;
385 return DTM.NULL;
389 int earliestNode = DTM.NULL;
400 if (DTM.NULL == node)
402 else if (DTM.NULL == earliestNode)
417 DTM dtm = getDTM(node) local
    [all...]
FilterExprIteratorSimple.java 23 import org.apache.xml.dtm.Axis;
24 import org.apache.xml.dtm.DTM;
151 return DTM.NULL;
160 m_lastFetched = next = DTM.NULL;
163 if (DTM.NULL != next)
172 return DTM.NULL;
FilterExprIterator.java 23 import org.apache.xml.dtm.DTM;
80 * @return The next node on the axis, or DTM.NULL.
89 m_lastFetched = DTM.NULL;
PredicatedNodeTest.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMIterator;
439 if(DTM.NULL != n)
441 DTM dtm = m_lpi.getXPathContext().getDTM(n); local
442 return dtm.getNodeName(n) + "{" + (n+1) + "}";
UnionChildIterator.java 23 import org.apache.xml.dtm.DTMIterator;
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSetDTM.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;
217 if(DTM.NULL == m_root)
222 return DTM.NULL;
345 * Get an instance of a DTM that "owns" a node handle. Since a node
347 * caller to easily get the DTM using just the iterator.
351 * @return a non-null DTM reference
819 DTM dtm = support.getDTM(node); local
    [all...]
Expression.java 27 import org.apache.xml.dtm.DTM;
28 import org.apache.xml.dtm.DTMIterator;
106 * @param dtm The DTM of the current node.
115 XPathContext xctxt, int currentNode, DTM dtm, int expType)
218 * @return the first node out of the nodeset, or DTM.NULL.
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
SecuritySupport.java 22 package org.apache.xml.dtm;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
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;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncLast.java 23 import org.apache.xml.dtm.DTMIterator;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XRTreeFragSelectWrapper.java 24 import org.apache.xml.dtm.DTMIterator;
XNodeSet.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMIterator;
25 import org.apache.xml.dtm.DTMManager;
97 this(DTM.NULL,dtmMgr);
111 if (DTM.NULL != n)
164 return (node != DTM.NULL) ? getNumberFromNode(node) : Double.NaN;
178 return (node != DTM.NULL) ? getNumberFromNode(node) : Double.NaN;
189 return (item(0) != DTM.NULL);
200 return (nextNode() != DTM.NULL)
    [all...]
XNodeSetForDOM.java 23 import org.apache.xml.dtm.DTMManager;
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
NodeSorter.java 28 import org.apache.xml.dtm.DTM;
29 import org.apache.xml.dtm.DTMIterator;
271 DTM dtm = support.getDTM(n1.m_node); // %OPT% local
272 result = dtm.isNodeAfter(n1.m_node, n2.m_node) ? -1 : 1;
520 if(DTM.NULL == current)
524 // tryNextKey = (DTM.NULL != current);

Completed in 247 milliseconds

1 2 34 5 6