HomeSort by relevance Sort by last modified time
    Searched defs:dtm (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/apache-xml/src/main/java/org/apache/xml/dtm/
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.
DTMConfigurationException.java 21 package org.apache.xml.dtm;
DTMDOMException.java 21 package org.apache.xml.dtm;
34 * Constructs a DOM/DTM exception.
SecuritySupport12.java 22 package org.apache.xml.dtm;
DTMWSFilter.java 21 package org.apache.xml.dtm;
24 * This interface is meant to be implemented by a client of the DTM, and allows
46 * view of <code>DTM</code>. Normally, this function
47 * will be called by the implementation of <code>DTM</code>;
54 public short getShouldStripSpace(int elementHandle, DTM dtm);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
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);
FuncDoclocation.java 23 import org.apache.xml.dtm.DTM;
51 if (DTM.NULL != whereNode)
53 DTM dtm = xctxt.getDTM(whereNode); local
56 if (DTM.DOCUMENT_FRAGMENT_NODE == dtm.getNodeType(whereNode))
58 whereNode = dtm.getFirstChild(whereNode);
61 if (DTM.NULL != whereNode)
63 fileLocation = dtm.getDocumentBaseURI()
    [all...]
FuncLang.java 23 import org.apache.xml.dtm.DTM;
50 DTM dtm = xctxt.getDTM(parent); local
52 while (DTM.NULL != parent)
54 if (DTM.ELEMENT_NODE == dtm.getNodeType(parent))
56 int langAttr = dtm.getAttributeNode(parent, "http://www.w3.org/XML/1998/namespace", "lang");
58 if (DTM.NULL != langAttr)
60 String langVal = dtm.getNodeValue(langAttr)
    [all...]
FuncNamespace.java 23 import org.apache.xml.dtm.DTM;
50 if(context != DTM.NULL)
52 DTM dtm = xctxt.getDTM(context); local
53 int t = dtm.getNodeType(context);
54 if(t == DTM.ELEMENT_NODE)
56 s = dtm.getNamespaceURI(context);
58 else if(t == DTM.ATTRIBUTE_NODE)
64 s = dtm.getNodeName(context)
    [all...]
FuncQname.java 23 import org.apache.xml.dtm.DTM;
50 if (DTM.NULL != context)
52 DTM dtm = xctxt.getDTM(context); local
53 String qname = dtm.getNodeNameX(context);
FuncSum.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMIterator;
53 while (DTM.NULL != (pos = nodes.nextNode()))
55 DTM dtm = nodes.getDTM(pos); local
56 XMLString s = dtm.getStringValue(pos);
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);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 26 import org.apache.xml.dtm.DTM;
56 // DTM dtm = xctxt.getDTM(node);
58 // int type = dtm.getNodeType(node);
61 // case DTM.TEXT_NODE :
62 // dtm.dispatchCharactersEvents(node, m_rth, false);
64 // case DTM.DOCUMENT_FRAGMENT_NODE :
65 // case DTM.DOCUMENT_NODE :
70 // case DTM.ELEMENT_NODE
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeListBase.java 21 package org.apache.xml.dtm.ref;
26 * NodeList interface wrapped around a DTM Iterator. The author
SecuritySupport12.java 22 package org.apache.xml.dtm.ref;
DTMTreeWalker.java 21 package org.apache.xml.dtm.ref;
23 import org.apache.xml.dtm.DTM;
31 * This class does a pre-order walk of the DTM tree, calling a ContentHandler
36 * of DTM#dispatchToEvents.
46 protected DTM m_dtm;
49 * Set the DTM to be traversed.
51 * @param dtm The Document Table Model to be used.
53 public void setDTM(DTM dtm)
245 DTM dtm = m_dtm; local
    [all...]
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...]
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;
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...]
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) {
IncrementalSAXSource.java 22 package org.apache.xml.dtm.ref;
NodeLocator.java 22 package org.apache.xml.dtm.ref;
DTMManagerDefault.java 21 package org.apache.xml.dtm.ref;
30 import org.apache.xml.dtm.DTM;
31 import org.apache.xml.dtm.DTMException;
32 import org.apache.xml.dtm.DTMFilter;
33 import org.apache.xml.dtm.DTMIterator;
34 import org.apache.xml.dtm.DTMManager;
35 import org.apache.xml.dtm.DTMWSFilter;
36 import org.apache.xml.dtm.ref.dom2dtm.DOM2DTM;
37 import org.apache.xml.dtm.ref.sax2dtm.SAX2DTM
253 DOM2DTM dtm = new DOM2DTM(this, (DOMSource) source, documentID, local
274 SAX2DTM dtm; local
559 DOM2DTM dtm = (DOM2DTM) getDTM(new javax.xml.transform.dom.DOMSource(root), local
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
DisplayAdjustmentUtils.java 61 final DisplayTransformManager dtm = LocalServices.getService(DisplayTransformManager.class); local
81 dtm.setColorMatrix(DisplayTransformManager.LEVEL_COLOR_MATRIX_GRAYSCALE, grayscaleMatrix);
82 dtm.setDaltonizerMode(daltonizerMode);
90 final DisplayTransformManager dtm = LocalServices.getService(DisplayTransformManager.class); local
96 dtm.setColorMatrix(DisplayTransformManager.LEVEL_COLOR_MATRIX_INVERT_COLOR,
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 23 import org.apache.xml.dtm.DTM;
24 import org.apache.xml.dtm.DTMFilter;
64 * @return the first node out of the nodeset, or DTM.NULL.
71 DTM dtm = xctxt.getDTM(current); local
73 return dtm.getFirstChild(current);
87 return DTM.NULL;
91 m_lastFetched = next = (DTM.NULL == m_lastFetched)
96 if (DTM.NULL != next
    [all...]

Completed in 797 milliseconds

1 2 3 4