HomeSort by relevance Sort by last modified time
    Searched full:entity (Results 151 - 175 of 2650) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libxml2/test/catalogs/
stylesheet.xml 2 PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
3 "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">
4 <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"
9 uri="http://www.oasis-open.org/committes/entity/stylesheets/base/tr.xsl"/>
  /external/libxml2/test/
ent10 9 <!ENTITY f
ent3 3 <!ENTITY xml "Extensible Markup Language">
ent4 3 <!ENTITY xml "Extensible Markup Language">
eve.xml 3 <!ENTITY iso6.doc.date '29-May-1999'>
ent_738805.xml 3 <!ENTITY a "something">
4 <!ENTITY b "&a;">
  /external/libxml2/test/threads/
abc.xml 4 <b>Let's use a DTD defined entity &bent;</b>
acb.xml 5 <b>Let's use a DTD defined entity &bent;</b>
bac.xml 3 <b>Let's use a DTD defined entity &bent;</b>
bca.xml 3 <b>Let's use a DTD defined entity &bent;</b>
cab.xml 5 <b>Let's use a DTD defined entity &bent;</b>
cba.xml 4 <b>Let's use a DTD defined entity &bent;</b>
  /external/libxml2/test/valid/
id2.xml 7 <!ENTITY dest "<dest id='foo'/>">
  /external/libxml2/test/warning/
ent9 3 <!ENTITY xml "<prefix:node>prefix is indeclared here</prefix:node>">
  /external/libxml2/result/
ent_738805.xml 3 <!ENTITY a "something">
4 <!ENTITY b "&a;">
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Entity.java 30 * MIME entity. An entity has a header and a body (see RFC 2045).
33 * @version $Id: Entity.java,v 1.3 2004/10/02 12:41:11 ntherning Exp $
35 public abstract class Entity {
38 private Entity parent = null;
41 * Gets the parent entity of this entity.
42 * Returns <code>null</code> if this is the root entity.
46 public Entity getParent() {
51 * Sets the parent entity of this entity
    [all...]
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /libcore/luni/src/main/java/org/w3c/dom/
EntityReference.java 16 * <code>EntityReference</code> nodes may be used to represent an entity
20 * rather than by an entity reference. Moreover, the XML processor may
25 * entity an <code>Entity</code> exists, and the subtree of the
26 * <code>EntityReference</code> node is a copy of the <code>Entity</code>
27 * node subtree. However, the latter may not be true when an entity contains
29 * resolution depends on where the entity reference is, the descendants of
32 * an unknown entity, the node has no children and its replacement value,
34 * <p>As for <code>Entity</code> nodes, <code>EntityReference</code> nodes and
38 * 1.0 and XML Schema, the normalization is performed after entity referenc
    [all...]
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 65 public static byte[] toByteArray(final HttpEntity entity) throws IOException {
66 if (entity == null) {
67 throw new IllegalArgumentException("HTTP entity may not be null");
69 InputStream instream = entity.getContent();
73 if (entity.getContentLength() > Integer.MAX_VALUE) {
74 throw new IllegalArgumentException("HTTP entity too large to be buffered in memory");
76 int i = (int)entity.getContentLength();
93 public static String getContentCharSet(final HttpEntity entity)
96 if (entity == null) {
97 throw new IllegalArgumentException("HTTP entity may not be null")
    [all...]
  /external/apache-http/src/org/apache/http/entity/
package.html 5 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/package.html $
39 An {@link org.apache.http.HttpEntity entity} is the optional content of a
41 You'll find a basic selection of entity implementations here.
42 If you need to send an entity, you can provide it for example as a
43 {@link org.apache.http.entity.ByteArrayEntity byte array},
44 {@link org.apache.http.entity.StringEntity string},
45 {@link org.apache.http.entity.FileEntity file}, or through an arbitrary
46 {@link org.apache.http.entity.InputStreamEntity input stream}.
47 If you receive a message with an entity, you typically get that as a
48 {@link org.apache.http.entity.BasicHttpEntity basic} entity
    [all...]
  /external/libxml2/
entities.c 93 * xmlFreeEntity : clean-up an entity record.
96 xmlFreeEntity(xmlEntityPtr entity)
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->children)
    [all...]
  /libcore/dom/src/test/resources/
staff.xml 3 <!ENTITY ent1 "es">
4 <!ENTITY ent2 "1900 Dallas Road">
5 <!ENTITY ent3 "Texas">
6 <!ENTITY ent4 "<entElement domestic='Yes'>Element data</entElement><?PItarget PIdata?>">
7 <!ENTITY ent5 PUBLIC "entityURI" "entityFile" NDATA notation1>
8 <!ENTITY ent1 "This entity should be discarded">

Completed in 145 milliseconds

1 2 3 4 5 67 8 91011>>