/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...] |
EntityResolver2.java | 31 * interface defines for external entities, it must ensure that it uses 98 * of local caches of DTD entities. Also, this method will never be 100 * parameter entities. </p> 104 * undesirable network accesses for external entities, or which for 112 * the input document. By providing definitions for general entities, 137 * Allows applications to map references to external entities into input 139 * This method is only called for external entities which have been 153 * a class of entities (parameter or general) through use of feature 154 * flags, this method is not invoked for such entities. </p> 178 * entities, and any external subset, are resolved by such parsers [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; ]>
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
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...] |
GetNamedItemNS.java | 90 // NamedNodeMap entities; 96 // entities = docType.getEntities(); 97 // assertNotNull("entitiesNotNull", entities); 98 // entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
|
NamedNodeMapGetNamedItemNS.java | 35 * "notation1" from a NamedNodeMap of this DocumentTypes entities and notations. 36 * Both should be null since entities and notations are not namespaced. 82 // NamedNodeMap entities; 91 // entities = docType.getEntities(); 92 // assertNotNull("entitiesNotNull", entities); 95 // entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
|
/external/clang/docs/ |
SanitizerSpecialCaseList.rst | 12 sanitizer tools for certain source-level entities by providing a special 20 certain source-level entities to: 27 To achieve this, user may create a file listing the entities he wants to 55 expression, specifying the names of the entities, optionally followed by
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
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/ |
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");
|
namednodemapremovenameditemns05.java | 74 NamedNodeMap entities; local 81 entities = docType.getEntities(); 82 assertNotNull("entitiesNotNull", entities); 87 removedNode = entities.removeNamedItemNS(nullNS, "ent1");
|
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");
|
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);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
handler.py | 197 skipped. Non-validating processors may skip entities if they 200 may skip external entities, depending on the values of the 201 http://xml.org/sax/features/external-general-entities and the 202 http://xml.org/sax/features/external-parameter-entities 212 parsing (unparsed entities and attributes).""" 224 """Basic interface for resolving entities. If you create an object 227 resolve all external entities. Note that DefaultHandler implements 263 # true: Report all validation errors (implies external-general-entities and 264 # external-parameter-entities). 268 feature_external_ges = "http://xml.org/sax/features/external-general-entities" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
handler.py | 197 skipped. Non-validating processors may skip entities if they 200 may skip external entities, depending on the values of the 201 http://xml.org/sax/features/external-general-entities and the 202 http://xml.org/sax/features/external-parameter-entities 212 parsing (unparsed entities and attributes).""" 224 """Basic interface for resolving entities. If you create an object 227 resolve all external entities. Note that DefaultHandler implements 263 # true: Report all validation errors (implies external-general-entities and 264 # external-parameter-entities). 268 feature_external_ges = "http://xml.org/sax/features/external-general-entities" [all...] |
/external/expat/doc/ |
xmlwf.1 | 55 external entities (see the \fB-x\fR option). 114 entities. 117 entities. \fB-p\fR tells it to always parse them. 138 references to parameter entities. 162 Turns on parsing external entities. 165 entities, or even expand entities at all. 166 Expat always expands internal entities (?), 169 External entities are simply entities that obtain thei [all...] |
/external/chromium_org/third_party/libxml/src/ |
entities.c | 2 * entities.c : implementation for the XML entities handling 18 #include <libxml/entities.h> 26 * The XML predefined entities. 198 * xmlAddEntity : register a new entity for an entities table. 219 if (dtd->entities == NULL) 220 dtd->entities = xmlHashCreateDict(0, dict); 221 table = dtd->entities; 425 * @parameter: look for parameter entities 484 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) [all...] |
TODO | 29 - Better checking of external parsed entities TAG 1234 49 because of these string functions: entities.o, global.o, hash.o, tree.o, 98 - Add a DTD cache prefilled with xhtml DTDs and entities and a program to 143 Attributes are no problems since entities are accepted. 168 - Validity checking problems for ENTITY ENTITIES attributes 172 - extend validity checks to go through entities content instead of 180 - correct checking of '&' '%' on entities content. 181 - checking of PE/Nesting on entities declaration 190 - Allow parsed entities defined in the internal subset to override 213 - External entities loading: [all...] |
/external/libxml2/ |
entities.c | 2 * entities.c : implementation for the XML entities handling 18 #include <libxml/entities.h> 26 * The XML predefined entities. 198 * xmlAddEntity : register a new entity for an entities table. 219 if (dtd->entities == NULL) 220 dtd->entities = xmlHashCreateDict(0, dict); 221 table = dtd->entities; 425 * @parameter: look for parameter entities 484 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) [all...] |
/external/chromium_org/sync/engine/ |
sync_directory_commit_contribution.cc | 35 google::protobuf::RepeatedPtrField<sync_pb::SyncEntity> entities; 38 sync_pb::SyncEntity* entity = entities.Add(); 44 return new SyncDirectoryCommitContribution(metahandles, entities, dir); 145 const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity>& entities, 149 entities_(entities),
|
/external/libvpx/libvpx/examples/ |
gen_example_doxy.php | 58 // Decode XML entities. GeSHi doesn't anticipate that 66 // Un-encode ampersand entities 111 * encoded entities to ordinary characters, since a 121 $entities = array ('|&|' variable 129 $input = preg_replace($entities, $characters, $input);
|
/libcore/luni/src/main/java/org/w3c/dom/ |
Entity.java | 20 * <p>An XML processor may choose to completely expand entities before the 25 * parameter entities. This means that parsed entities declared in the 60 * For unparsed entities, the name of the notation for the entity. For 61 * parsed entities, this is <code>null</code>.
|