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

1 2 3 4

  /external/webkit/Source/WebCore/dom/
EntityReference.idl 22 interface EntityReference : Node {
EntityReference.cpp 22 #include "EntityReference.h"
28 inline EntityReference::EntityReference(Document* document, const String& entityName)
34 PassRefPtr<EntityReference> EntityReference::create(Document* document, const String& entityName)
36 return adoptRef(new EntityReference(document, entityName));
39 String EntityReference::nodeName() const
44 Node::NodeType EntityReference::nodeType() const
49 PassRefPtr<Node> EntityReference::cloneNode(bool)
EntityReference.h 29 class EntityReference : public ContainerNode {
31 static PassRefPtr<EntityReference> create(Document*, const String& entityName);
34 EntityReference(Document*, const String& entityName);
  /libcore/luni/src/main/java/org/w3c/dom/
EntityReference.java 16 * <code>EntityReference</code> nodes may be used to represent an entity
22 * <code>Document</code>, instead of providing <code>EntityReference</code>
24 * <code>EntityReference</code> node that represents a reference to a known
26 * <code>EntityReference</code> node is a copy of the <code>Entity</code>
30 * the <code>EntityReference</code> node may be bound to different namespace
31 * URIs. When an <code>EntityReference</code> node represents a reference to
34 * <p>As for <code>Entity</code> nodes, <code>EntityReference</code> nodes and
36 * <p ><b>Note:</b> <code>EntityReference</code> nodes may cause element
42 public interface EntityReference extends Node {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
EntityReferenceImpl.java 19 import org.w3c.dom.EntityReference;
32 public class EntityReferenceImpl extends LeafNodeImpl implements EntityReference {
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode21.java 89 EntityReference entRef2;
90 EntityReference entRefImp2;
91 EntityReference entRef3;
92 EntityReference entRefImp3;
108 entRef2 = (EntityReference) addressChildList.item(0);
109 entRef3 = (EntityReference) addressChildList.item(2);
110 entRefImp2 = (EntityReference) docImp.importNode(entRef2, true);
111 entRefImp3 = (EntityReference) docImp.importNode(entRef3, false);
118 entRefImp2 = (EntityReference) doc.importNode(entRef2, true);
119 entRefImp3 = (EntityReference) doc.importNode(entRef3, false)
    [all...]
nodeissupported04.java 38 * new EntityReference node. Check if the value returned value was false.
66 EntityReference entRef;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementsetattributenomodificationallowederr.java 77 EntityReference entRef;
82 entRef = (EntityReference) gender.getFirstChild();
nodesetnodevaluenomodificationallowederr.java 72 EntityReference entRef;
79 entRef = (EntityReference) genderNode.getFirstChild();
documentcreateentityreference.java 36 * a new EntityReference node for the Entity with the
68 EntityReference newEntRefNode;
documentcreateentityreferenceknown.java 32 * EntityReference node. In addition, if the referenced entity
33 * is known, the child list of the "EntityReference" node
38 * a new EntityReference node for the Entity with the
40 * list of the "EntityReference" node is the same as the corresponding
69 EntityReference newEntRefNode;
nodesetnodevaluenomodificationallowederrEE.java 63 EntityReference entRef;
attrremovechild1.java 60 EntityReference entRef;
attrreplacechild1.java 60 EntityReference entRef;
attrsetvaluenomodificationallowederrEE.java 69 EntityReference entRef;
characterdataappenddatanomodificationallowederrEE.java 65 EntityReference entReference;
characterdatadeletedatanomodificationallowederrEE.java 65 EntityReference entReference;
characterdatainsertdatanomodificationallowederrEE.java 65 EntityReference entReference;
characterdatareplacedatanomodificationallowederrEE.java 65 EntityReference entReference;
characterdatasetdatanomodificationallowederrEE.java 65 EntityReference entReference;
documentinvalidcharacterexceptioncreateentref.java 67 EntityReference badEntityRef;
documentinvalidcharacterexceptioncreateentref1.java 64 EntityReference badEntityRef;
elementremoveattributenodenomodificationallowederrEE.java 71 EntityReference entRef;
elementremoveattributenomodificationallowederrEE.java 70 EntityReference entRef;
elementsetattributenodenomodificationallowederrEE.java 77 EntityReference entRef;

Completed in 1321 milliseconds

1 2 3 4