HomeSort by relevance Sort by last modified time
    Searched refs:EntityReference (Results 26 - 50 of 99) sorted by null

12 3 4

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementsetattributenomodificationallowederrEE.java 71 EntityReference entRef;
hc_attrgetvalue2.java 69 EntityReference alphaRef;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributenodens06.java 37 * a read-only EntityReference node.
75 EntityReference entRef;
importNode10.java 37 * Only the EntityReference is copied, regardless of deep's value.
74 EntityReference entRef;
importNode11.java 37 * Only the EntityReference is copied, regardless of deep's value.
74 EntityReference entRef;
nodenormalize01.java 88 EntityReference entRef;
139 entRef = (EntityReference) entRef.cloneNode(false);
  /libcore/luni/src/main/java/org/w3c/dom/
Document.java 161 * Creates an <code>EntityReference</code> object. In addition, if the
163 * <code>EntityReference</code> node is made the same as that of the
167 * created <code>EntityReference</code> node is also unbound; (its
178 * @return The new <code>EntityReference</code> object.
185 public EntityReference createEntityReference(String name)
267 * <dd>Only the <code>EntityReference</code> itself is
300 * <code>EntityReference</code> nodes.
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 29 import org.w3c.dom.EntityReference;
422 EntityReference eref = (EntityReference) node;
513 EntityReference eref = (EntityReference) node;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 27 import org.w3c.dom.EntityReference;
427 EntityReference eref = (EntityReference) node;
494 EntityReference eref = (EntityReference) node;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
noderemovechild12.js 82 Using removeChild on a new DocumentFragment node attempt to remove a new EntityReference node.
83 Also attempt to remove the document fragment node from the EntityReference. Verify that a
84 NO_MODIFICATION_ALLOWED_ERR (EntityReference node is read-only) or a NOT_FOUND_ERR is thrown.
textreplacewholetext06.js 84 Invoke replaceWholeText on an existing text node with newly created text and Entityreference
86 Where the nodes to be removed are read-only descendants of an EntityReference, the EntityReference
87 must be removed instead of the read-only nodes. Only if any EntityReference to be removed has
88 descendants that are not EntityReference, Text, or CDATASection nodes, the replaceWholeText
nodecomparedocumentposition25.js 78 Using compareDocumentPosition check if the EntityReference or Text node is contained and follows its
80 EntityReference or Text node.
nodegettextcontent17.js 78 Invoke the method getTextContent on a new EntityReference node and check if the
79 value returned is the EntityReference's content.
nodereplacechild24.js 79 Using replaceChild on an EntityReference node attempt to replace an Element node with
80 an EntityReference node verify if a NO_MODIFICATION_ALLOWED_ERR gets thrown.
nodesettextcontent12.js 80 Using setTextContent on a new EntityReference node, attempt to set its value.
81 Since EntityReference nodes are ReadOnly, check if a NO_MODIFICATION_ALLOWED_ERR
nodecomparedocumentposition26.js 78 Using compareDocumentPosition check if the EntityReference node contains and precedes it's first
79 childElement, and that the childElement is contained and follows the EntityReference node.
nodecomparedocumentposition27.js 78 Using compareDocumentPosition to check if the EntityReference node contains and precedes it's last
79 childElement, and that this childElement is contained and follows the EntityReference node.
nodeinsertbefore19.js 79 Using insertBefore on an Element node attempt to insert an EntityReference node, before
80 another new EntityReference node and verify the name of the new first child node.
nodereplacechild22.js 78 Using replaceChild on a new EntityReference node attempt to replace an EntityReference node with
  /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...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeIsSupported.java 32 import org.w3c.dom.EntityReference;
163 EntityReference entRef;
NodeNormalize.java 30 import org.w3c.dom.EntityReference;
105 EntityReference entRef;
157 entRef = (EntityReference) entRef.cloneNode(false);
ElementSetAttributeNodeNS.java 30 import org.w3c.dom.EntityReference;
209 EntityReference entRef;
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 30 import org.w3c.dom.EntityReference;
83 public EntityReference createEntityReference(String name) throws DOMException {
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderTest.java 23 import org.w3c.dom.EntityReference;
545 assertEquals("foo", ((EntityReference)root.getFirstChild()).getNodeName());
634 assertEquals("foo", ((EntityReference)root.getFirstChild()).getNodeName());

Completed in 3626 milliseconds

12 3 4