/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodereplacechild25.js | 80 with an Entity node and with itself and verify if a HIERARCHY_REQUEST_ERR gets thrown. 92 var entity; 108 entity = entities.getNamedItem("alpha"); 117 replaced = elem.replaceChild(entity,entRef);
|
/frameworks/base/core/jni/ |
android_backup_BackupDataInput.cpp | 50 readNextHeader_native(JNIEnv* env, jobject clazz, int r, jobject entity) 76 // TODO: Set the fields in the entity object 78 env->SetObjectField(entity, s_keyField, keyStr); 79 env->SetIntField(entity, s_dataSizeField, dataSize);
|
/frameworks/support/volley/src/com/android/volley/toolbox/ |
HttpClientStack.java | 29 import org.apache.http.entity.ByteArrayEntity; 72 HttpEntity entity; local 73 entity = new ByteArrayEntity(postBody); 74 postRequest.setEntity(entity);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
documenttypegetentitiestype.java | 32 * method implements the Entity interface. 67 Node entity; local 75 entity = (Node) entityList.item(indexN10049); 76 entityType = (int) entity.getNodeType();
|
entitygetentityname.java | 32 * contains the name of the entity. 34 * Retrieve the entity named "ent1" and access its name by 67 Entity entityNode; 74 entityNode = (Entity) entityList.getNamedItem("ent1");
|
/packages/apps/Email/src/org/apache/james/mime4j/message/ |
MemoryBinaryBody.java | 46 private Entity parent = null;
68 public Entity getParent() {
73 * @see org.apache.james.mime4j.message.AbstractBody#setParent(org.apache.james.mime4j.message.Entity)
75 public void setParent(Entity parent) {
|
TempFileBinaryBody.java | 45 private Entity parent = null;
67 public Entity getParent() {
72 * @see org.apache.james.mime4j.message.AbstractBody#setParent(org.apache.james.mime4j.message.Entity)
74 public void setParent(Entity parent) {
|
/frameworks/base/core/java/android/app/backup/ |
AbsoluteFileBackupHelper.java | 64 * Restore one absolute file entity from the restore stream 67 if (DEBUG) Log.d(TAG, "got entity '" + data.getKey() + "' size=" + data.size());
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
EntityImpl.java | 19 import org.w3c.dom.Entity; 32 public class EntityImpl extends NodeImpl implements Entity {
|
/libcore/luni/src/main/java/org/xml/sax/ |
SAXParseException.java | 108 * @param publicId The public identifier of the entity that generated 110 * @param systemId The system identifier of the entity that generated 139 * @param publicId The public identifier of the entity that generated 141 * @param systemId The system identifier of the entity that generated 160 * @param publicId The public identifier of the entity which generated the exception, 162 * @param systemId The system identifier of the entity which generated the exception, 178 * Get the public identifier of the entity where the exception occurred. 191 * Get the system identifier of the entity where the exception occurred.
|
/libcore/luni/src/main/java/org/xml/sax/ext/ |
LexicalHandler.java | 116 * the external DTD subset has the pseudo-entity name "[dtd]".</p> 119 * events must be properly nested within start/end entity 129 * entity boundaries cannot be reported under any 138 * the original entity boundaries were.</p> 145 * @param name The name of the entity. If it is a parameter 146 * entity, the name will begin with '%', and if it is the 158 * Report the end of an entity. 160 * @param name The name of the entity that is ending.
|
/external/apache-http/src/org/apache/http/entity/ |
BasicHttpEntity.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/BasicHttpEntity.java $ 32 package org.apache.http.entity; 39 * A generic streamed entity being received on a connection. 54 * Creates a new basic entity. 92 * Tells that this entity is not repeatable. 142 content.close(); // reads to the end of the entity
|
/external/apache-http/src/org/apache/http/impl/ |
AbstractHttpServerConnection.java | 44 import org.apache.http.impl.entity.EntityDeserializer; 45 import org.apache.http.impl.entity.EntitySerializer; 46 import org.apache.http.impl.entity.LaxContentLengthStrategy; 47 import org.apache.http.impl.entity.StrictContentLengthStrategy; 152 HttpEntity entity = this.entitydeserializer.deserialize(this.inbuffer, request); local 153 request.setEntity(entity);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documentimportnode20.java | 39 * Using the method importNode with deep=true, import a entity node ent4 40 * from this document to a new document object. The replacement text of this entity is an element 85 Entity entity4; 86 Entity entityImp4; 102 entity4 = (Entity) nodeMap.getNamedItem("ent4"); 103 entityImp4 = (Entity) docImp.importNode(entity4, true);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
NamedNodeMapGetNamedItemNS.java | 34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation 84 // Entity entity; 95 // entity = (Entity) entities.getNamedItemNS(nullNS, "ent1"); 96 // assertNotNull("entityNull", entity);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
ContactLoader.java | 12 import android.content.Entity; 43 public ArrayList<Entity> entities; 120 ArrayList<Entity> entities = Lists.newArrayList(); 124 Entity entity = iterator.next(); local 125 entities.add(entity);
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerHandlerImpl.java | 234 * Filter an external entity resolution. 236 * @param publicId The entity's public identifier, or null. 237 * @param systemId The entity's system identifier. 287 * Filter an unparsed entity declaration event. 289 * @param name The entity name. 290 * @param publicId The entity's public identifier, or null. 291 * @param systemId The entity's system identifier, or null. 599 * Filter a skipped entity event. 601 * @param name The name of the skipped entity. 801 * Report the beginning of an entity in content [all...] |
/external/libxml2/ |
legacy.c | 615 * [ WFC: Entity Declared ] 616 * the Name given in the entity reference must match that in an entity 620 * [ WFC: Parsed Entity ] 621 * An entity reference must not contain the name of an unparsed entity 647 * @entity: an XML entity pointer. 657 xmlEntityPtr entity ATTRIBUTE_UNUSED) 906 * @publicId: The public ID of the entity [all...] |
/external/expat/doc/ |
xmlwf.sgml | 13 <!ENTITY dhfirstname "<firstname>Scott</firstname>"> 14 <!ENTITY dhsurname "<surname>Bronson</surname>"> 16 <!ENTITY dhdate "<date>December 5, 2001</date>"> 19 <!ENTITY dhsection "<manvolnum>1</manvolnum>"> 20 <!ENTITY dhemail "<email>bronson@rinspin.com</email>"> 21 <!ENTITY dhusername "Scott Bronson"> 22 <!ENTITY dhucpackage "<refentrytitle>XMLWF</refentrytitle>"> 23 <!ENTITY dhpackage "xmlwf"> 25 <!ENTITY debian "<productname>Debian GNU/Linux</productname>"> 26 <!ENTITY gnu "<acronym>GNU</acronym>" [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/ |
EntityDeltaTests.java | 30 import android.content.Entity; 67 public static Entity getEntity(long contactId, long phoneId) { 79 final Entity before = new Entity(contact); 88 * "before" {@link Entity}. 91 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); 101 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); 119 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); 133 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); 208 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID) [all...] |
/external/expat/lib/ |
xmlparse.c | 201 } ENTITY; 267 /* false once a parameter entity reference has been skipped */ 293 ENTITY *entity; member in struct:open_internal_entity 334 processInternalEntity(XML_Parser parser, ENTITY *entity, 512 ENTITY *m_declEntity; 688 parsers (i.e. external entity parsers) will inherit it 2227 ENTITY *entity; local 3832 ENTITY *entity = (ENTITY *)lookup(&dtd->paramEntities, local 3876 ENTITY *entity = (ENTITY *)lookup(&dtd->paramEntities, local 4373 ENTITY *entity; local 4745 ENTITY *entity; local 4888 ENTITY *entity; local 5004 ENTITY *entity; local [all...] |
/bionic/linker/ |
NOTICE | 25 "Licensor" shall mean the copyright owner or entity authorized by 28 "Legal Entity" shall mean the union of the acting entity and all 30 control with that entity. For the purposes of this definition, 32 direction or management of such entity, whether by contract or 34 outstanding shares, or (iii) beneficial ownership of such entity. 36 "You" (or "Your") shall mean an individual or Legal Entity 65 or by an individual or Legal Entity authorized to submit on behalf of 75 "Contributor" shall mean Licensor and any individual or Legal Entity 95 institute patent litigation against any entity (including [all...] |
/bootable/recovery/ |
NOTICE | 25 "Licensor" shall mean the copyright owner or entity authorized by 28 "Legal Entity" shall mean the union of the acting entity and all 30 control with that entity. For the purposes of this definition, 32 direction or management of such entity, whether by contract or 34 outstanding shares, or (iii) beneficial ownership of such entity. 36 "You" (or "Your") shall mean an individual or Legal Entity 65 or by an individual or Legal Entity authorized to submit on behalf of 75 "Contributor" shall mean Licensor and any individual or Legal Entity 95 institute patent litigation against any entity (including [all...] |
/dalvik/ |
NOTICE | 25 "Licensor" shall mean the copyright owner or entity authorized by 28 "Legal Entity" shall mean the union of the acting entity and all 30 control with that entity. For the purposes of this definition, 32 direction or management of such entity, whether by contract or 34 outstanding shares, or (iii) beneficial ownership of such entity. 36 "You" (or "Your") shall mean an individual or Legal Entity 65 or by an individual or Legal Entity authorized to submit on behalf of 75 "Contributor" shall mean Licensor and any individual or Legal Entity 95 institute patent litigation against any entity (including [all...] |
/dalvik/dexdump/ |
NOTICE | 25 "Licensor" shall mean the copyright owner or entity authorized by 28 "Legal Entity" shall mean the union of the acting entity and all 30 control with that entity. For the purposes of this definition, 32 direction or management of such entity, whether by contract or 34 outstanding shares, or (iii) beneficial ownership of such entity. 36 "You" (or "Your") shall mean an individual or Legal Entity 65 or by an individual or Legal Entity authorized to submit on behalf of 75 "Contributor" shall mean Licensor and any individual or Legal Entity 95 institute patent litigation against any entity (including [all...] |