Searched defs:entityReference (Results 1 - 9 of 9) sorted by relevance

/external/webkit/LayoutTests/fast/dom/EntityReference/script-tests/
H A Dreadonly-exceptions.js5 var entityReference = xmlDoc.createEntityReference("gt"); variable
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", "'>'");
22 var childrenBeforeFailedAppend = entityReference
[all...]
/external/webkit/LayoutTests/fast/dom/Node/script-tests/
H A Dinitial-values.js171 var entityReference = xmlDoc.createEntityReference("gt"); variable
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/
H A DToXMLStream.java338 * Receive notivication of a entityReference.
344 public void entityReference(String name) throws org.xml.sax.SAXException method in class:ToXMLStream
H A DExtendedContentHandler.java178 public void entityReference(String entityName) throws SAXException; method in interface:ExtendedContentHandler
H A DToTextStream.java503 * Receive notivication of a entityReference.
509 public void entityReference(String name) throws org.xml.sax.SAXException method in class:ToTextStream
H A DToHTMLStream.java1726 * Receive notivication of a entityReference.
1732 public final void entityReference(String name) method in class:ToHTMLStream
H A DSerializerBase.java901 public void entityReference(String name) throws org.xml.sax.SAXException method in class:SerializerBase
H A DToUnknownStream.java1234 * @see ExtendedContentHandler#entityReference(java.lang.String)
1236 public void entityReference(String entityName) throws SAXException method in class:ToUnknownStream
1238 m_handler.entityReference(entityName);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java535 // entityReference(name);
547 * Receive notivication of a entityReference.
551 public void entityReference(String name) throws org.xml.sax.SAXException method in class:DOMBuilder

Completed in 455 milliseconds