HomeSort by relevance Sort by last modified time
    Searched refs:entity (Results 76 - 100 of 671) sorted by null

1 2 34 5 6 7 8 91011>>

  /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;
157 HttpEntity entity = this.entitydeserializer.deserialize(this.inbuffer, request); local
158 request.setEntity(entity);
  /external/chromium-trace/catapult/dashboard/dashboard/
layered_cache.py 20 entity with the key and a BlobProperty with the pickled value.
104 entity = ndb.Key('CachedPickledString', namespaced_key).get(
106 if entity:
107 return cPickle.loads(entity.value)
117 entity = ndb.Key('CachedPickledString', namespaced_key).get(
119 if entity:
120 return cPickle.loads(entity.value)
131 days_to_keep: Number of days to keep entity in datastore, default is None.
132 Entity will not expire when this value is 0 or None.
137 # the entity and store it in datastore
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
aclhelpers.py 180 entry.entity.lower() == self.public_entity_all_users.lower()):
183 entry.entity.lower() == self.public_entity_all_auth_users.lower()):
190 entity=self.user_entity_prefix + self.identifier)
193 entity=self.group_entity_prefix + self.identifier)
196 entity=self.project_entity_prefix + self.identifier)
199 entity=self.user_entity_prefix + self.identifier)
202 entity=self.group_entity_prefix + self.identifier)
205 entity=self.domain_entity_prefix + self.identifier)
207 entry = entry_class(entity=self.public_entity_all_auth_users,
210 entry = entry_class(entity=self.public_entity_all_users, role=self.perm
    [all...]
  /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();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapsetnameditemns05.java 34 * Retreive an entity and notation node and add the first notation to the
35 * notation node map and first entity node to the entity map. Since both these
76 Entity entity; local
87 entity = (Entity) entities.getNamedItem("ent1");
93 newNode = entities.setNamedItemNS(entity);
  /external/apache-http/src/org/apache/http/entity/
ByteArrayEntity.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/ByteArrayEntity.java $
32 package org.apache.http.entity;
40 * An entity whose content is retrieved from a byte array.
87 * Tells that this entity is not streaming.
EntityTemplate.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/EntityTemplate.java $
32 package org.apache.http.entity;
39 * Entity that delegates the process of content generation to an abstract
70 throw new UnsupportedOperationException("Entity template does not implement getContent()");
  /external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
OkApacheClient.java 25 import org.apache.http.entity.InputStreamEntity;
61 HttpEntity entity = ((HttpEntityEnclosingRequest) request).getEntity(); local
62 if (entity != null) {
63 // Wrap the entity in a custom Body which takes care of the content, length, and type.
64 body = new HttpEntityBody(entity, contentType);
66 Header encoding = entity.getContentEncoding();
85 InputStreamEntity entity = new InputStreamEntity(body.byteStream(), body.contentLength()); local
86 httpResponse.setEntity(entity);
94 entity.setContentType(value);
96 entity.setContentEncoding(value)
    [all...]
  /external/apache-http/android/src/android/net/http/
AndroidHttpClient.java 37 import org.apache.http.entity.AbstractHttpEntity;
38 import org.apache.http.entity.ByteArrayEntity;
210 * Gets the input stream from a response entity. If the entity is gzipped
213 * @param entity the entity whose content should be read
217 public static InputStream getUngzippedContent(HttpEntity entity)
219 InputStream responseStream = entity.getContent();
221 Header header = entity.getContentEncoding();
294 * Creates a Http Entity holding the gzipped data
301 AbstractHttpEntity entity; local
441 HttpEntity entity = entityRequest.getEntity(); local
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 26 import org.apache.http.client.entity.UrlEncodedFormEntity;
110 final HttpEntity entity; local
112 entity = new UrlEncodedFormEntity(params);
119 post.addHeader(entity.getContentType());
120 post.setEntity(entity);
185 HttpEntity entity = new UrlEncodedFormEntity(params); local
190 post.addHeader(entity.getContentType());
191 post.setEntity(entity);
  /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/catapult/dashboard/dashboard/models/
sheriff_test.py 28 # will be raised while creating the entity
43 entity = sheriff.Sheriff(internal_only=True, email='x@notgoogle.com')
45 entity.put()
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
named_entity_trie.js 3 //NOTE: this file contains auto generated trie structure that is used for named entity references consumption
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
CounterComparator.java 86 * entity based on this counter sorting criteria.
88 * @param entity
89 * counter entity to sort on
92 public NodeComparator on(final CounterEntity entity) {
93 return new NodeComparator(this, entity);
  /external/mesa3d/src/gallium/targets/xorg-i915/
intel_xorg.c 131 EntityInfoPtr entity; local
141 entity = xf86GetEntityInfo(entity_num);
  /external/mesa3d/src/gallium/targets/xorg-r300/
xorg.c 132 EntityInfoPtr entity; local
142 entity = xf86GetEntityInfo(entity_num);
  /external/mesa3d/src/gallium/targets/xorg-r600/
xorg.c 132 EntityInfoPtr entity; local
142 entity = xf86GetEntityInfo(entity_num);
  /external/mesa3d/src/gallium/targets/xorg-radeonsi/
xorg.c 132 EntityInfoPtr entity; local
142 entity = xf86GetEntityInfo(entity_num);
  /libcore/luni/src/test/java/libcore/java/security/cert/
PKIXRevocationCheckerTest.java 23 PrivateKeyEntry entity; field in class:PKIXRevocationCheckerTest
40 entity = server.getPrivateKey("RSA", "RSA");
55 byte[] goodOCSPResponse = TestKeyStore.getOCSPResponseForGood(entity, issuer);
58 .singletonMap((X509Certificate) entity.getCertificate(), goodOCSPResponse);
63 byte[] returnedResponse = returnedResponses.get(entity.getCertificate());
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_interface.c 1416 struct media_entity_desc entity; local
1574 struct media_entity_desc entity; local
1641 struct media_entity_desc entity; local
    [all...]
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_interface.c 1416 struct media_entity_desc entity; local
1574 struct media_entity_desc entity; local
1641 struct media_entity_desc entity; local
    [all...]
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_interface.c 1342 struct media_entity_desc entity; local
1444 struct media_entity_desc entity; local
1511 struct media_entity_desc entity; local
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpService.java 50 import org.apache.http.entity.ByteArrayEntity;
197 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local
198 if (entity != null) {
199 entity.consumeContent();
233 ByteArrayEntity entity = new ByteArrayEntity(msg); local
234 entity.setContentType("text/plain; charset=US-ASCII");
235 response.setEntity(entity);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
BulletWorld.java 88 public void add (final BulletEntity entity) {
89 super.add(entity);
90 if (entity.body != null) {
91 if (entity.body instanceof btRigidBody)
92 ((btDiscreteDynamicsWorld)collisionWorld).addRigidBody((btRigidBody)entity.body);
94 collisionWorld.addCollisionObject(entity.body);
95 // Store the index of the entity in the collision object.
96 entity.body.setUserValue(entities.size - 1);
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
HurlStack.java 29 import org.apache.http.entity.BasicHttpEntity;
151 BasicHttpEntity entity = new BasicHttpEntity(); local
158 entity.setContent(inputStream);
159 entity.setContentLength(connection.getContentLength());
160 entity.setContentEncoding(connection.getContentEncoding());
161 entity.setContentType(connection.getContentType());
162 return entity;

Completed in 719 milliseconds

1 2 34 5 6 7 8 91011>>