Searched refs:entity (Results 1 - 25 of 151) sorted by relevance

1234567

/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLSchema.java17 elements, attributes, and character entity declarations. All the declarations
779 entity("aacgr", 0x03AC);
780 entity("Aacgr", 0x0386);
781 entity("aacute", 0x00E1);
782 entity("Aacute", 0x00C1);
783 entity("abreve", 0x0103);
784 entity("Abreve", 0x0102);
785 entity("ac", 0x223E);
786 entity("acd", 0x223F);
787 entity("acir
[all...]
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpEntityEnclosingRequestBase.java52 private HttpEntity entity; field in class:HttpEntityEnclosingRequestBase
59 return this.entity;
62 public void setEntity(final HttpEntity entity) { argument
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/
H A DEntityEnclosingRequestWrapper.java57 private HttpEntity entity; field in class:EntityEnclosingRequestWrapper
62 this.entity = request.getEntity();
66 return this.entity;
69 public void setEntity(final HttpEntity entity) { argument
70 this.entity = entity;
80 return this.entity == null || this.entity.isRepeatable();
H A DBasicResponseHandler.java75 HttpEntity entity = response.getEntity();
76 return entity == null ? null : EntityUtils.toString(entity);
/external/apache-http/src/org/apache/http/impl/entity/
H A DEntityDeserializer.java2 * $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();
79 entity.setChunked(true);
80 entity.setContentLength(-1);
81 entity
[all...]
H A DEntitySerializer.java2 * $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);
83 serialize( final SessionOutputBuffer outbuffer, final HttpMessage message, final HttpEntity entity) argument
/external/apache-http/src/org/apache/http/util/
H A DEntityUtils.java60 public static byte[] toByteArray(final HttpEntity entity) throws IOException { argument
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) argument
91 if (entity == null) {
92 throw new IllegalArgumentException("HTTP entity ma
107 toString( final HttpEntity entity, final String defaultCharset) argument
144 toString(final HttpEntity entity) argument
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpEntityEnclosingRequest.java35 * 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); argument
/external/apache-http/src/org/apache/http/protocol/
H A DRequestContent.java73 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity();
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());
H A DResponseContent.java46 * A response interceptor that sets up entity-related headers.
73 HttpEntity entity = response.getEntity();
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
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntityTable.h34 UChar lastCharacter() const { return entity[length - 1]; }
36 const UChar* entity; member in struct:WebCore::HTMLEntityTableEntry
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpEntityEnclosingRequest.java42 * 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) { argument
73 this.entity = entity;
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodegetuserdata05.js92 var entity;
109 entity = entities.getNamedItem("delta");
112 entity.setUserData("key", attr, null);
114 entity.setUserData("key", attr, nullHandler.handle);
116 retUserData = entity.getUserData("Key");
H A Dnodesetuserdata06.js94 var entity;
112 entity = entities.getNamedItem("delta");
115 comment.setUserData("Key1", entity, null);
117 comment.setUserData("Key1", entity, nullHandler.handle);
120 comment.setUserData("Key1", entity, null);
122 comment.setUserData("Key1", entity, nullHandler.handle);
124 success = returned.isEqualNode(entity);
H A Ddomconfigurationcansetparameter03.js98 var entity;
116 entity = entitiesMap.getNamedItem("epsilon");
117 assertNotNull("entityNotNull",entity);
118 entityName = entity.nodeName;
H A Dnodecomparedocumentposition22.js93 var entity;
109 entity = entitiesMap.getNamedItem("alpha");
111 entityPosition = entity.compareDocumentPosition(notation);
113 notationPosition = notation.compareDocumentPosition(entity);
H A Dnodecomparedocumentposition23.js91 var entity;
106 entity = entitiesMap.getNamedItem("alpha");
108 position1 = entity.compareDocumentPosition(entity2);
110 position2 = entity2.compareDocumentPosition(entity);
114 position3 = entity.compareDocumentPosition(entity2);
H A Dentitygetinputencoding01.js79 value returned is null for a internal general entity.
91 var entity;
103 entity = entitiesMap.getNamedItem("alpha");
104 encodingName = entity.inputEncoding;
H A Dentitygetinputencoding02.js79 unparsed entity and check if the value returned is null.
91 var entity;
103 entity = entitiesMap.getNamedItem("ent5");
104 encodingName = entity.inputEncoding;
H A Dentitygetinputencoding03.js79 Check the value of Entity.inputEncoding on an UTF-16 external entity
94 var entity;
106 entity = entitiesMap.getNamedItem("ent1");
107 encodingName = entity.inputEncoding;
H A Dentitygetinputencoding04.js79 Check the value of Entity.inputEncoding on an UTF-8 external entity
94 var entity;
106 entity = entitiesMap.getNamedItem("ent2");
107 encodingName = entity.inputEncoding;
H A Dentitygetxmlencoding01.js78 Call the getXmlEncoding method on a UTF-8 encoded entity of a document that is not an
79 external parsed entity and check if the value returned is null.
91 var entity;
103 entity = entitiesMap.getNamedItem("alpha");
104 encodingName = entity.xmlEncoding;
/external/apache-http/src/org/apache/http/entity/
H A DContentLengthStrategy.java2 * $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;
H A DContentProducer.java2 * $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.
H A DBufferedHttpEntity.java2 * $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 { argument
60 super(entity);
61 if (!entity.isRepeatable() || entity
[all...]

Completed in 290 milliseconds

1234567