HomeSort by relevance Sort by last modified time
    Searched full:entity (Results 1751 - 1775 of 3175) sorted by null

<<71727374757677787980>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/
libexpat.so.1 
libexpat.so.1.5.2 
  /prebuilts/tools/common/http-client/src/
httpcomponents-core-4.1-src.zip 
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 52 * request entity can be determined without closing the connection.
96 // Check for a self-terminating entity. If the end of the entity will
98 HttpEntity entity = response.getEntity();
100 if (entity != null) {
101 if (entity.getContentLength() < 0) {
102 if (!entity.isChunked() ||
  /external/apache-http/src/org/apache/http/protocol/
HttpService.java 50 import org.apache.http.entity.ByteArrayEntity;
192 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local
193 if (entity != null) {
194 entity.consumeContent();
228 ByteArrayEntity entity = new ByteArrayEntity(msg); local
229 entity.setContentType("text/plain; charset=US-ASCII");
230 response.setEntity(entity);
RequestExpectContinue.java 66 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local
68 if (entity != null && entity.getContentLength() != 0) {
  /external/quake/quake/src/QW/client/
r_efrag.c 33 ENTITY FRAGMENT FUNCTIONS
121 ef->entity = r_addent;
123 // add the entity link
248 pent = pefrag->entity;
256 pent = pefrag->entity;
263 // mark that we've recorded this entity for this frame
271 Sys_Error ("R_StoreEfrags: Bad entity type %d\n", clmodel->type);
  /external/quake/quake/src/QW/progs/
subs.qc 53 void(entity ent, vector tdest, float tspeed, void() func) SUB_CalcMoveEnt =
55 local entity stemp;
126 void(entity ent, vector destangle, float tspeed, void() func) SUB_CalcAngleMoveEnt =
128 local entity stemp;
191 the global "activator" should be set to the entity that initiated the firing.
193 If self.delay is set, a DelayedUse entity will be created that will actually
208 local entity t, stemp, otemp, act;
  /external/quake/quake/src/WinQuake/
r_efrag.cpp 33 ENTITY FRAGMENT FUNCTIONS
121 ef->entity = r_addent;
123 // add the entity link
248 pent = pefrag->entity;
256 pent = pefrag->entity;
263 // mark that we've recorded this entity for this frame
271 Sys_Error ("R_StoreEfrags: Bad entity type %d\n", clmodel->type);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactDeletionInteraction.java 41 import android.provider.ContactsContract.Contacts.Entity;
60 Entity.RAW_CONTACT_ID, //0
61 Entity.ACCOUNT_TYPE, //1
62 Entity.DATA_SET, // 2
63 Entity.CONTACT_ID, // 3
64 Entity.LOOKUP_KEY, // 4
212 Uri.withAppendedPath(contactUri, Entity.CONTENT_DIRECTORY), ENTITY_PROJECTION,
  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
PeopleActivityTest.java 229 Contacts.getLookupUri(contactId, lookupKey), Contacts.Entity.CONTENT_DIRECTORY);
231 row1.put(Contacts.Entity.DATA_ID, 1);
232 row1.put(Contacts.Entity.LOOKUP_KEY, lookupKey);
233 row1.put(Contacts.Entity.CONTACT_ID, contactId);
234 row1.put(Contacts.Entity.DISPLAY_NAME, "Contact " + contactId);
235 row1.put(Contacts.Entity.ACCOUNT_NAME, TEST_ACCOUNT);
236 row1.put(Contacts.Entity.ACCOUNT_TYPE, TEST_ACCOUNT_TYPE);
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java 28 import android.content.Entity;
29 import android.content.Entity.NamedContentValues;
48 * Contains an {@link Entity} and records any modifications separately so the
49 * original {@link Entity} can be swapped out with a newer version and the
53 * empty {@link Entity}, which then becomes an insert {@link RawContacts} case.
55 * When applying modifications over an {@link Entity}, we try finding the
57 * rows are missing from the new {@link Entity}, we know the original data must
67 * Direct values from {@link Entity#getEntityValues()}.
78 * Internal map of children values from {@link Entity#getSubValues()}, which
91 * Build an {@link EntityDelta} using the given {@link Entity} as
95 final EntityDelta entity = new EntityDelta(); local
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 25 import android.content.Entity;
27 import android.content.Entity.NamedContentValues;
44 * Contains an {@link Entity} and records any modifications separately so the
45 * original {@link Entity} can be swapped out with a newer version and the
49 * empty {@link Entity}, which then becomes an insert {@link RawContacts} case.
51 * When applying modifications over an {@link Entity}, we try finding the
53 * rows are missing from the new {@link Entity}, we know the original data must
63 * Direct values from {@link Entity#getEntityValues()}.
68 * Internal map of children values from {@link Entity#getSubValues()}, which
81 * Build an {@link EntityDelta} using the given {@link Entity} as
85 final EntityDelta entity = new EntityDelta(); local
    [all...]
  /external/quake/quake/src/QW/server/
pr_cmds.c 116 setorigin (entity, origin)
137 setsize (entity, minvector, maxvector)
159 setmodel(entity, model)
464 Each entity can have eight independant sound sources, like voice,
468 allready running on that entity/channel pair.
479 edict_t *entity; local
483 entity = G_EDICT(OFS_PARM0);
489 SV_StartSound (entity, channel, sample, volume, attenuation);
549 Returns true if the given entity can move to the given position from it's
552 scalar checkpos (entity, vector
    [all...]
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 20 import android.content.Entity;
236 private Entity setupTestEventEntity(String organizer, String attendee, String title) {
237 // Create an Entity for an Event
239 Entity entity = new Entity(entityValues); local
260 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
266 entity.addSubValue(Attendees.CONTENT_URI, organizerValues);
267 return entity;
270 private Entity setupTestExceptionEntity(String organizer, String attendee, String title)
271 Entity entity = setupTestEventEntity(organizer, attendee, title); local
283 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
325 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
391 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
455 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
532 Entity entity = setupTestExceptionEntity(ORGANIZER, ATTENDEE, title); local
820 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 20 import android.content.Entity;
236 private Entity setupTestEventEntity(String organizer, String attendee, String title) {
237 // Create an Entity for an Event
239 Entity entity = new Entity(entityValues); local
260 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
266 entity.addSubValue(Attendees.CONTENT_URI, organizerValues);
267 return entity;
270 private Entity setupTestExceptionEntity(String organizer, String attendee, String title)
271 Entity entity = setupTestEventEntity(organizer, attendee, title); local
283 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
325 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
391 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
455 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
532 Entity entity = setupTestExceptionEntity(ORGANIZER, ATTENDEE, title); local
820 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
    [all...]
  /external/apache-http/src/org/apache/http/
HttpClientConnection.java 73 * Sends the request entity over the connection.
74 * @param request the request whose entity to send.
84 * find out if it should try to receive a response entity as well.
95 * Receives the next response entity available from this connection and
98 * @param response the response to attach the entity to
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSResourceResolver.java 27 * parameter entities, before including them. The top-level document entity
44 * within the document element (however, the top-level document entity
51 * identifiers in a catalogue, or to read an entity from a database or
63 * @param publicId The public identifier of the external entity being
65 * supplied or if the resource is not an entity.
  /sdk/eclipse/plugins/com.android.ide.eclipse.base/META-INF/
MANIFEST.MF 77 org.apache.http.client.entity,
90 org.apache.http.entity,
91 org.apache.http.entity.mime,
92 org.apache.http.entity.mime.content,
99 org.apache.http.impl.entity,
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 31 import org.apache.http.entity.ByteArrayEntity;
32 import org.apache.http.entity.FileEntity;
33 import org.apache.http.entity.InputStreamEntity;
34 import org.apache.http.entity.StringEntity;
487 ByteArrayEntity entity = new ByteArrayEntity(new byte[length]); local
488 entity.setContentType(mimeType);
490 response.setEntity(entity);
516 InputStreamEntity entity = new InputStreamEntity(in, in.available()); local
522 entity.setContentType(mimeType);
523 response.setEntity(entity);
604 StringEntity entity = new StringEntity("CACHE MANIFEST"); local
667 StringEntity entity = new StringEntity(content); local
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 44 /// \brief Base class that describes a preprocessed entity, which may be a
48 /// \brief The kind of preprocessed entity an object describes.
50 /// \brief Indicates a problem trying to load the preprocessed entity.
73 /// \brief The kind of preprocessed entity that this object describes.
76 /// \brief The source range that covers this preprocessed entity.
86 /// \brief Retrieve the kind of preprocessed entity stored in this object.
90 /// entity.
94 /// entity.
265 /// \brief Read a preallocated preprocessed entity from the external source.
268 /// entity from being loaded
    [all...]
  /external/libxml2/
parser.c 103 * XML_PARSER_NON_LINEAR is the threshold where the ratio of parsed entity
105 * and eponential behaviour. A value of 10 correspond to at least 3 entity
113 * Function to check non-linear entity expansion behaviour
114 * This is here to detect and stop exponential linear entity expansion
131 * Do the check based on the replacement size of the entity
165 * knowing an entity reference will take at least 3 bytes
232 xmlLoadEntityContent(xmlParserCtxtPtr ctxt, xmlEntityPtr entity);
321 errmsg = "Detected an entity reference loop\n";
369 errmsg = "Entity value required\n";
2430 xmlEntityPtr entity = NULL; local
7629 xmlEntityPtr entity = NULL; local
7849 xmlEntityPtr entity = NULL; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
BasicResponseHandler.java 75 HttpEntity entity = response.getEntity(); local
76 return entity == null ? null : EntityUtils.toString(entity);
  /external/chromium/chrome/browser/sync/protocol/
autofill_specifics.proto 77 // that this entity represents a classic autofill object. In this case,
83 // An autofill++ profile object. If present, indicates this entity
89 // base/nigori.h for details). If present, indicates this entity represents
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documenttypegetentities.java 86 Node entity; local
93 entity = (Node) entityList.item(indexN1007B);
94 name = entity.getNodeName();

Completed in 958 milliseconds

<<71727374757677787980>>