HomeSort by relevance Sort by last modified time
    Searched refs:dom (Results 1 - 25 of 1937) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/w3c/dom/
CDATASection.java 13 package org.w3c.dom;
51 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
Comment.java 13 package org.w3c.dom;
27 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
DocumentFragment.java 13 package org.w3c.dom;
50 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
EntityReference.java 13 package org.w3c.dom;
40 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
DOMErrorHandler.java 13 package org.w3c.dom;
16 * <code>DOMErrorHandler</code> is a callback interface that the DOM
24 * <p> The application that is using the DOM implementation is expected to
26 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
27 * @since DOM Level 3
35 * may be reused by the DOM implementation across multiple calls to
38 * <code>false</code>, the DOM implementation should stop the current
DOMImplementationList.java 13 package org.w3c.dom;
17 * of an ordered collection of DOM implementations, without defining or
21 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
22 * @since DOM Level 3
NodeList.java 13 package org.w3c.dom;
18 * is implemented. <code>NodeList</code> objects in the DOM are live.
21 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
Notation.java 13 package org.w3c.dom;
21 * <p>The DOM Core does not support editing <code>Notation</code> nodes; they
24 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSSerializerFilter.java 13 package org.w3c.dom.ls;
15 import org.w3c.dom.traversal.NodeFilter;
21 * based on the <code>NodeFilter</code> interface defined in [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>]
36 * <p> DOM applications must not raise exceptions in a filter. The effect of
37 * throwing exceptions from a filter is DOM implementation dependent.
42 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Load
57 * <br> Unlike [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>
    [all...]
LSParserFilter.java 13 package org.w3c.dom.ls;
15 import org.w3c.dom.Element;
16 import org.w3c.dom.Node;
31 * parameter "<a href='http://www.w3.org/TR/DOM-Level-3-Core/core.html#parameter-entities'>
32 * entities</a>" is set to <code>false</code>. Note that, as described by the parameter "<a href='http://www.w3.org/TR/DOM-Level-3-Core/core.html#parameter-entities'>
36 * document as it appears on the input stream, not on the DOM document as it
43 * <p> DOM applications must not raise exceptions in a filter. The effect of
44 * throwing exceptions from a filter is DOM implementation dependent.
45 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Loa
    [all...]
  /external/skia/tests/
SkDOMTest.cpp 15 static const SkDOM::Node* check_node(skiatest::Reporter* r, const SkDOM& dom,
20 REPORTER_ASSERT(r, !strcmp(dom.getName(node), expectedName));
21 REPORTER_ASSERT(r, dom.getType(node) == expectedType);
42 SkDOM dom; local
43 REPORTER_ASSERT(r, !dom.getRootNode());
45 const SkDOM::Node* root = dom.build(docStream);
46 REPORTER_ASSERT(r, root && dom.getRootNode() == root);
48 const char* v = dom.findAttr(root, "a");
50 v = dom.findAttr(root, "b");
52 v = dom.findAttr(root, "c")
    [all...]
  /external/skqp/tests/
SkDOMTest.cpp 15 static const SkDOM::Node* check_node(skiatest::Reporter* r, const SkDOM& dom,
20 REPORTER_ASSERT(r, !strcmp(dom.getName(node), expectedName));
21 REPORTER_ASSERT(r, dom.getType(node) == expectedType);
42 SkDOM dom; local
43 REPORTER_ASSERT(r, !dom.getRootNode());
45 const SkDOM::Node* root = dom.build(docStream);
46 REPORTER_ASSERT(r, root && dom.getRootNode() == root);
48 const char* v = dom.findAttr(root, "a");
50 v = dom.findAttr(root, "b");
52 v = dom.findAttr(root, "c")
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCEntitiesSetNamedItemNS.java 1 package tests.org.w3c.dom;
5 import org.w3c.dom.DOMException;
6 import org.w3c.dom.Document;
7 import org.w3c.dom.DocumentType;
8 import org.w3c.dom.Element;
9 import org.w3c.dom.NamedNodeMap;
17 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-1788794630">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-1788794630</a>
19 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-setNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-setNamedItemNS</a
    [all...]
HCEntitiesRemoveNamedItemNS.java 19 package tests.org.w3c.dom;
23 import org.w3c.dom.DOMException;
24 import org.w3c.dom.Document;
25 import org.w3c.dom.DocumentType;
26 import org.w3c.dom.NamedNodeMap;
34 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-1788794630">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-1788794630</a>
36 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-removeNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-removeNamedItemNS</a>
RemoveAttributeNS.java 22 package tests.org.w3c.dom;
26 import org.w3c.dom.Attr;
27 import org.w3c.dom.DOMException;
28 import org.w3c.dom.Document;
29 import org.w3c.dom.Element;
30 import org.w3c.dom.Node;
31 import org.w3c.dom.NodeList;
46 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('ID-258A00AF')/constant[@name='NO_MODIFICATION_ALLOWED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('ID-258A00AF')/constant[@name='NO_MODIFICATION_ALLOWED_ERR'])</a>
48 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-ElRemAtNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-ElRemAtNS</a
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeListBase.java 22 import org.w3c.dom.Node;
25 * <code>DTMNodeList</code> gives us an implementation of the DOM's
29 * generally considered by the DOM WG to have be a mistake... but I'm
33 * Please note that this is not necessarily equivlaent to a DOM
42 * proposed DOM Level 3 getAdjacentText() operation?) </li>
46 * promise to implement the DOM NodeList's "live view" response to
54 public class DTMNodeListBase implements org.w3c.dom.NodeList {
59 // org.w3c.dom.NodeList API follows
  /external/testng/src/main/java/org/testng/xml/dom/
ITagSetter.java 1 package org.testng.xml.dom;
3 import org.w3c.dom.Node;
ITagFactory.java 1 package org.testng.xml.dom;
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMLocator.java 20 package javax.xml.transform.dom;
23 import org.w3c.dom.Node;
27 * Indicates the position of a node in a source DOM, intended
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentFragmentImpl.java 17 package org.apache.harmony.xml.dom;
19 import org.w3c.dom.DocumentFragment;
20 import org.w3c.dom.Node;
23 * Provides a straightforward implementation of the corresponding W3C DOM
29 * the DOM implementation can easily access them while maintaining the DOM tree
  /libcore/luni/src/main/java/org/w3c/dom/traversal/
NodeIterator.java 13 package org.w3c.dom.traversal;
15 import org.w3c.dom.DOMException;
16 import org.w3c.dom.Node;
23 * the implementation of the <code>NodeIterator</code>. DOM Level 2
28 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>.
29 * @since DOM Level 2
  /external/parameter-framework/upstream/tools/xmlGenerator/
hostConfig.py 32 import xml.dom.minidom
41 dom = xml.dom.minidom.parse(infile)
43 for node in dom.getElementsByTagName("ParameterFrameworkConfiguration"):
49 for node in dom.getElementsByTagName(tag):
55 for node in dom.getElementsByTagName("StructureDescriptionFileLocation"):
58 outfile.write(dom.toxml())
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 
  /prebuilts/tools/common/m2/repository/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
DOM3Serializer.java 26 import org.w3c.dom.DOMErrorHandler;
27 import org.w3c.dom.Node;
28 import org.w3c.dom.ls.LSSerializerFilter;
32 * by an end user, but rather by an XML parser that is implementing the DOM
36 * See the DOM Level 3 Load and Save interface at <a href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/load-save.html#LS-LSSerializer">LSSeializer</a>.
38 * For a list of configuration parameters for DOM Level 3 see <a href="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#DOMConfiguration">DOMConfiguration</a>.
39 * For additional configuration parameters available with the DOM Level 3 Load and Save API LSSerializer see
40 * <a href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/load-save.html#LS-LSSerializer-config">LSerializer config</a>.
    [all...]

Completed in 316 milliseconds

1 2 3 4 5 6 7 8 91011>>