/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/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentType.idl | 25 [MeasureAs=DocumentTypeEntities] readonly attribute NamedNodeMap entities; // Removed from DOM4.
|
/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/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),
|
sync_directory_commit_contribution.h | 81 const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity>& entities,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
saxutils.py | 23 def escape(data, entities={}): 27 the optional entities parameter. The keys and values must all be 35 if entities: 36 data = __dict_replace(data, entities) 39 def unescape(data, entities={}): 43 the optional entities parameter. The keys and values must all be 48 if entities: 49 data = __dict_replace(data, entities) 53 def quoteattr(data, entities={}): 61 the optional entities parameter. The keys and values must all b [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
saxutils.py | 23 def escape(data, entities={}): 27 the optional entities parameter. The keys and values must all be 35 if entities: 36 data = __dict_replace(data, entities) 39 def unescape(data, entities={}): 43 the optional entities parameter. The keys and values must all be 48 if entities: 49 data = __dict_replace(data, entities) 53 def quoteattr(data, entities={}): 61 the optional entities parameter. The keys and values must all b [all...] |
/external/chromium_org/third_party/markupsafe/ |
__init__.py | 125 known HTML4 and XHTML entities: 147 also resolves known HTML4 and XHTML entities. Whitespace is
|
/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);
|