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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/
CDATASection.idl 20 interface CDATASection : Text {
CDATASection.cpp 23 #include "core/dom/CDATASection.h"
29 inline CDATASection::CDATASection(Document* document, const String& data)
35 PassRefPtr<CDATASection> CDATASection::create(Document* document, const String& data)
37 return adoptRef(new CDATASection(document, data));
40 String CDATASection::nodeName() const
45 Node::NodeType CDATASection::nodeType() const
50 bool CDATASection::childTypeAllowed(NodeType) const
55 PassRefPtr<Text> CDATASection::cloneWithData(const String& data
    [all...]
CDATASection.h 30 class CDATASection FINAL : public Text {
32 static PassRefPtr<CDATASection> create(Document*, const String&);
35 CDATASection(Document*, const String&);
Document.idl 36 [RaisesException] CDATASection createCDATASection([Default=Undefined] optional DOMString data);
Document.h 64 class CDATASection;
316 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionState&);
    [all...]
  /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 {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8TextCustom.cpp 43 return wrap(static_cast<CDATASection*>(impl), creationContext, isolate);
V8NodeCustom.cpp 142 return wrap(static_cast<CDATASection*>(impl), creationContext, isolate);
  /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;
  /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();
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/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.cpp 34 #include "core/dom/CDATASection.h"
505 appendCDATASection(result, static_cast<const CDATASection*>(node)->data());
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 44 #include "core/dom/CDATASection.h"
    [all...]

Completed in 455 milliseconds

1 2 3