Searched defs:entity (Results 26 - 50 of 80) sorted by relevance

1234

/external/apache-http/src/org/apache/http/entity/
H A DInputStreamEntity.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/InputStreamEntity.java $
32 package org.apache.http.entity;
39 * A streamed entity obtaining content from an {@link InputStream InputStream}.
/external/deqp/executor/
H A DxeXMLWriter.cpp86 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));
H A DxeXMLParser.cpp276 error("Invalid entity");
533 static char getEntityValue (const std::string& entity) argument
550 if (entity == s_entities[ndx].name)
561 std::string entity; local
562 m_tokenizer.getTokenStr(entity);
564 const char value = getEntityValue(entity);
566 error("Invalid entity '" + entity + "'");
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DHtmlStripFunction.java32 // The maximum length of an entity (preceded by an &)
35 // The state the strip function can be, normal, in an amp escaped entity or
41 // Map of entity names to special characters.
98 // Holds the contents of an & (amp) entity before its decoded.
130 // Semi-colon terminates an entity, try and decode it.
146 // More than 8 chars, so not a valid entity, dump as plain text.
158 * Attempts to decode the entity provided, if it succeeds appends it to the out string.
160 * @param out the string builder to add the decoded entity to.
173 // Numbered entity.
179 // If the entity i
194 appendNumberedEntity(Appendable out, CharSequence entity) argument
[all...]
/external/apache-http/src/org/apache/http/conn/
H A DBasicManagedEntity.java38 import org.apache.http.entity.HttpEntityWrapper;
42 * An entity that releases a {@link ManagedClientConnection connection}.
44 * typically <i>not</i> return a managed entity, but you can replace
45 * the unmanaged entity in the response with a managed one.
71 * Creates a new managed entity that can release a connection.
73 * @param entity the entity of which to wrap the content.
74 * Note that the argument entity can no longer be used
76 * managed entity.
80 public BasicManagedEntity(HttpEntity entity, argument
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpResponse.java62 private HttpEntity entity; field in class:BasicHttpResponse
130 return this.entity;
180 public void setEntity(final HttpEntity entity) { argument
181 this.entity = entity;
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DEntityResolver.java28 * 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...]
/external/mesa3d/src/gallium/targets/xorg-i915/
H A Dintel_xorg.c131 EntityInfoPtr entity; local
141 entity = xf86GetEntityInfo(entity_num);
/external/mesa3d/src/gallium/targets/xorg-nouveau/
H A Dnouveau_xorg.c128 EntityInfoPtr entity; local
188 entity = xf86GetEntityInfo(entity_num);
/external/mesa3d/src/gallium/targets/xorg-r300/
H A Dxorg.c132 EntityInfoPtr entity; local
142 entity = xf86GetEntityInfo(entity_num);
/external/mesa3d/src/gallium/targets/xorg-r600/
H A Dxorg.c132 EntityInfoPtr entity; local
142 entity = xf86GetEntityInfo(entity_num);
/external/mesa3d/src/gallium/targets/xorg-radeonsi/
H A Dxorg.c132 EntityInfoPtr entity; local
142 entity = xf86GetEntityInfo(entity_num);
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DScanHandler.java55 Reports an entity reference or character reference.
58 public void entity(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
115 Returns the value of the last entity or character reference reported.
H A DSchema.java107 Add to or replace a character entity in this schema.
108 @param name Name of the entity
109 @param value Value of the entity
112 public void entity(String name, int value) { method in class:Schema
127 Get an entity value by name.
128 @param name Name of the entity
133 // System.err.println("%% Looking up entity " + name);
H A DPYXWriter.java61 public void entity(char[] buff, int offset, int length) throws SAXException { } method in class:PYXWriter
/external/kernel-headers/original/uapi/linux/
H A Duvcvideo.h44 __u8 entity[16]; member in struct:uvc_xu_control_mapping
H A Dmedia.h104 __u32 entity; /* entity ID */ member in struct:media_pad_desc
122 __u32 entity; member in struct:media_links_enum
/external/apache-http/android/src/android/net/http/
H A DAndroidHttpClient.java37 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) argument
219 InputStream responseStream = entity.getContent();
221 Header header = entity.getContentEncoding();
301 AbstractHttpEntity entity;
[all...]
H A DConnection.java514 private boolean keepAlive(HttpEntity entity, argument
523 if (entity != null) {
524 if (entity.getContentLength() < 0) {
525 if (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0)) {
542 void setCanPersist(HttpEntity entity, ProtocolVersion ver, int connType) { argument
543 mCanPersist = keepAlive(entity, ver, connType, mHttpContext);
/external/libxml2/
H A Dentities.c93 * xmlFreeEntity : clean-up an entity record.
96 xmlFreeEntity(xmlEntityPtr entity) argument
100 if (entity == NULL)
103 if (entity->doc != NULL)
104 dict = entity->doc->dict;
107 if ((entity->children) && (entity->owner == 1) &&
108 (entity == (xmlEntityPtr) entity->children->parent))
109 xmlFreeNodeList(entity
883 xmlFreeEntityWrapper(xmlEntityPtr entity, const xmlChar *name ATTRIBUTE_UNUSED) argument
[all...]
H A DparserInternals.c293 * end of this entity
430 * If we are at the end of the current entity and
580 * Wherever an external parsed entity or the literal entity value
581 * of an internal parsed entity contains either the literal two-character
931 * of a given entity.
1111 * of a given entity.
1242 * of a given entity.
1259 * of a given entity, and convert only @len bytes of the output, this
1293 * of a given entity
1407 xmlNewEntityInputStream(xmlParserCtxtPtr ctxt, xmlEntityPtr entity) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-resolver.jar ... .apache.tools.ant.types.ResourceLocation entity static java.lang.Class class$ (java. ...
/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp78 GlobalValue *entity = local
80 // entity may be null due to DCE
81 if (!entity)
83 if (entity != gv)
86 // accumulate annotations for entity in tmp
/external/robolectric/lib/main/
H A Dhttpcore-4.0.1.jar ... apache/http/io/ org/apache/http/message/ org/apache/http/entity/ org/apache/http/util/ org/apache/http/params/ org/apache ...
/external/jetty/src/java/org/eclipse/jetty/xml/
H A DXmlParser.java52 * entity handlers and a mini dom-like document tree.
138 * @param entity
140 public synchronized void redirectEntity(String name, URL entity) argument
142 if (entity != null)
143 _redirectMap.put(name, entity);
423 URL entity = null;
425 entity = (URL) _redirectMap.get(pid);
426 if (entity == null)
427 entity = (URL) _redirectMap.get(sid);
428 if (entity
[all...]

Completed in 1733 milliseconds

1234