HomeSort by relevance Sort by last modified time
    Searched full:entity (Results 1776 - 1800 of 3175) sorted by null

<<71727374757677787980>>

  /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/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;
193 HttpEntity entity = this.entitydeserializer.deserialize(this.inbuffer, response); local
194 response.setEntity(entity);
  /external/webkit/Source/WebCore/html/parser/
HTMLEntityParser.cpp 57 // FIXME: A number of specific entity values generate parse errors.
208 // We can't an entity because there might be a longer entity
221 // actual entity.
225 const UChar* reference = entitySearch.mostRecentMatch()->entity;
264 // Callers need to move off this API if the entity table has values
  /frameworks/base/core/java/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.
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FsUtils.java 166 HttpEntity entity = response.getEntity();
167 return (entity == null ? null : EntityUtils.toByteArray(entity));
232 HttpEntity entity = response.getEntity();
233 if (entity == null) {
238 new BufferedReader(new InputStreamReader(entity.getContent()));
  /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-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;
  /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.
CharInfo.java 45 * special treatement, such as entity reference substitution or normalization
46 * of a newline character. It also provides character to entity reference
55 /** Given a character, lookup a String to output (e.g. a decorated entity reference). */
192 // Load entity property files by using PropertyResourceBundle,
326 * if it has an entity defined for it.
354 * @param name The entity's name
355 * @param value The entity's value
386 * entity name "&lt;".
387 * Strings for entity references are loaded from a properties file,
389 * are possible. Such entity reference mappings could be over-ridden
    [all...]
HTMLEntities.properties 24 # Character entity references for markup-significant
32 # Character entity references for ISO 8859-1 characters
130 # Character entity references for symbols, mathematical symbols, and Greek letters
274 # Character entity references for internationalization characters
XMLEntities.properties 24 # Character entity references for markup-significant
  /external/libxml2/include/libxml/
HTMLtree.h 36 * Macro. An entity reference in a HTML document is really implemented
37 * the same way as an entity reference in an XML document.
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPIfMatch.java 47 * entity tag field
80 * @param etag -- the entity tag to set.
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegetbaseuri20.js 79 baseURI for an element from an entity reference should be the URI of the
80 external entity if there is now xml:base attribute.
  /packages/apps/Contacts/src/com/android/contacts/detail/
PhotoSelectionHandler.java 138 * Return the index of the first entity in the contact data that belongs to a contact-writable
139 * account, or -1 if no such entity exists.
148 * Return the raw-contact id of the first entity in the contact data that belongs to a
149 * contact-writable account, or -1 if no such entity exists.
158 * Utility method to retrieve the entity delta for attaching the given bitmap to the contact.
161 * @return An entity delta list that can be applied to associate the bitmap with the contact,
166 // Find the first writable entity.
169 // We are guaranteed to have contact data if we have a writable entity index.
  /external/chromium/chrome/browser/sync/engine/
process_commit_response_command_unittest.cc 149 SyncEntity* entity = static_cast<SyncEntity*>( local
151 entity->set_non_unique_name(name);
152 entity->set_folder(is_folder);
153 entity->set_parent_id(parent_id);
154 entity->set_version(entry.Get(syncable::BASE_VERSION));
155 entity->mutable_specifics()->CopyFrom(entry.Get(syncable::SPECIFICS));
156 entity->set_id(item_id);
165 entry_response->set_non_unique_name(entity->name());
167 entry_response->set_id_string(entity->id_string());
176 entry_response->set_parent_id_string(entity->parent_id_string())
    [all...]
  /external/libxml2/
parserInternals.c 276 * end of this entity
327 * end of this entity
459 * If we are at the end of the current entity and
609 * Wherever an external parsed entity or the literal entity value
610 * of an internal parsed entity contains either the literal two-character
965 * of a given entity.
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 21 // Contributors: Paul Hackenberger (unterminated entity handling in relaxed mode)
99 * entity values and default attribute values. These values are parsed at
100 * inclusion time and may contain both tags and entity references.
103 * define entity values manually}. Such entity values are literal strings
439 * report this as text, even if it was a CDATA block or entity
572 * must be parsed to capture entity values and default attribute values.
654 * Reads a quoted string, performing no entity escaping of the contents.
709 "Parameter entity references are not supported", this, null);
785 * Types are one of the built-in types (CDATA, ID, IDREF, IDREFS, ENTITY,
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
ResponseConnControl.java 84 HttpEntity entity = response.getEntity(); local
85 if (entity != null) {
87 if (entity.getContentLength() < 0 &&
88 (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0))) {
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 451 * must come from the same external entity, so that the Locator
518 * Report the beginning of an entity.
520 * The start and end of the document entity are not reported.
523 * properly nested within start/end entity events.
525 * @param name The name of the entity. If it is a parameter
526 * entity, the name will begin with '%'.
539 * Report the end of an entity.
541 * @param name The name of the entity that is ending.
549 * @param name name of the entity reference
567 * external entity, so that the Locator provides usefu
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_remote.h 16 // DevToolsRemoteMessages dispatched by some entity. It must extend
  /external/chromium/net/socket/
client_socket_factory.h 32 // |source| is the NetLog::Source for the entity trying to create the socket,
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 84 /// %0 - 0 if the entity was private, 1 if protected
85 /// %1 - the DeclarationName of the entity
130 const AccessedEntity &Entity) {
135 new (&DD.getAccessData()) AccessedEntity(Entity);
  /external/elfutils/libelf-po/
Makevars 18 # or entity, or to disclaim their copyright. The empty string stands for

Completed in 3563 milliseconds

<<71727374757677787980>>