/packages/apps/DeskClock/src/com/android/deskclock/events/ |
EventTracker.java | 34 * @param action string resource id indicating how the entity was altered; 45 * @param action how the entity was altered; e.g. create, delete, fire, etc
|
/packages/apps/UnifiedEmail/tests/src/com/google/android/mail/common/base/ |
StringUtilTest.java | 42 // Named entity lowercase 46 // Named entity uppercase
|
/system/bt/stack/include/ |
profiles_api.h | 30 /*** Port entity passes back 8 bit errors; will use upper byte offset ***/ 31 #define PORT_ERR_GRP 0x0000 /* base offset for port entity */
|
/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. 59 * Creates a new basic entity. 97 * Tells that this entity is not repeatable. 147 content.close(); // reads to the end of the entity
|
/external/deqp/executor/ |
xeXMLWriter.cpp | 86 const char* entity = getEscapeEntity(s[inPos]); local 88 if (entity) 90 // Flush data prior to entity. 98 // Flush entity value 99 m_dst.write(entity, (std::streamsize)strlen(entity));
|
/external/libxml2/python/tests/ |
reader3.py | 16 <!ENTITY tst "<p>test</p>"> 43 print("test_normal: Error reading to the entity") 46 print("test_normal: Error reading the entity") 81 print("test_noent: Error reading to the entity content") 84 print("test_noent: Error reading the p element from entity") 116 <!ENTITY simplestruct2.ent SYSTEM "simplestruct2.ent">
|
/frameworks/volley/src/main/java/com/android/volley/toolbox/ |
HttpClientStack.java | 36 import org.apache.http.entity.ByteArrayEntity; 105 HttpEntity entity; local 106 entity = new ByteArrayEntity(postBody); 107 postRequest.setEntity(entity); 150 HttpEntity entity = new ByteArrayEntity(body); local 151 httpRequest.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/apache-http/src/org/apache/http/impl/entity/ |
StrictContentLengthStrategy.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/entity/StrictContentLengthStrategy.java $ 32 package org.apache.http.impl.entity; 39 import org.apache.http.entity.ContentLengthStrategy; 45 * This entity generator comforms to the entity transfer rules outlined in the 62 * empty line after the header fields, regardless of the entity-header fields present in the 72 * OCTETs represents both the entity-length and the transfer-length. The Content-Length 114 * has been, can be, or may need to be applied to an entity-body in order to ensure 116 * the transfer-coding is a property of the message, not of the original entity. 147 * the message, not of the entity [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/auth/ |
models.py | 27 the concept of uniqueness for entity properties. 83 entity = cls(key=model.Key(cls, value)) 84 txn = lambda: entity.put() if not entity.key.get() else None 101 # existing = [entity.key.id() for entity in entities if entity] 176 entity = cls(key=key, user=user, subject=subject, token=token) 177 entity.put() 178 return 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/Exchange/src/com/android/exchange/service/ |
EasServerConnection.java | 51 import org.apache.http.entity.ByteArrayEntity; 276 * @param entity The {@link HttpEntity} for this request. 281 public HttpPost makePost(final String uri, final HttpEntity entity, final String contentType, 288 // If there is no entity, we should not be setting a content-type since this will 290 if (contentType != null && entity != null) { 313 post.setEntity(entity); 336 * @param entity The {@link HttpEntity} containing the payload of the message. 341 protected EasResponse sendHttpClientPost(String cmd, final HttpEntity entity, 361 // If entity is null (e.g. for attachments), don't set this header 365 } else if (entity != null) 389 final ByteArrayEntity entity; local [all...] |
/external/expat/lib/ |
xmlparse.c | 203 } ENTITY; 269 /* false once a parameter entity reference has been skipped */ 295 ENTITY *entity; member in struct:open_internal_entity 336 processInternalEntity(XML_Parser parser, ENTITY *entity, 519 ENTITY *m_declEntity; 709 parsers (i.e. external entity parsers) will inherit it 2310 ENTITY *entity; local 3942 ENTITY *entity = (ENTITY *)lookup(parser, local 3987 ENTITY *entity = (ENTITY *)lookup(parser, &dtd->paramEntities, local 4485 ENTITY *entity; local 4857 ENTITY *entity; local 5000 ENTITY *entity; local 5116 ENTITY *entity; local [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/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...] |
/dalvik/dx/ |
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...] |
/developers/build/prebuilts/androidtv/leanback/ |
LICENSE | 12 "Licensor" shall mean the copyright owner or entity authorized by the copyright 15 "Legal Entity" shall mean the union of the acting entity and all other entities 16 that control, are controlled by, or are under common control with that entity. 18 indirect, to cause the direction or management of such entity, whether by 20 outstanding shares, or (iii) beneficial ownership of such entity. 22 "You" (or "Your") shall mean an individual or Legal Entity exercising 47 by the copyright owner or by an individual or Legal Entity authorized to submit 57 "Contributor" shall mean Licensor and any individual or Legal Entity on behalf 78 submitted. If You institute patent litigation against any entity (including [all...] |
/developers/build/prebuilts/androidtv/sample-inputs/ |
LICENSE | 12 "Licensor" shall mean the copyright owner or entity authorized by the copyright 15 "Legal Entity" shall mean the union of the acting entity and all other entities 16 that control, are controlled by, or are under common control with that entity. 18 indirect, to cause the direction or management of such entity, whether by 20 outstanding shares, or (iii) beneficial ownership of such entity. 22 "You" (or "Your") shall mean an individual or Legal Entity exercising 47 by the copyright owner or by an individual or Legal Entity authorized to submit 57 "Contributor" shall mean Licensor and any individual or Legal Entity on behalf 78 submitted. If You institute patent litigation against any entity (including [all...] |
/developers/build/prebuilts/androidtv/visual-game-controller/ |
LICENSE | 12 "Licensor" shall mean the copyright owner or entity authorized by the copyright 15 "Legal Entity" shall mean the union of the acting entity and all other entities 16 that control, are controlled by, or are under common control with that entity. 18 indirect, to cause the direction or management of such entity, whether by 20 outstanding shares, or (iii) beneficial ownership of such entity. 22 "You" (or "Your") shall mean an individual or Legal Entity exercising 47 by the copyright owner or by an individual or Legal Entity authorized to submit 57 "Contributor" shall mean Licensor and any individual or Legal Entity on behalf 78 submitted. If You institute patent litigation against any entity (including [all...] |
/developers/samples/android/content/WidgetData/ |
LICENSE | 12 "Licensor" shall mean the copyright owner or entity authorized by 15 "Legal Entity" shall mean the union of the acting entity and all 17 control with that entity. For the purposes of this definition, 19 direction or management of such entity, whether by contract or 21 outstanding shares, or (iii) beneficial ownership of such entity. 23 "You" (or "Your") shall mean an individual or Legal Entity 52 or by an individual or Legal Entity authorized to submit on behalf of 62 "Contributor" shall mean Licensor and any individual or Legal Entity 82 institute patent litigation against any entity (including [all...] |
/developers/samples/android/ui/transition/AdapterTransition/ |
LICENSE | 12 "Licensor" shall mean the copyright owner or entity authorized by 15 "Legal Entity" shall mean the union of the acting entity and all 17 control with that entity. For the purposes of this definition, 19 direction or management of such entity, whether by contract or 21 outstanding shares, or (iii) beneficial ownership of such entity. 23 "You" (or "Your") shall mean an individual or Legal Entity 52 or by an individual or Legal Entity authorized to submit on behalf of 62 "Contributor" shall mean Licensor and any individual or Legal Entity 82 institute patent litigation against any entity (including [all...] |