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

<<31323334353637383940>>

  /external/libxml2/
testHTML.c 166 * @publicId: The public ID of the entity
167 * @systemId: The system ID of the entity
169 * Special entity resolver, better left to the parser, it has
203 * @name: The entity name
205 * Get an entity by name
219 * @name: The entity name
221 * Get a parameter entity by name
236 * @name: the entity name
237 * @type: the entity type
238 * @publicId: The public ID of the entity
    [all...]
testSAX.c 352 * @publicId: The public ID of the entity
353 * @systemId: The system ID of the entity
355 * Special entity resolver, better left to the parser, it has
392 * @name: The entity name
394 * Get an entity by name
411 * @name: The entity name
413 * Get a parameter entity by name
431 * @name: the entity name
432 * @type: the entity type
433 * @publicId: The public ID of the entity
    [all...]
parser.c 107 * XML_PARSER_NON_LINEAR is the threshold where the ratio of parsed entity
109 * and eponential behaviour. A value of 10 correspond to at least 3 entity
117 * Function to check non-linear entity expansion behaviour
118 * This is here to detect and stop exponential linear entity expansion
161 * If the volume of entity copy reaches 10 times the
175 * Do the check based on the replacement size of the entity
209 * knowing an entity reference will take at least 3 bytes
289 xmlLoadEntityContent(xmlParserCtxtPtr ctxt, xmlEntityPtr entity);
379 errmsg = "Detected an entity reference loop";
427 errmsg = "Entity value required"
2513 xmlEntityPtr entity = NULL; local
7980 xmlEntityPtr entity = NULL; local
8215 xmlEntityPtr entity = NULL; local
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 25 import android.content.Entity;
27 import android.content.Entity.NamedContentValues;
44 * Contains an {@link Entity} and records any modifications separately so the
45 * original {@link Entity} can be swapped out with a newer version and the
49 * empty {@link Entity}, which then becomes an insert {@link RawContacts} case.
51 * When applying modifications over an {@link Entity}, we try finding the
53 * rows are missing from the new {@link Entity}, we know the original data must
63 * Direct values from {@link Entity#getEntityValues()}.
68 * Internal map of children values from {@link Entity#getSubValues()}, which
81 * Build an {@link EntityDelta} using the given {@link Entity} as
85 final EntityDelta entity = new EntityDelta(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pyexpat.py 46 <!ENTITY acirc "&#226;">
47 <!ENTITY external_entity SYSTEM "entity.file">
48 <!ENTITY unparsed_entity SYSTEM "entity.file" NDATA notation>
104 self.out.append('Unparsed entity decl: %s' %(args,))
112 self.out.append('External entity ref: %s' %(args[1:],))
147 self.assertEqual(op[3], "Unparsed entity decl: ('unparsed_entity', None, 'entity.file', None, 'notation')")
159 self.assertEqual(op[15], "External entity ref: (None, 'entity.file', None)"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pyexpat.py 46 <!ENTITY acirc "&#226;">
47 <!ENTITY external_entity SYSTEM "entity.file">
48 <!ENTITY unparsed_entity SYSTEM "entity.file" NDATA notation>
104 self.out.append('Unparsed entity decl: %s' %(args,))
112 self.out.append('External entity ref: %s' %(args[1:],))
147 self.assertEqual(op[3], "Unparsed entity decl: ('unparsed_entity', None, 'entity.file', None, 'notation')")
159 self.assertEqual(op[15], "External entity ref: (None, 'entity.file', None)"
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.3.1/
httpcore-4.3.1.jar 
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 20 import android.content.Entity;
250 private Entity setupTestEventEntity(String organizer, String attendee, String title) {
251 // Create an Entity for an Event
253 Entity entity = new Entity(entityValues); local
278 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
284 entity.addSubValue(Attendees.CONTENT_URI, organizerValues);
285 return entity;
288 private Entity setupTestExceptionEntity(String organizer, String attendee, String title)
289 Entity entity = setupTestEventEntity(organizer, attendee, title); local
305 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
347 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
413 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
477 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
554 Entity entity = setupTestExceptionEntity(ORGANIZER, ATTENDEE, title); local
813 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
    [all...]
  /external/apache-http/src/org/apache/http/
HttpClientConnection.java 78 * Sends the request entity over the connection.
79 * @param request the request whose entity to send.
89 * find out if it should try to receive a response entity as well.
100 * Receives the next response entity available from this connection and
103 * @param response the response to attach the entity to
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/
test_httpheaders.py 127 # entity headers (/w expected duplicate)
136 ('aLLoW','Entity Allow Something'),
138 ('expires','Entity An-Expiration-Date'),
146 ('Allow', 'Entity Allow Something'),
147 ('Expires', 'Entity An-Expiration-Date'),
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSResourceResolver.java 27 * parameter entities, before including them. The top-level document entity
44 * within the document element (however, the top-level document entity
51 * identifiers in a catalogue, or to read an entity from a database or
63 * @param publicId The public identifier of the external entity being
65 * supplied or if the resource is not an entity.
  /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.
  /external/apache-http/src/org/apache/http/protocol/
RequestExpectContinue.java 71 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); local
73 if (entity != null && entity.getContentLength() != 0) {
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documenttypegetentities.java 86 Node entity; local
93 entity = (Node) entityList.item(indexN1007B);
94 name = entity.getNodeName();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapremovenameditemns05.java 34 * Retreive an entity and notation node and remove the first notation from the
35 * entity node map and first entity node from the notation map. Since both these
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentImportNode.java 414 // Entity entity2;
415 // Entity entity6;
416 // Entity entityImp2;
417 // Entity entityImp6;
431 // entity2 = (Entity) nodeMap.getNamedItem("ent2");
432 // entity6 = (Entity) nodeMap.getNamedItem("ent6");
433 // entityImp2 = (Entity) docImp.importNode(entity2, false);
434 // entityImp6 = (Entity) docImp.importNode(entity6, true);
466 // Entity entity4;
467 // Entity entityImp4
    [all...]
  /external/libxml2/os400/libxmlrpg/
parser.rpgle 30 * Each entity parsed is associated an xmlParserInput (except the
67 d standalone 10i 0 Standalone entity ?
68 d id 10i 0 Entity unique ID
127 d XML_PARSER_ENTITY_DECL... In an entity decl
129 d XML_PARSER_ENTITY_VALUE... In entity decl value
231 d external 10i 0 Parsing ext. entity?
266 d entity like(xmlParserInputPtr) To check boundaries
314 d nbentities 20u 0 # entity references
325 d sizeentcopy 20u 0 Entity copy volume
346 * @publicId: The public ID of the entity
    [all...]
  /external/apache-http/android/src/com/android/internal/http/multipart/
MultipartEntity.java 41 import org.apache.http.entity.AbstractHttpEntity;
50 * Implements a request entity suitable for an HTTP multipart POST method.
65 * <p>This entity is designed to be used in conjunction with the
127 * Creates a new multipart entity containing the given parts.
129 * @param params The params of the HttpMethod using this entity.
158 * @return The boundary string of this entity in ASCII encoding.
  /external/apache-http/src/org/apache/http/impl/
AbstractHttpClientConnection.java 44 import org.apache.http.impl.entity.EntityDeserializer;
45 import org.apache.http.impl.entity.EntitySerializer;
46 import org.apache.http.impl.entity.LaxContentLengthStrategy;
47 import org.apache.http.impl.entity.StrictContentLengthStrategy;
198 HttpEntity entity = this.entitydeserializer.deserialize(this.inbuffer, response); local
199 response.setEntity(entity);
AbstractHttpServerConnection.java 44 import org.apache.http.impl.entity.EntityDeserializer;
45 import org.apache.http.impl.entity.EntitySerializer;
46 import org.apache.http.impl.entity.LaxContentLengthStrategy;
47 import org.apache.http.impl.entity.StrictContentLengthStrategy;
157 HttpEntity entity = this.entitydeserializer.deserialize(this.inbuffer, request); local
158 request.setEntity(entity);
  /external/libxml2/doc/
catalog.html 21 </ol><h3><a name="General2" id="General2">General overview</a></h3><p>What is a catalog? Basically it's a lookup mechanism used when an entity
22 (a file or a remote resource) references another entity. The catalog lookup
39 <p>"http://www.oasis-open.org/committes/entity/stylesheets/base/tr.xsl"</p>
51 <li><a href="http://www.oasis-open.org/committees/entity/spec.html">XML
67 entity, this includes DTD, external parsed entities, stylesheets, etc ... If
73 "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
74 "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"&gt;
75 &lt;catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"&gt;
80 "urn:oasis:names:tc:entity:xmlns:xml:catalog". The first entry in this
116 warning: failed to load external entity "title.xml
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 26 import org.apache.http.client.entity.UrlEncodedFormEntity;
110 final HttpEntity entity; local
112 entity = new UrlEncodedFormEntity(params);
119 post.addHeader(entity.getContentType());
120 post.setEntity(entity);
185 HttpEntity entity = new UrlEncodedFormEntity(params); local
190 post.addHeader(entity.getContentType());
191 post.setEntity(entity);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
package.html 36 <p>XML mapping from characters to entity references is defined in
37 XMLEntities.res. HTML entity reference mapping is defined in HTMLEntities.res.
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tokenization/
contentModelFlags.test 63 {"description":"RAWTEXT w/ something looking like an entity",
69 {"description":"RCDATA w/ an entity",
  /external/deqp/executor/
xeXMLParser.cpp 276 error("Invalid entity");
533 static char getEntityValue (const std::string& entity)
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 + "'");

Completed in 511 milliseconds

<<31323334353637383940>>