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

12 3 4 5 6

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
AttributeIterator.java 23 import org.apache.xml.dtm.DTM;
56 m_lastFetched = (DTM.NULL == m_lastFetched)
70 return org.apache.xml.dtm.Axis.ATTRIBUTE;
RTFIterator.java 30 import org.apache.xml.dtm.DTMManager;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 21 package org.apache.xml.dtm.ref;
25 import org.apache.xml.dtm.DTM;
26 import org.apache.xml.dtm.DTMDOMException;
50 * <code>DTMNodeProxy</code> presents a DOM Node API front-end to the DTM model.
54 * DTM node. Users can create a mechanism for managing this, or relinquish the
68 /** The DTM for this node. */
69 public DTM dtm; field in class:DTMNodeProxy
71 /** The DTM node handle. *
    [all...]
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)
DTMChildIterNodeList.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTM;
28 * NodeList interface wrapped around a DTM Iterator. The author
57 private DTM m_parentDTM;
73 * @param parentDTM The DTM containing this node
74 * @param parentHandle DTM node-handle integer
77 public DTMChildIterNodeList(DTM parentDTM,int parentHandle) {
97 while(--index>=0 && handle!=DTM.NULL) {
100 if (handle == DTM.NULL)
    [all...]
IncrementalSAXSource.java 22 package org.apache.xml.dtm.ref;
  /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;
DTMAxisTraverser.java 21 package org.apache.xml.dtm;
28 * class of a DTM, and returned by the getAxisTraverser(final int axis)
37 * nodeHandle!=DTM.NULL;
94 * @return the next node in the iteration, or DTM.NULL.
112 * @return the next node in the iteration, or DTM.NULL.
Axis.java 21 package org.apache.xml.dtm;
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...]
DTMConfigurationException.java 21 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
  /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...]
XNull.java 23 import org.apache.xml.dtm.DTM;
104 // DTM frag = support.createDocumentFragment();
106 return DTM.NULL;
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/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...]
FuncNormalizeSpace.java 23 import org.apache.xml.dtm.DTM;
73 if(DTM.NULL != node)
75 DTM dtm = xctxt.getDTM(node); local
76 dtm.dispatchCharactersEvents(node, handler, true);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
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...]
ElemCopyOf.java 28 import org.apache.xml.dtm.DTM;
29 import org.apache.xml.dtm.DTMIterator;
30 import org.apache.xml.dtm.ref.DTMTreeWalker;
158 while (DTM.NULL != (pos = nl.nextNode()))
160 DTM dtm = xctxt.getDTMManager().getDTM(pos); local
161 short t = dtm.getNodeType(pos);
165 if (t == DTM.DOCUMENT_NODE)
167 for (int child = dtm.getFirstChild(pos); child != DTM.NULL
    [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...]
ElemForEach.java 29 import org.apache.xml.dtm.DTM;
30 import org.apache.xml.dtm.DTMIterator;
31 import org.apache.xml.dtm.DTMManager;
344 xctxt.pushCurrentNode(DTM.NULL);
348 xctxt.pushCurrentExpressionNode(DTM.NULL);
358 DTM dtm = xctxt.getDTM(sourceNode); local
362 while (DTM.NULL != (child = sourceNodes.nextNode()))
369 dtm = xctxt.getDTM(child)
    [all...]
  /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;
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
StepPattern.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;
334 DTM dtm = xctxt.getDTM(currentNode); local
336 if (dtm != null)
338 int expType = dtm.getExpandedTypeID(currentNode);
340 return execute(xctxt, currentNode, dtm, expType)
529 DTM dtm = xctxt.getDTM(context); local
    [all...]
NodeTest.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMFilter;
352 * {@link org.apache.xml.dtm.DTMFilter}.
363 return DTM.ELEMENT_NODE;
366 return DTM.ATTRIBUTE_NODE;
369 return DTM.TEXT_NODE;
372 return DTM.DOCUMENT_NODE;
375 return DTM.DOCUMENT_FRAGMENT_NODE;
378 return DTM.NAMESPACE_NODE
529 DTM dtm = xctxt.getDTM(context); local
    [all...]

Completed in 1465 milliseconds

12 3 4 5 6