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

1 2

  /dalvik/libcore/xml/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/WebCore/dom/
DocumentType.h 40 NamedNodeMap* entities() const { return m_entities.get(); } function in class:WebCore::DocumentType
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
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);
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");
  /dalvik/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");
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);
namednodemapsetnameditemns10.java 75 NamedNodeMap entities; local
84 entities = docType.getEntities();
85 assertNotNull("entitiesNotNull", entities);
86 entity = (Entity) entities.getNamedItem("ent1");
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 46 * entities = false
115 PARAMETERS.put("entities", new BooleanParameter() {
117 return config.entities;
120 config.entities = (Boolean) value;
142 * entities = false
158 return !config.entities
170 config.entities = false;
292 private boolean entities = true; field in class:DOMConfigurationImpl
379 * following "supported" parameters: datatype-normalization, entities,
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 59 * The name of the HTML entities file.
66 * The name of the XML entities file.
87 /** This flag is an optimization for HTML entities. It false if entities
179 ResourceBundle entities = null; local
194 entities = PropertyResourceBundle.getBundle(entitiesResource);
198 if (entities != null) {
199 Enumeration keys = entities.getKeys();
202 String value = entities.getString(name);
349 * <p>Unlike internal entities, character references are a string to singl
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 1136 NamedNodeMap entities = doctype.getEntities(); local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 1426 NamedNodeMap entities = doctype.getEntities(); local
    [all...]
  /external/quake/quake/src/QW/client/
protocol.h 271 entity_state_t entities[MAX_PACKET_ENTITIES]; member in struct:__anon5052
  /external/quake/quake/src/WinQuake/
model.h 362 char *entities; member in struct:model_s
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 99 /** Keeps track if we are in an entity reference when entities=true */
159 // Parameter entities, true [required] (default)
160 private final static int ENTITIES = 0x1 << 6;
1669 NamedNodeMap entities = docType.getEntities(); local
    [all...]
  /external/libxml2/include/libxml/
tree.h 46 /* entities.h */
382 void *entities; /* Hash table for entities if any */ member in struct:_xmlDtd
385 void *pentities; /* Hash table for param entities if any */
    [all...]

Completed in 448 milliseconds

1 2