HomeSort by relevance Sort by last modified time
    Searched defs:entity (Results 101 - 125 of 201) sorted by null

1 2 3 45 6 7 8 9

  /packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
TextUtilities.java 56 // HTML character entity references as defined in HTML 4
373 // entity to a single character. When Java allows multiple return values, we can make this
425 // Handle a possible HTML entity here
427 // indicating how many characters were eaten from the entity
466 String entity = null; local
467 // Isolate the entity
470 entity = text.substring(pos, i);
474 if (entity == null) {
475 // This wasn't really an HTML entity
478 // Skip count is the length of the entity
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactLoader.java 12 import android.content.Entity;
43 public ArrayList<Entity> entities;
120 ArrayList<Entity> entities = Lists.newArrayList();
124 Entity entity = iterator.next(); local
125 entities.add(entity);
EntitySet.java 24 import android.content.Entity;
73 final Entity before = iterator.next();
74 final EntityDelta entity = EntityDelta.fromBefore(before); local
75 state.add(entity);
91 // For each entity in the remote set, try matching over existing
110 * the "before" {@link Entity} states into the modified state which all
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 86 import org.apache.http.entity.BufferedHttpEntity;
421 "with a non-repeatable request entity");
482 HttpEntity entity = response.getEntity(); local
483 if (entity != null) {
484 entity.consumeContent();
486 // entity consumed above is not an auto-release entity,
507 // check for entity, release connection if possible
515 // install an auto-release entity
516 HttpEntity entity = response.getEntity() local
772 HttpEntity entity = response.getEntity(); local
794 HttpEntity entity = response.getEntity(); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 49 import org.apache.http.entity.BufferedHttpEntity;
450 "with a non-repeatable request entity. The cause lists the " +
454 "with a non-repeatable request entity.");
530 HttpEntity entity = response.getEntity(); local
531 if (entity != null) {
532 entity.consumeContent();
534 // entity consumed above is not an auto-release entity,
558 // check for entity, release connection if possible
566 // install an auto-release entity
567 HttpEntity entity = response.getEntity(); local
800 HttpEntity entity = response.getEntity(); local
822 HttpEntity entity = response.getEntity(); local
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 20 import android.content.Entity;
246 private Entity setupTestEventEntity(String organizer, String attendee, String title) {
247 // Create an Entity for an Event
249 Entity entity = new Entity(entityValues); local
270 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
276 entity.addSubValue(Attendees.CONTENT_URI, organizerValues);
277 return entity;
280 private Entity setupTestExceptionEntity(String organizer, String attendee, String title)
281 Entity entity = setupTestEventEntity(organizer, attendee, title); local
293 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
335 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
401 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
465 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
542 Entity entity = setupTestExceptionEntity(ORGANIZER, ATTENDEE, title); local
793 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); local
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 232 final HttpEntity entity = response.getEntity(); local
233 if (entity != null) {
234 inputStream = entity.getContent();
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 43 TiXmlBase::Entity TiXmlBase::entity[ TiXmlBase::NUM_ENTITY ] = member in class:TiXmlBase
440 // Presume an entity, and pull it out.
517 if ( strncmp( entity[i].str, p, entity[i].strLength ) == 0 )
519 assert( strlen( entity[i].str ) == entity[i].strLength );
520 *value = entity[i].chr;
522 return ( p + entity[i].strLength );
526 // So it wasn't an entity, its unrecognized, or something like that
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-resolver.jar 
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 43 TiXmlBase::Entity TiXmlBase::entity[ TiXmlBase::NUM_ENTITY ] = member in class:TiXmlBase
440 // Presume an entity, and pull it out.
517 if ( strncmp( entity[i].str, p, entity[i].strLength ) == 0 )
519 assert( strlen( entity[i].str ) == entity[i].strLength );
520 *value = entity[i].chr;
522 return ( p + entity[i].strLength );
526 // So it wasn't an entity, its unrecognized, or something like that
    [all...]
  /external/tinyxml/
tinyxmlparser.cpp 34 TiXmlBase::Entity TiXmlBase::entity[ NUM_ENTITY ] = member in class:TiXmlBase
421 // Presume an entity, and pull it out.
498 if ( strncmp( entity[i].str, p, entity[i].strLength ) == 0 )
500 assert( strlen( entity[i].str ) == entity[i].strLength );
501 *value = entity[i].chr;
503 return ( p + entity[i].strLength );
507 // So it wasn't an entity, its unrecognized, or something like that
    [all...]
  /frameworks/base/core/java/android/net/http/
AndroidHttpClient.java 39 import org.apache.http.entity.AbstractHttpEntity;
40 import org.apache.http.entity.ByteArrayEntity;
212 * Gets the input stream from a response entity. If the entity is gzipped
215 * @param entity the entity whose content should be read
219 public static InputStream getUngzippedContent(HttpEntity entity)
221 InputStream responseStream = entity.getContent();
223 Header header = entity.getContentEncoding();
296 * Creates a Http Entity holding the gzipped data
303 AbstractHttpEntity entity; local
443 HttpEntity entity = entityRequest.getEntity(); local
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardComposer.java 21 import android.content.Entity;
22 import android.content.Entity.NamedContentValues;
497 // The resolver may return the entity iterator with no data. It is possible.
536 Entity entity = entityIterator.next(); local
537 for (NamedContentValues namedContentValues : entity.getSubValues()) {
649 * @return true when there's no entity to be built. The return value is undefined
  /packages/apps/Browser/src/com/android/browser/
GoogleAccountLogin.java 137 HttpEntity entity = response.getEntity(); local
138 if (entity == null) {
139 Log.d(LOGTAG, "LOGIN_FAIL: Null entity in response");
143 result = EntityUtils.toString(entity, "UTF-8");
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasLoadAttachment.java 225 final HttpEntity entity; local
232 entity = makeEntity(s);
235 entity = null;
237 return entity;
  /packages/apps/Exchange/src/com/android/exchange/service/
EasAutoDiscover.java 18 import org.apache.http.entity.StringEntity;
76 final StringEntity entity = buildRequestEntity(); local
77 if (entity == null) {
81 final HttpPost post = makePost("https://" + domain + AUTO_DISCOVER_PAGE, entity,
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_interface2.c 667 struct media_entity_desc entity; local
668 memset(&entity, 0, sizeof(entity));
669 entity.id = num_entities++;
670 rc = ioctl(dev_fd, MEDIA_IOC_ENUM_ENTITIES, &entity);
676 if(entity.type == MEDIA_ENT_T_DEVNODE_V4L && entity.group_id == QCAMERA_VNODE_GROUP_ID) {
678 entity.name, sizeof(entity.name));
  /external/chromium_org/chrome/browser/sync/sessions2/
sessions_sync_manager.cc 234 // if the entity specifics are identical (i.e windows, client name did
236 sync_pb::EntitySpecifics entity; local
237 entity.mutable_session()->CopyFrom(specifics);
239 current_machine_tag(), current_session_name_, entity);
    [all...]
sessions_sync_manager_unittest.cc 76 sync_pb::EntitySpecifics entity; local
77 entity.mutable_session()->CopyFrom(specifics);
80 syncer::SyncData::CreateRemoteData(id, entity, base::Time()));
90 sync_pb::EntitySpecifics entity; local
91 entity.mutable_session()->CopyFrom(*iter);
95 entity, base::Time())));
102 sync_pb::EntitySpecifics entity; local
103 entity.mutable_session()->CopyFrom(tabs[i]);
105 i + 2, entity, base::Time()));
593 sync_pb::EntitySpecifics entity; local
599 sync_pb::EntitySpecifics entity; local
635 sync_pb::EntitySpecifics entity; local
710 sync_pb::EntitySpecifics entity; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_gnutls.c 49 gnutls_connection_end_t entity; member in struct:__anon28793

Completed in 463 milliseconds

1 2 3 45 6 7 8 9