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

1 2

  /external/webkit/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
    [all...]
CDATASection.h 30 class CDATASection : public Text {
32 static PassRefPtr<CDATASection> create(Document*, const String&);
35 CDATASection(Document*, const String&);
Document.h 50 class CDATASection;
282 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionCode&);
    [all...]
Document.idl 40 [ReturnsNew] CDATASection createCDATASection(in DOMString data)
  /dalvik/libcore/xml/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/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);
JSNodeCustom.cpp 30 #include "CDATASection.h"
199 wrapper = CREATE_DOM_NODE_WRAPPER(exec, globalObject, CDATASection, node);
  /dalvik/libcore/xml/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 {
  /dalvik/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);
  /dalvik/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;
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 21 import org.w3c.dom.CDATASection;
60 public CDATASection createCDATASection(String data) throws DOMException {
  /dalvik/libcore/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...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 37 import org.w3c.dom.CDATASection;
115 CDATASection cData;
ImportNode.java 39 import org.w3c.dom.CDATASection;
155 CDATASection cDataSec;
163 cDataSec = aNewDoc.createCDATASection("this is CDATASection data");
172 assertEquals("nodeValue", "this is CDATASection data", value);
  /external/webkit/WebKit/win/
DOMCreateInstance.cpp 85 #include <WebCore/CDATASection.h>
190 domNode = new GEN_DOMCDATASection(static_cast<WebCore::CDATASection*>(node));
  /dalvik/libcore/xml/src/test/java/tests/xml/
NormalizeTest.java 21 import org.w3c.dom.CDATASection;
451 CDATASection cdata = document.createCDATASection("");
579 actual.add("<![CDATA[" + ((CDATASection) node).getData() + "]]>");
DomTest.java 23 import org.w3c.dom.CDATASection;
113 private CDATASection descriptionText2;
156 descriptionText2 = (CDATASection) description.getChildNodes().item(1);
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8NodeCustom.cpp 184 return toV8(static_cast<CDATASection*>(impl), forceNewObject);
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 39 import org.w3c.dom.CDATASection;
426 serializeCDATASection((CDATASection) node);
    [all...]
  /dalvik/libcore/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...]

Completed in 446 milliseconds

1 2