/external/webkit/Source/WebCore/dom/ |
Notation.cpp | 22 #include "Notation.h" 28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId) 36 String Notation::nodeName() const 41 Node::NodeType Notation::nodeType() const 46 PassRefPtr<Node> Notation::cloneNode(bool /*deep*/) 48 // Spec says cloning Notation nodes is "implementation dependent". We do not support it. 52 bool Notation::childTypeAllowed(NodeType) const
|
Notation.idl | 22 interface Notation : Node {
|
Notation.h | 31 class Notation : public ContainerNode { 37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
|
/libcore/luni/src/main/java/org/w3c/dom/ |
Notation.java | 16 * This interface represents a notation declared in the DTD. A notation either 20 * to the declared name of the notation. 21 * <p>The DOM Core does not support editing <code>Notation</code> nodes; they 23 * <p>A <code>Notation</code> node does not have any parent. 26 public interface Notation extends Node { 28 * The public identifier of this notation. If the public identifier was 34 * The system identifier of this notation. If the system identifier was
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documentimportnode22.java | 82 Notation notation1; 83 Notation notation2; 84 Notation notationImp1; 85 Notation notationImp2; 86 Notation notationImpNew1; 87 Notation notationImpNew2; 104 notation1 = (Notation) nodeMap.getNamedItem("notation1"); 105 notation2 = (Notation) nodeMap.getNamedItem("notation2"); 106 notationImp1 = (Notation) doc.importNode(notation1, true); 107 notationImp2 = (Notation) doc.importNode(notation2, false) [all...] |
importNode13.java | 36 * The importedNode is of type Notation. 38 * Retrieve notation named "notation1" from document staffNS.xml. 40 * contains the retrieved notation and deep is false. Method should 41 * return a node of type notation whose name is "notation1". 74 Notation notation; local 75 Notation aNode; 85 notation = (Notation) notationList.getNamedItem("notation1"); 86 aNode = (Notation) doc.importNode(notation, false) [all...] |
getNamedItemNS04.java | 34 * Notation nodes are not namespaced and should not be retrievable using 66 Notation notation; local 73 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1"); 74 assertNull("notationNull", notation);
|
namednodemapgetnameditemns01.java | 34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation "notation1" 77 Notation notation; local 90 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1"); 91 assertNull("notationNull", notation);
|
namednodemapsetnameditemns11.java | 37 * Attempt to add a notation node to a NamedNodeMap of attribute nodes, 77 Notation notation; local 87 notation = (Notation) notations.getNamedItem("notation1"); 95 newNode = attributes.setNamedItemNS(notation);
|
namednodemapsetnameditemns05.java | 34 * Retreive an entity and notation node and add the first notation to the 35 * notation node map and first entity node to the entity map. Since both these 77 Notation notation; local 88 notation = (Notation) notations.getNamedItem("notation1"); 103 newNode = notations.setNamedItemNS(notation);
|
namednodemapsetnameditemns10.java | 78 Notation notation; local
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
NotationImpl.java | 20 import org.w3c.dom.Notation; 32 public class NotationImpl extends LeafNodeImpl implements Notation {
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
nodenotationnodetype.java | 31 * The "getNodeType()" method for an Notation Node 33 * Retrieve the Notation declaration in the DocumentType 65 Notation notationNode; 72 notationNode = (Notation) notations.getNamedItem("notation1");
|
notationgetnotationname.java | 31 * Retrieve the notation named "notation1" and access its 64 Notation notationNode; 71 notationNode = (Notation) notations.getNamedItem("notation1");
|
notationgetpublicid.java | 31 * Retrieve the notation named "notation1" and access its 63 Notation notationNode; 70 notationNode = (Notation) notations.getNamedItem("notation1");
|
notationgetpublicidnull.java | 31 * The "getPublicId()" method of a Notation node contains 32 * the public identifier associated with the notation, if 35 * Retrieve the notation named "notation2" and access its 37 * specified for this notation, the "getPublicId()" method 68 Notation notationNode; 75 notationNode = (Notation) notations.getNamedItem("notation2");
|
notationgetsystemidnull.java | 31 * Retrieve the notation named "notation1" and access its 33 * specified for this notation, the "getSystemId()" method 64 Notation notationNode; 71 notationNode = (Notation) notations.getNamedItem("notation1");
|
notationgetsystemid.java | 31 * The "getSystemId()" method of a Notation node contains 32 * the system identifier associated with the notation, if 35 * Retrieve the notation named "notation2" and access its 67 Notation notationNode; 75 notationNode = (Notation) notations.getNamedItem("notation2");
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodecomparedocumentposition22.js | 79 Using compareDocumentPosition check if the Entity node precedes the Notation node and the Notation 94 var notation; 110 notation = notationsMap.getNamedItem("notation1"); 111 entityPosition = entity.compareDocumentPosition(notation); 113 notationPosition = notation.compareDocumentPosition(entity);
|
nodecomparedocumentposition24.js | 78 Using compareDocumentPosition check if the return value of document position of a Notation node compared to another 91 var notation; 104 notation = notaionsMap.getNamedItem("notation1"); 106 notationPosition = notation.compareDocumentPosition(notation2);
|
nodeissamenode08.js | 80 Using isSameNode check if 2 Notation nodes that reference the same object are
|
nodelookupnamespaceuri04.js | 82 Using lookupNamespaceURI on an Entity and Notation node and check if the value returned is Null . 94 var notation; 111 notation = notationsMap.getNamedItem("notation1");
|
nodelookupprefix04.js | 82 Using lookupPrefix on an Entity and Notation node and check if the value returned is Null . 94 var notation; 111 notation = notationsMap.getNamedItem("notation1"); 114 prefix = notation.lookupPrefix("");
|
nodesettextcontent04.js | 81 Notation node to textContent. Retreive the textContent and verify if it is null.
|
documentrenamenode28.js | 78 Invoke the renameNode method to attempt to rename a Entity and Notation nodes of this Document. 93 var notation; 109 notation = notationNodeMap.getNamedItem("notation1"); 125 renamedNotationNode = doc.renameNode(notation,"http://www.w3.org/DOM/Test","notation2");
|