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

1 2 3 4 5 6 7

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeentitynodeattributes.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
nodeentitynodename.java 31 * Check the nodeName of the entity returned by DocumentType.entities.getNamedItem("ent1").
60 NamedNodeMap entities; local
66 entities = docType.getEntities();
67 assertNotNull("entitiesNotNull", entities);
68 entityNode = entities.getNamedItem("ent1");
nodeentitynodetype.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
nodeentitynodevalue.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
nodeentitysetnodevalue.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
hc_entitiesremovenameditem1.java 62 NamedNodeMap entities; local
72 entities = docType.getEntities();
73 assertNotNull("entitiesNotNull", entities);
78 retval = entities.removeNamedItem("alpha");
hc_entitiessetnameditem1.java 31 * An attempt to add an element to the named node map returned by entities should
63 NamedNodeMap entities; local
74 entities = docType.getEntities();
75 assertNotNull("entitiesNotNull", entities);
79 retval = entities.setNamedItem(elem);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getNamedItemNS03.java 65 NamedNodeMap entities; local
71 entities = docType.getEntities();
72 assertNotNull("entitiesNotNull", entities);
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
hc_entitiesremovenameditemns1.java 60 NamedNodeMap entities; local
70 entities = docType.getEntities();
71 assertNotNull("entitiesNotNull", entities);
74 retval = entities.removeNamedItemNS("http://www.w3.org/1999/xhtml", "alpha");
hc_entitiessetnameditemns1.java 31 * An attempt to add an element to the named node map returned by entities should
60 NamedNodeMap entities; local
71 entities = docType.getEntities();
72 assertNotNull("entitiesNotNull", entities);
76 retval = entities.setNamedItemNS(elem);
namednodemapgetnameditemns01.java 35 * from a NamedNodeMap of this DocumentTypes entities and notations.
36 * Both should be null since entities and notations are not namespaced.
74 NamedNodeMap entities; local
84 entities = docType.getEntities();
85 assertNotNull("entitiesNotNull", entities);
88 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
namednodemapremovenameditemns05.java 74 NamedNodeMap entities; local
81 entities = docType.getEntities();
82 assertNotNull("entitiesNotNull", entities);
87 removedNode = entities.removeNamedItemNS(nullNS, "ent1");
namednodemapsetnameditemns10.java 75 NamedNodeMap entities; local
84 entities = docType.getEntities();
85 assertNotNull("entitiesNotNull", entities);
86 entity = (Entity) entities.getNamedItem("ent1");
namednodemapsetnameditemns05.java 74 NamedNodeMap entities; local
83 entities = docType.getEntities();
84 assertNotNull("entitiesNotNull", entities);
87 entity = (Entity) entities.getNamedItem("ent1");
93 newNode = entities.setNamedItemNS(entity);
namednodemapsetnameditemns09.java 37 * Create a new attribute node and attempt to add it to the nodemap of entities and notations
73 NamedNodeMap entities; local
79 entities = docType.getEntities();
86 newNode = entities.setNamedItemNS(attr);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockResolver.java 28 * A helper class for resolving entities.
32 private Map<String, InputSource> entities = new HashMap<String, InputSource>(); field in class:MockResolver
35 entities.put("[" + publicId + ":" + systemId + "]", source);
39 entities.remove("[" + publicId + ":" + systemId + "]");
44 return entities.get("[" + publicId + ":" + systemId + "]");
  /external/webkit/Source/WebCore/dom/
DocumentType.idl 29 readonly attribute NamedNodeMap entities;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_html.properties 42 {http\u003a//xml.apache.org/xalan}entities=org/apache/xml/serializer/HTMLEntities
output_xml.properties 45 {http\u003a//xml.apache.org/xalan}entities=org/apache/xml/serializer/XMLEntities
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
entities01.js 81 Normalize document with entities set to true, check that
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-entities
102 var entities;
113 domConfig.setParameter("entities", true);
131 entities = doctype.entities;
133 ent2 = entities.getNamedItem("ent2");
entities02.js 81 Normalize document with entities set to false, check that
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-entities
103 var entities;
114 domConfig.setParameter("entities", false);
135 entities = doctype.entities;
137 ent2 = entities.getNamedItem("ent2");
entities04.js 81 Normalize document using Node.normalize checking that "entities" parameter is ignored.
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-entities
101 var entities;
112 domConfig.setParameter("entities", false);
130 entities = doctype.entities;
132 ent2 = entities.getNamedItem("ent2");
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_entitiessetnameditem1.js 79 An attempt to add an element to the named node map returned by entities should
90 var entities;
111 entities = docType.entities;
113 assertNotNull("entitiesNotNull",entities);
117 retval = entities.setNamedItem(elem);
  /external/webkit/LayoutTests/dom/html/level2/core/
hc_entitiessetnameditemns1.js 78 An attempt to add an element to the named node map returned by entities should
89 var entities;
110 entities = docType.entities;
112 assertNotNull("entitiesNotNull",entities);
116 retval = entities.setNamedItemNS(elem);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_entitiessetnameditem1.js 79 An attempt to add an element to the named node map returned by entities should
90 var entities;
111 entities = docType.entities;
113 assertNotNull("entitiesNotNull",entities);
117 retval = entities.setNamedItem(elem);

Completed in 510 milliseconds

1 2 3 4 5 6 7