HomeSort by relevance Sort by last modified time
    Searched full:entities (Results 26 - 50 of 1355) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/encoding/
latin1-winlatin-expected.txt 3 As entities: ????
  /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");
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");
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);
documenttypegetentities.java 32 * the general entities for this document.
35 * a NamedNodeMap of all its entities. The entire map is
36 * traversed and the names of the entities are retrieved.
37 * There should be 5 entities. Duplicates should be ignored.
hc_entitiesremovenameditem1.java 62 NamedNodeMap entities; local
72 entities = docType.getEntities();
73 assertNotNull("entitiesNotNull", entities);
78 retval = entities.removeNamedItem("alpha");
nodeentitysetnodevalue.java 61 NamedNodeMap entities; local
67 entities = docType.getEntities();
68 assertNotNull("entitiesNotNull", entities);
69 entityNode = entities.getNamedItem("ent1");
  /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_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);
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");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCEntitiesRemoveNamedItemNS.java 70 // NamedNodeMap entities;
78 // entities = docType.getEntities();
79 // assertNotNull("entitiesNotNull", entities);
82 // entities.removeNamedItemNS(
NamedNodeMapSetNamedItemNS.java 194 // NamedNodeMap entities;
201 // entities = docType.getEntities();
202 // assertNotNull("entitiesNotNull", entities);
205 // entity = (Entity) entities.getNamedItem("ent1");
211 // entities.setNamedItemNS(entity);
311 // NamedNodeMap entities;
316 // entities = docType.getEntities();
323 // entities.setNamedItemNS(attr);
345 // NamedNodeMap entities;
354 // entities = docType.getEntities()
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 98 // Only allow allocation of preprocessed entities using the allocator
118 // Make vanilla 'new' and 'delete' illegal for preprocessed entities.
275 /// preprocessed entities that \p Range encompasses.
296 /// \brief The set of preprocessed entities in this record, in order they
300 /// \brief The set of preprocessed entities in this record that have been
308 /// Negative values are used to indicate preprocessed entities
310 /// indicate preprocessed entities introduced by the current preprocessor.
311 /// Value -1 corresponds to element 0 in the loaded entities vector,
312 /// value -2 corresponds to element 1 in the loaded entities vector, etc.
313 /// Value 0 is an invalid value, the index to local entities is 1-based
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
DocumentType.java 19 * to the list of entities that are defined for the document, and little
34 * A <code>NamedNodeMap</code> containing the general entities, both
35 * external and internal, declared in the DTD. Parameter entities are
45 * <br>The DOM Level 2 does not support editing entities, therefore
46 * <code>entities</code> cannot be altered in any way.
  /libcore/luni/src/main/java/org/xml/sax/ext/
LexicalHandler.java 105 * Report the beginning of some internal and external XML entities.
107 * <p>The reporting of parameter entities (including
111 * >http://xml.org/sax/features/lexical-handler/parameter-entities</code>
112 * feature to query or control the reporting of parameter entities.</p>
114 * <p>General entities are reported with their regular names,
115 * parameter entities have '%' prepended to their names, and
124 * <p>Note that skipped entities will be reported through the
133 * <li>general entities within attribute values</li>
134 * <li>parameter entities within declarations</li>
141 * are not really entities anyway) are not reported.</p
    [all...]
  /external/valgrind/main/docs/xml/
dist-docs.xml 4 [ <!ENTITY % vg-entities SYSTEM "vg-entities.xml"> %vg-entities; ]>
index.xml 4 [ <!ENTITY % vg-entities SYSTEM "vg-entities.xml"> %vg-entities; ]>
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfigentities1.js 71 * Checks behavior of "entities" configuration parameter.
73 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-entities
87 var parameter = "eNtIties";
domconfigurationcansetparameter03.js 81 The parameter entities is turned on by default. Check to see if this feature can be set
83 value of parameter by checking if entities still exist in the document.
109 canSet = domConfig.canSetParameter("entities",false);
114 entitiesMap = docType.entities;
infoset01.js 103 var entities;
135 entities = doctype.entities;
137 ent2 = entities.getNamedItem("ent2");
nodegetfeature12.js 93 var entities;
104 entities = doctype.entities;
106 node = entities.getNamedItem("ent1");
nodegetuserdata05.js 91 var entities;
107 entities = docType.entities;
109 entity = entities.getNamedItem("delta");
nodereplacechild25.js 91 var entities;
106 entities = docType.entities;
108 entity = entities.getNamedItem("alpha");
nodesetuserdata06.js 93 var entities;
110 entities = docType.entities;
112 entity = entities.getNamedItem("delta");

Completed in 295 milliseconds

12 3 4 5 6 7 8 91011>>