Searched defs:entity (Results 1 - 6 of 6) sorted by relevance

/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntityDiff.java138 private static HashMap<String, NamedContentValues> buildChildrenMap(Entity entity) { argument
139 final ArrayList<NamedContentValues> children = entity.getSubValues();
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DViewIdGenerator.java65 * @param entity {@link EntityDelta} associated with the view
71 public int getId(EntityDelta entity, DataKind kind, ValuesDelta values, argument
73 final String k = getMapKey(entity, kind, values, viewIndex);
84 private static String getMapKey(EntityDelta entity, DataKind kind, ValuesDelta values, argument
87 if (entity != null) {
88 sWorkStringBuilder.append(entity.getValues().getId());
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasSyncService.java86 import org.apache.http.entity.ByteArrayEntity;
87 import org.apache.http.entity.StringEntity;
989 Entity entity = new Entity(entityValues);
1005 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
1012 entity.addSubValue(Attendees.CONTENT_URI, organizerValues);
1031 CalendarUtilities.createMessageForEntity(mContext, entity, flag,
1249 protected EasResponse sendHttpClientPost(String cmd, HttpEntity entity) throws IOException { argument
1250 return sendHttpClientPost(cmd, entity, COMMAND_TIMEOUT);
1300 public EasResponse sendHttpClientPost(String cmd, HttpEntity entity, int timeout) argument
1321 // If entity i
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java1482 private void sendEvent(Entity entity, String clientId, Serializer s) argument
1489 ContentValues entityValues = entity.getEntityValues();
1621 ArrayList<NamedContentValues> subValues = entity.getSubValues();
1762 * @param entity
1765 private void sendDeclinedEmail(Entity entity, String clientId) { argument
1767 CalendarUtilities.createMessageForEntity(mContext, entity,
1832 Entity entity = eventIterator.next();
1835 ContentValues entityValues = entity.getEntityValues();
1841 for (NamedContentValues ncv: entity.getSubValues()) {
1855 // Find our uid in the entity; otherwis
[all...]
H A DContactsSyncAdapter.java428 public void addData(String serverId, ContactOperations ops, Entity entity) argument
452 if (entity == null) {
486 ops.addPhone(entity, Phone.TYPE_MMS, getValue());
489 ops.addPhone(entity, Phone.TYPE_FAX_WORK, getValue());
492 ops.addPhone(entity, Phone.TYPE_COMPANY_MAIN, getValue());
495 ops.addPhone(entity, Phone.TYPE_FAX_HOME, getValue());
502 ops.addPhone(entity, Phone.TYPE_MOBILE, getValue());
505 ops.addPhone(entity, Phone.TYPE_CAR, getValue());
508 ops.addPhone(entity, Phone.TYPE_RADIO, getValue());
511 ops.addPhone(entity, Phon
708 categoriesParser(ContactOperations ops, Entity entity) argument
1173 createBuilder(Entity entity, String mimeType, int type, String stringType) argument
1198 typedRowBuilder(Entity entity, String mimeType, int type) argument
1202 untypedRowBuilder(Entity entity, String mimeType) argument
1206 newRowBuilder(Entity entity, String mimeType) argument
1248 addChildren(Entity entity, ArrayList<String> children) argument
1257 addGroup(Entity entity, String group) argument
1264 addBirthday(Entity entity, String birthday) argument
1283 addName(Entity entity, String prefix, String givenName, String familyName, String middleName, String suffix, String displayName, String yomiFirstName, String yomiLastName) argument
1307 addPersonal(Entity entity, EasPersonal personal) argument
1322 addBusiness(Entity entity, EasBusiness business) argument
1339 addPhoto(Entity entity, String photo) argument
1348 addPhone(Entity entity, int type, String phone) argument
1359 addWebpage(Entity entity, String url) argument
1370 addRelation(Entity entity, int type, String value) argument
1381 addNickname(Entity entity, String name) argument
1393 addPostal(Entity entity, int type, String street, String city, String state, String country, String code) argument
1420 addUntyped(Entity entity, ArrayList<UntypedRow> rows, String mimeType, int type, int maxRows) argument
1487 addOrganization(Entity entity, int type, String company, String title, String department, String yomiCompanyName, String officeLocation) argument
1507 addNote(Entity entity, String note) argument
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
H A DCalendarUtilities.java1608 * @param entity the Entity for the Event (as might be retrieved by CalendarProvider)
1614 static public Message createMessageForEntity(Context context, Entity entity, argument
1616 return createMessageForEntity(context, entity, messageFlag, uid, account,
1620 static public EmailContent.Message createMessageForEntity(Context context, Entity entity, argument
1622 ContentValues entityValues = entity.getEntityValues();
1623 ArrayList<NamedContentValues> subValues = entity.getSubValues();
1944 Entity entity = eventIterator.next();
1945 return createMessageForEntity(context, entity, messageFlag, uid, account,

Completed in 112 milliseconds