HomeSort by relevance Sort by last modified time
    Searched defs:entityReference (Results 1 - 12 of 12) sorted by null

  /external/webkit/LayoutTests/fast/dom/EntityReference/script-tests/
readonly-exceptions.js 1 description("Test to make sure EntityReference nodes are always treated readonly")
5 var entityReference = xmlDoc.createEntityReference("gt");
7 shouldThrow("xmlDoc2.adoptNode(entityReference)");
8 shouldBe("entityReference.ownerDocument", "xmlDoc")
13 shouldThrow("entityReference.nodeValue = 'foo'");
14 shouldBe("entityReference.nodeValue", "null");
16 shouldThrow("entityReference.prefix = 'foo'");
17 shouldBe("entityReference.prefix", "null");
19 shouldThrow("entityReference.textContent = 'foo'");
20 shouldBe("entityReference.textContent", "'>'")
    [all...]
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
initial-values.js 171 var entityReference = xmlDoc.createEntityReference("gt");
172 shouldBe("entityReference.nodeName", "'gt'");
173 shouldBe("entityReference.localName", "null");
174 shouldBe("entityReference.namespaceURI", "null");
175 shouldBe("entityReference.prefix", "null");
176 shouldBe("entityReference.nodeValue", "null");
177 shouldBe("entityReference.attributes", "null");
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ExtendedContentHandler.java 178 public void entityReference(String entityName) throws SAXException;
ToTextStream.java 503 * Receive notivication of a entityReference.
509 public void entityReference(String name) throws org.xml.sax.SAXException
ToXMLStream.java 338 * Receive notivication of a entityReference.
344 public void entityReference(String name) throws org.xml.sax.SAXException
ToHTMLStream.java     [all...]
SerializerBase.java 901 public void entityReference(String name) throws org.xml.sax.SAXException
    [all...]
ToUnknownStream.java     [all...]
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 54 import org.w3c.dom.EntityReference;
517 EntityReference entityReference = (EntityReference) node;
518 serializer.entityRef(entityReference.getNodeName());
DomTest.java 52 import org.w3c.dom.EntityReference;
116 private Node option2Reference; // resolved to Text on RI, an EntityReference on Dalvik
471 EntityReference entityReference = document.createEntityReference("sp");
472 root.appendChild(entityReference);
475 entityReference.setTextContent("Lite Syrup");
689 EntityReference spReference = document.createEntityReference("sp");
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 535 // entityReference(name);
547 * Receive notivication of a entityReference.
551 public void entityReference(String name) throws org.xml.sax.SAXException
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 300 milliseconds