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

1 2 3

  /libcore/luni/src/main/java/org/w3c/dom/
CDATASection.java 27 * <p>The <code>CDATASection</code> interface inherits from the
29 * interface. Adjacent <code>CDATASection</code> nodes are not merged by use
39 * <code>CDATASection</code>, character numeric references cannot be used as
41 * when serializing a <code>CDATASection</code> with a character encoding
53 public interface CDATASection extends Text {
Document.java 109 * Creates a <code>CDATASection</code> node whose value is the specified
111 * @param data The data for the <code>CDATASection</code> contents.
112 * @return The new <code>CDATASection</code> object.
116 public CDATASection createCDATASection(String data)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CDATASectionImpl.java 19 import org.w3c.dom.CDATASection;
32 public final class CDATASectionImpl extends TextImpl implements CDATASection {
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
cdatasectionnormalize.java 31 * Adjacent CDATASection nodes cannot be merged together by
35 * two CDATASection nodes that should not be merged together
67 CDATASection cdataN;
74 cdataN = (CDATASection) childNodes.item(1);
77 assertEquals("data1", "This is a CDATASection with EntityReference number 2 &ent2;", data);
78 cdataN = (CDATASection) childNodes.item(3);
81 assertEquals("data3", "This is an adjacent CDATASection with a reference to a tab &tab;", data);
documentcreatecdatasection.java 32 * CDATASection node whose value is the specified string.
35 * new CDATASection node whose "data" is the specified
65 CDATASection newCDATASectionNode;
70 newCDATASectionNode = doc.createCDATASection("This is a new CDATASection node");
72 assertEquals("nodeValue", "This is a new CDATASection node", newCDATASectionValue);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode02.java 38 * Create a CDATASection node with value being the string "this is CDATASection data" in
40 * this document. Method should return a CDATASection node whose value matches
71 CDATASection cDataSec;
79 cDataSec = aNewDoc.createCDATASection("this is CDATASection data");
87 assertEquals("nodeValue", "this is CDATASection data", value);
nodenormalize01.java 86 CDATASection cData;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 34 import org.w3c.dom.CDATASection;
691 CDATASection section =(CDATASection) m_currentNode.getLastChild();
UnImplNode.java 27 import org.w3c.dom.CDATASection;
877 public CDATASection createCDATASection(String data) throws DOMException
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 32 import org.w3c.dom.CDATASection;
103 CDATASection cData;
ImportNode.java 34 import org.w3c.dom.CDATASection;
137 CDATASection cDataSec;
145 cDataSec = aNewDoc.createCDATASection("this is CDATASection data");
154 assertEquals("nodeValue", "this is CDATASection data", value);
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 20 import org.w3c.dom.CDATASection;
449 CDATASection cdata = document.createCDATASection("");
577 actual.add("<![CDATA[" + ((CDATASection) node).getData() + "]]>");
DomTest.java 43 import org.w3c.dom.CDATASection;
112 private CDATASection descriptionText2;
155 descriptionText2 = (CDATASection) description.getChildNodes().item(1);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 39 import org.w3c.dom.CDATASection;
426 serializeCDATASection((CDATASection) node);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 30 import org.w3c.dom.CDATASection;
685 public final CDATASection createCDATASection(String data)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
minidom.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
minidom.py     [all...]
  /external/python/cpython2/Lib/xml/dom/
minidom.py     [all...]
  /external/python/cpython3/Lib/xml/dom/
minidom.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/tools/common/m2/repository/xom/xom/1.0/
xom-1.0.jar 
  /prebuilts/tools/common/m2/repository/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 

Completed in 529 milliseconds

1 2 3