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

12 3 4

  /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...]
  /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...]
ElemApplyImport.java 27 import org.apache.xml.dtm.DTM;
81 if (DTM.NULL != sourceNode)
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...]
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...]
TemplateList.java 30 import org.apache.xml.dtm.DTM;
425 * @param dtm The dtm owner for the target node.
431 int targetNode, DTM dtm)
433 short targetNodeType = dtm.getNodeType(targetNode);
438 case DTM.ELEMENT_NODE :
439 case DTM.ATTRIBUTE_NODE :
441 dtm.getLocalName(targetNode))
    [all...]
  /external/apache-xml/src/main/java/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...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ReverseAxesWalker.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMAxisIterator;
77 return DTM.NULL;
84 if (DTM.NULL == next)
152 while (DTM.NULL != (next = clone.nextNode()))
215 while (DTM.NULL != (next = clone.nextNode()))
245 /** The DTM inner traversal class, that corresponds to the super axis. */
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...]
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...]
  /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...]
FuncUnparsedEntityURI.java 23 import org.apache.xml.dtm.DTM;
48 DTM dtm = xctxt.getDTM(context); local
49 int doc = dtm.getDocument();
51 String uri = dtm.getUnparsedEntityURI(name);
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);
FuncPosition.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMIterator;
77 if(n == DTM.NULL)
97 while(DTM.NULL != (n = cnl.nextNode()))
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
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...]
  /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...]
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...]
FunctionPattern.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMIterator;
113 while (DTM.NULL != (n = nl.nextNode()))
146 DTM dtm, int expType)
157 while (DTM.NULL != (n = nl.nextNode()))
200 while (DTM.NULL != (n = nl.nextNode()))
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.*;
41 * @param mgr The DTMManager who owns this DTM.
43 * @param dtmIdentity The DTM identity ID for this DTM.
44 * @param whiteSpaceFilter The white space filter for this DTM, which may
63 * @param mgr The DTMManager who owns this DTM.
65 * @param dtmIdentity The DTM identity ID for this DTM.
66 * @param whiteSpaceFilter The white space filter for this DTM, which ma
    [all...]
DTMNodeList.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMIterator;
29 * NodeList interface wrapped around a DTM Iterator. The author
111 if (handle == DTM.NULL) {
DTMAxisIterNodeList.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMAxisIterator;
31 * NodeList interface wrapped around a DTM Iterator. The author
59 private DTM m_dtm;
72 public DTMAxisIterNodeList(DTM dtm, DTMAxisIterator dtmAxisIterator) {
77 m_dtm = dtm;
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)
DTMNamedNodeMap.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTM;
47 /** The DTM for this node. */
48 DTM dtm; field in class:DTMNamedNodeMap
50 /** The DTM element handle. */
57 * Create a getAttributes NamedNodeMap for a given DTM element node
59 * @param dtm The DTM Reference, must be non-null
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NodeVector.java 25 import org.apache.xml.dtm.DTM;
191 m_map[m_firstFree] = DTM.NULL;
207 m_map[m_firstFree] = DTM.NULL;
209 return (m_firstFree == 0) ? DTM.NULL : m_map[m_firstFree - 1];
220 m_map[m_firstFree] = DTM.NULL;
233 ? m_map[m_firstFree - 1] : DTM.NULL;
280 m_map[m_firstFree] = DTM.NULL;
281 m_map[m_firstFree + 1] = DTM.NULL;
436 m_map[i] = DTM.NULL
    [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...]

Completed in 1029 milliseconds

12 3 4