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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Notation.cpp 22 #include "core/dom/Notation.h"
26 Notation::Notation(TreeScope* treeScope, const String& name, const String& publicId, const String& systemId)
35 String Notation::nodeName() const
40 Node::NodeType Notation::nodeType() const
45 PassRefPtr<Node> Notation::cloneNode(bool /*deep*/)
47 // Spec says cloning Notation nodes is "implementation dependent". We do not support it.
51 bool Notation::childTypeAllowed(NodeType) const
Notation.idl 20 interface Notation : Node {
Notation.h 31 class Notation FINAL : public ContainerNode {
37 Notation(TreeScope*, 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/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeCustom.cpp 158 return wrap(static_cast<Notation*>(impl), creationContext, isolate);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [all...]
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 56 import org.w3c.dom.Notation;
80 + " <!NOTATION png SYSTEM \"image/png\">"
101 private Notation png;
141 png = (Notation) doctype.getNotations().item(0);
379 * Xerces fails this test. It returns false always for entity, notation,
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
options.js 157 { scriptCode: 'Zmth', scriptName: 'Mathematical Notation'},
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/
JSON.pm 622 JSON - JSON (JavaScript Object Notation) encoder/decoder
691 JSON (JavaScript Object Notation) is a simple data format.
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/
JSON.pm 622 JSON - JSON (JavaScript Object Notation) encoder/decoder
691 JSON (JavaScript Object Notation) is a simple data format.
    [all...]

Completed in 344 milliseconds

1 2 3