HomeSort by relevance Sort by last modified time
    Searched defs:entity (Results 1 - 25 of 651) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/html/
entity.go 10 // entity is a map from HTML entity names to their values. The semicolon matters:
16 var entity = map[string]rune{ var
    [all...]
  /prebuilts/go/linux-x86/src/html/
entity.go 10 // entity is a map from HTML entity names to their values. The semicolon matters:
16 var entity = map[string]rune{ var
    [all...]
  /external/apache-http/src/org/apache/http/impl/entity/
EntityDeserializer.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/entity/EntityDeserializer.java $
32 package org.apache.http.impl.entity;
40 import org.apache.http.entity.BasicHttpEntity;
41 import org.apache.http.entity.ContentLengthStrategy;
49 * Default implementation of an entity deserializer.
51 * This entity deserializer currently supports only "chunked" and "identitiy" transfer-coding</a>
80 BasicHttpEntity entity = new BasicHttpEntity(); local
84 entity.setChunked(true);
85 entity.setContentLength(-1);
86 entity.setContent(new ChunkedInputStream(inbuffer))
    [all...]
EntitySerializer.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/entity/EntitySerializer.java $
32 package org.apache.http.impl.entity;
40 import org.apache.http.entity.ContentLengthStrategy;
47 * Default implementation of an entity serializer.
49 * This entity serializer currently supports only "chunked" and "identitiy" transfer-coding</a>
91 final HttpEntity entity) throws HttpException, IOException {
98 if (entity == null) {
99 throw new IllegalArgumentException("HTTP entity may not be null");
102 entity.writeTo(outstream);
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/apache-http/src/org/apache/http/protocol/
RequestContent.java 78 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local
79 if (entity == null) {
84 if (entity.isChunked() || entity.getContentLength() < 0) {
91 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
94 if (entity.getContentType() != null && !request.containsHeader(
96 request.addHeader(entity.getContentType());
99 if (entity.getContentEncoding() != null && !request.containsHeader(
101 request.addHeader(entity.getContentEncoding());
ResponseContent.java 46 * A response interceptor that sets up entity-related headers.
78 HttpEntity entity = response.getEntity(); local
79 if (entity != null) {
80 long len = entity.getContentLength();
81 if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) {
84 response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
87 if (entity.getContentType() != null && !response.containsHeader(
89 response.addHeader(entity.getContentType());
92 if (entity.getContentEncoding() != null && !response.containsHeader(
94 response.addHeader(entity.getContentEncoding());
    [all...]
RequestExpectContinue.java 71 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local
73 if (entity != null && entity.getContentLength() != 0) {
ResponseConnControl.java 89 HttpEntity entity = response.getEntity(); local
90 if (entity != null) {
92 if (entity.getContentLength() < 0 &&
93 (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0))) {
  /external/apache-http/src/org/apache/http/entity/
ContentProducer.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/ContentProducer.java $
32 package org.apache.http.entity;
38 * An abstract entity content producer.
ContentLengthStrategy.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/ContentLengthStrategy.java $
32 package org.apache.http.entity;
BufferedHttpEntity.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/BufferedHttpEntity.java $
32 package org.apache.http.entity;
43 * A wrapping entity that buffers it content if necessary.
44 * The buffered entity is always repeatable.
45 * If the wrapped entity is repeatable itself, calls are passed through.
46 * If the wrapped entity is not repeatable, the content is read into a
64 public BufferedHttpEntity(final HttpEntity entity) throws IOException {
65 super(entity);
66 if (!entity.isRepeatable() || entity.getContentLength() < 0)
    [all...]
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()");
StringEntity.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/StringEntity.java $
32 package org.apache.http.entity;
43 * An entity whose content is retrieved from a string.
99 * Tells that this entity is not streaming.
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
DashboardEntity.java 17 package com.android.vts.entity;
19 import com.google.appengine.api.datastore.Entity;
24 * Serialize the DashboardEntity to an Entity object.
26 * @return Entity object representing the properties defined in the DashboardEntity.
28 public Entity toEntity();
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ExportTestProvider.java 20 import android.content.Entity;
42 private final List<Entity> mEntityList;
43 private Iterator<Entity> mIterator;
46 mEntityList = new ArrayList<Entity>();
47 Entity entity = new Entity(new ContentValues()); local
49 entity.addSubValue(Data.CONTENT_URI, contentValues);
51 mEntityList.add(entity);
61 public Entity next()
    [all...]
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/entity/UrlEncodedFormEntity.java $
31 package org.apache.http.client.entity;
37 import org.apache.http.entity.StringEntity;
41 * An entity composed of a list of url-encoded pairs.
  /external/apache-http/src/org/apache/http/client/methods/
HttpEntityEnclosingRequestBase.java 57 private HttpEntity entity; field in class:HttpEntityEnclosingRequestBase
64 return this.entity;
67 public void setEntity(final HttpEntity entity) {
68 this.entity = entity;
80 if (this.entity != null) {
81 clone.entity = (HttpEntity) CloneUtils.clone(this.entity);
  /external/apache-http/src/org/apache/http/impl/client/
BasicResponseHandler.java 80 HttpEntity entity = response.getEntity(); local
81 return entity == null ? null : EntityUtils.toString(entity);
EntityEnclosingRequestWrapper.java 62 private HttpEntity entity; field in class:EntityEnclosingRequestWrapper
67 this.entity = request.getEntity();
71 return this.entity;
74 public void setEntity(final HttpEntity entity) {
75 this.entity = entity;
85 return this.entity == null || this.entity.isRepeatable();
  /external/apache-http/src/org/apache/http/message/
BasicHttpEntityEnclosingRequest.java 42 * Basic implementation of a request with an entity that can be modified.
58 private HttpEntity entity; field in class:BasicHttpEntityEnclosingRequest
74 return this.entity;
77 public void setEntity(final HttpEntity entity) {
78 this.entity = 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/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
HttpEntityBody.java 13 private final HttpEntity entity; field in class:HttpEntityBody
16 HttpEntityBody(HttpEntity entity, String contentTypeHeader) {
17 this.entity = entity;
21 } else if (entity.getContentType() != null) {
22 mediaType = MediaType.parse(entity.getContentType().getValue());
24 // Apache is forgiving and lets you skip specifying a content type with an entity. OkHttp is
31 return entity.getContentLength();
39 entity.writeTo(sink.outputStream());
  /frameworks/support/room/common/src/main/java/androidx/room/
ForeignKey.java 25 * Declares a foreign key on another {@link Entity}.
32 * index in the parent entity that covers the referenced columns (Room will verify this at compile
51 * The parent Entity to reference. It must be a class annotated with {@link Entity} and
54 * @return The parent Entity.
56 Class entity(); method in interface:ForeignKey
59 * The list of column names in the parent {@link Entity}.
63 * @return The list of column names in the parent Entity.
69 * The list of column names in the current {@link Entity}.
73 * @return The list of column names in the current Entity
    [all...]

Completed in 195 milliseconds

1 2 3 4 5 6 7 8 91011>>