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

1 2 3 4 5 6 7 8 91011>>

  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLSchema.java 17 elements, attributes, and character entity declarations. All the declarations
    [all...]
  /external/chromium_org/sync/syncable/
syncable_proto_util.cc 19 bool IsFolder(const sync_pb::SyncEntity& entity) {
23 return ((entity.has_folder() && entity.folder()) ||
24 (entity.has_bookmarkdata() &&
25 entity.bookmarkdata().bookmark_folder()));
28 bool IsRoot(const sync_pb::SyncEntity& entity) {
29 return SyncableIdFromProto(entity.id_string()).IsRoot();
syncable_proto_util.h 30 bool IsFolder(const sync_pb::SyncEntity& entity);
34 bool IsRoot(const sync_pb::SyncEntity& entity);
  /external/apache-http/src/org/apache/http/client/methods/
HttpEntityEnclosingRequestBase.java 52 private HttpEntity entity; field in class:HttpEntityEnclosingRequestBase
59 return this.entity;
62 public void setEntity(final HttpEntity entity) {
63 this.entity = entity;
75 if (this.entity != null) {
76 clone.entity = (HttpEntity) CloneUtils.clone(this.entity);
  /external/apache-http/src/org/apache/http/impl/client/
EntityEnclosingRequestWrapper.java 57 private HttpEntity entity; field in class:EntityEnclosingRequestWrapper
62 this.entity = request.getEntity();
66 return this.entity;
69 public void setEntity(final HttpEntity entity) {
70 this.entity = entity;
80 return this.entity == null || this.entity.isRepeatable();
BasicResponseHandler.java 75 HttpEntity entity = response.getEntity(); local
76 return entity == null ? null : EntityUtils.toString(entity);
  /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>
75 BasicHttpEntity entity = new BasicHttpEntity(); local
79 entity.setChunked(true);
80 entity.setContentLength(-1);
81 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>
86 final HttpEntity entity) throws HttpException, IOException {
93 if (entity == null) {
94 throw new IllegalArgumentException("HTTP entity may not be null");
97 entity.writeTo(outstream);
  /hardware/samsung_slsi/exynos5/libv4l2/
exynos_mc.c 50 static inline unsigned int __media_entity_type(struct media_entity *entity)
52 return entity->info.type & MEDIA_ENT_TYPE_MASK;
77 static struct media_link *__media_entity_add_link(struct media_entity *entity)
79 if (entity->num_links >= entity->max_links) {
80 struct media_link *links = entity->links;
81 unsigned int max_links = entity->max_links * 2;
88 for (i = 0; i < entity->num_links; ++i)
91 entity->max_links = max_links;
92 entity->links = links
106 struct media_entity *entity = &media->entities[id - 1]; local
217 struct media_entity *entity, *temp_entity; local
349 struct media_entity *entity = &media->entities[i]; local
406 struct media_entity *entity; local
433 struct media_entity *entity = &media->entities[i]; local
521 struct media_entity *entity = &media->entities[i]; local
618 struct media_entity *entity; local
    [all...]
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 60 public static byte[] toByteArray(final HttpEntity entity) throws IOException {
61 if (entity == null) {
62 throw new IllegalArgumentException("HTTP entity may not be null");
64 InputStream instream = entity.getContent();
68 if (entity.getContentLength() > Integer.MAX_VALUE) {
69 throw new IllegalArgumentException("HTTP entity too large to be buffered in memory");
71 int i = (int)entity.getContentLength();
88 public static String getContentCharSet(final HttpEntity entity)
91 if (entity == null) {
92 throw new IllegalArgumentException("HTTP entity may not be null")
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HasCoverage.java 27 public int compare(HasCoverage entity, HasCoverage otherEntity) {
28 int diff = Math.round(entity.getCoveragePercentage())
30 return diff != 0 ? diff : entity.getName().compareTo(otherEntity.getName());
  /external/apache-http/src/org/apache/http/
HttpEntityEnclosingRequest.java 35 * A request with an entity.
48 * whether to accept the entity enclosing request before the possibly
49 * lengthy entity is sent across the wire.
56 * Hands the entity to the request.
57 * @param entity the entity to send.
59 void setEntity(HttpEntity entity);
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 73 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local
74 if (entity == null) {
79 if (entity.isChunked() || entity.getContentLength() < 0) {
86 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
89 if (entity.getContentType() != null && !request.containsHeader(
91 request.addHeader(entity.getContentType());
94 if (entity.getContentEncoding() != null && !request.containsHeader(
96 request.addHeader(entity.getContentEncoding());
ResponseContent.java 46 * A response interceptor that sets up entity-related headers.
73 HttpEntity entity = response.getEntity(); local
74 if (entity != null) {
75 long len = entity.getContentLength();
76 if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) {
79 response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
82 if (entity.getContentType() != null && !response.containsHeader(
84 response.addHeader(entity.getContentType());
87 if (entity.getContentEncoding() != null && !response.containsHeader(
89 response.addHeader(entity.getContentEncoding());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntityTable.h 34 UChar lastCharacter() const { return entity[length - 1]; }
36 const UChar* entity; member in struct:WebCore::HTMLEntityTableEntry
  /external/apache-http/src/org/apache/http/message/
BasicHttpEntityEnclosingRequest.java 42 * Basic implementation of a request with an entity that can be modified.
53 private HttpEntity entity; field in class:BasicHttpEntityEnclosingRequest
69 return this.entity;
72 public void setEntity(final HttpEntity entity) {
73 this.entity = entity;
  /external/chromium_org/chrome/browser/extensions/
app_sync_data_unittest.cc 42 sync_pb::EntitySpecifics entity; local
43 sync_pb::AppSpecifics* app_specifics = entity.mutable_app();
52 syncer::SyncData::CreateLocalData("sync_tag", "non_unique_title", entity);
64 sync_pb::EntitySpecifics entity; local
65 sync_pb::AppSpecifics* input_specifics = entity.mutable_app();
74 syncer::SyncData::CreateLocalData("sync_tag", "non_unique_title", entity);
87 sync_pb::EntitySpecifics entity; local
88 sync_pb::AppSpecifics* app_specifics = entity.mutable_app();
96 syncer::SyncData::CreateLocalData("sync_tag", "non_unique_title", entity);
  /external/apache-http/src/org/apache/http/entity/
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;
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.
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
59 public BufferedHttpEntity(final HttpEntity entity) throws IOException {
60 super(entity);
61 if (!entity.isRepeatable() || entity.getContentLength() < 0)
    [all...]
  /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();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getNamedItemNS03.java 34 * Entity nodes are not namespaced and should not be retrievable using
66 Entity entity; local
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
74 assertNull("entityNull", entity);
  /external/jsilver/src/com/google/streamhtmlparser/util/
EntityResolver.java 28 * entity which we will discard.
52 * <li><code>&&lt;html-entity&gt;;</code> where
53 * <code>&lt;html-entity&gt;</code> is one of <code>lt</code>,
67 * trailing characters before the start of an entity.
70 * characters part of an entity.
72 * an entity. The caller can then invoke <code>getEntity</code>
99 * How many characters to store as we are processing an entity. Once we
100 * reach that size, we know the entity is definitely invalid. The size
118 /** Storage for received until characters until an HTML entity is complete. */
125 private String entity; field in class:EntityResolver
    [all...]
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 

Completed in 336 milliseconds

1 2 3 4 5 6 7 8 91011>>