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

1 2 3 4

  /external/webkit/Source/WebCore/dom/
CDATASection.idl 22 interface CDATASection : Text {
CDATASection.cpp 23 #include "CDATASection.h"
29 inline CDATASection::CDATASection(Document* document, const String& data)
34 PassRefPtr<CDATASection> CDATASection::create(Document* document, const String& data)
36 return adoptRef(new CDATASection(document, data));
39 String CDATASection::nodeName() const
44 Node::NodeType CDATASection::nodeType() const
49 PassRefPtr<Node> CDATASection::cloneNode(bool /*deep*/)
54 bool CDATASection::childTypeAllowed(NodeType) cons
    [all...]
CDATASection.h 30 class CDATASection : public Text {
32 static PassRefPtr<CDATASection> create(Document*, const String&);
35 CDATASection(Document*, const String&);
  /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...]
  /external/webkit/Source/WebCore/bindings/js/
JSCDATASectionCustom.cpp 29 #include "CDATASection.h"
35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, CDATASection* section)
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, CDATASection, section);
  /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);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodereplacechild18.js 78 Using replaceChild on a DocumentFragment node attempt to replace a CDATASection node with
104 cdata = doc.createCDATASection("CDATASection");
111 assertEquals("nodereplacechild18_1","CDATASection",cdataName);
nodegettextcontent11.js 80 Invoke the method getTextContent on an existing CDATASection node and check if the value returned
107 assertEquals("nodegettextcontent11","This is an adjacent CDATASection with a reference to a tab &tab;",textContent);
nodegettextcontent13.js 104 assertEquals("nodegettextcontent13","Martha Raynolds\nThis is a CDATASection with EntityReference number 2 &ent2;\nThis is an adjacent CDATASection with a reference to a tab &tab;",textContent);
nodeisequalnode31.js 80 Using isEqualNode check if 2 new CDATASection nodes having the same data are equal and two others
103 cdata3 = doc.createCDATASection("#CDATASection");
nodecomparedocumentposition19.js 83 Using compareDocumentPosition check if the document position of the first CDATASection node
84 of the second element whose localName is name compared with the second CDATASection node
nodeinsertbefore15.js 81 Comment, ProcessingInstruction and CDATASection nodes before an element child
109 cdata = doc.createCDATASection("CDATASection");
nodeinsertbefore24.js 79 a CDATASection node that is not a child and verify if a NOT_FOUND_ERR is raised.
101 refNode = doc.createCDATASection("CDATASection");
nodeisdefaultnamespace14.js 78 Using isDefaultNamespace on a Element's new CDATASection node, which has a namespace attribute
105 cdata = doc.createCDATASection("CDATASection");
noderemovechild18.js 81 Using removeChild on the first 'p' Element node attempt to remove a CDATASection
112 assertEquals("noderemovechild18","This is an adjacent CDATASection with a reference to a tab &tab;",removedValue);
nodesetuserdata08.js 78 Invoke setUserData on a CDATASection and EntityReference node to set their
111 cData = doc.createCDATASection("CDATASection");
nodesetuserdata10.js 78 Invoke setUserData on a CDATASection and EntityReference node to set their
114 cData = doc.createCDATASection("CDATASection");
nodereplacechild23.js 79 Comment, ProcessingInstruction and CDATASection nodes with each other and in each case
108 cdata = doc.createCDATASection("CDATASection");
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 21 import org.w3c.dom.CDATASection;
60 public CDATASection createCDATASection(String data) throws DOMException {
  /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();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 32 import org.w3c.dom.CDATASection;
103 CDATASection cData;

Completed in 703 milliseconds

1 2 3 4