Searched defs:entity (Results 1 - 7 of 7) 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 RawContactDelta} associated with the view
71 public int getId(RawContactDelta entity, DataKind kind, ValuesDelta values, argument
73 final String k = getMapKey(entity, kind, values, viewIndex);
84 private static String getMapKey(RawContactDelta entity, DataKind kind, ValuesDelta values, argument
87 if (entity != null) {
88 sWorkStringBuilder.append(entity.getValues().getId());
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContact.java123 public static RawContact createFrom(Entity entity) { argument
124 final ContentValues values = entity.getEntityValues();
125 final ArrayList<Entity.NamedContentValues> subValues = entity.getSubValues();
/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasSyncCalendar.java321 * @param entity The {@link Entity} for this event.
325 final Entity entity, final String clientId) {
327 CalendarUtilities.createMessageForEntity(context, entity,
376 * @param entity The {@link Entity} for this event.
382 private void sendEvent(final Context context, final Account account, final Entity entity, argument
391 final ContentValues entityValues = entity.getEntityValues();
519 final ArrayList<Entity.NamedContentValues> subValues = entity.getSubValues();
648 * @param entity The {@link Entity} for this event.
649 * @param entityValues The {@link ContentValues} for entity.
657 final Account account,final Entity entity, fina
324 sendDeclinedEmail(final Context context, final Account account, final Entity entity, final String clientId) argument
656 handleExceptionsToRecurrenceRules(final Serializer s, final Context context, final Account account,final Entity entity, final ContentValues entityValues, final String serverId, final String clientId, final String calendarIdString, final boolean selfOrganizer, final double protocolVersion) argument
763 updateAttendeesAndSendMail(final Context context, final Account account, final Entity entity, final ContentValues entityValues, final boolean selfOrganizer, final long eventId, final String clientId) argument
907 handleEntity(final Serializer s, final Context context, final Account account, final Entity entity, final String calendarIdString, final boolean first, final double protocolVersion) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/service/
H A DEasServerConnection.java51 import org.apache.http.entity.ByteArrayEntity;
276 * @param entity The {@link HttpEntity} for this request.
281 public HttpPost makePost(final String uri, final HttpEntity entity, final String contentType, argument
288 // If there is no entity, we should not be setting a content-type since this will
290 if (contentType != null && entity != null) {
313 post.setEntity(entity);
336 * @param entity The {@link HttpEntity} containing the payload of the message.
341 protected EasResponse sendHttpClientPost(String cmd, final HttpEntity entity, argument
361 // If entity is null (e.g. for attachments), don't set this header
365 } else if (entity !
[all...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DContactsSyncParser.java93 public void addData(String serverId, ContactOperations ops, Entity entity) argument
117 if (entity == null) {
151 ops.addPhone(entity, Phone.TYPE_MMS, getValue());
154 ops.addPhone(entity, Phone.TYPE_FAX_WORK, getValue());
157 ops.addPhone(entity, Phone.TYPE_COMPANY_MAIN, getValue());
160 ops.addPhone(entity, Phone.TYPE_FAX_HOME, getValue());
167 ops.addPhone(entity, Phone.TYPE_MOBILE, getValue());
170 ops.addPhone(entity, Phone.TYPE_CAR, getValue());
173 ops.addPhone(entity, Phone.TYPE_RADIO, getValue());
176 ops.addPhone(entity, Phon
362 categoriesParser(ContactOperations ops, Entity entity) argument
966 createBuilder(Entity entity, String mimeType, int type, String stringType) argument
991 typedRowBuilder(Entity entity, String mimeType, int type) argument
995 untypedRowBuilder(Entity entity, String mimeType) argument
999 newRowBuilder(Entity entity, String mimeType) argument
1041 addChildren(Entity entity, ArrayList<String> children) argument
1050 addGroup(Entity entity, String group) argument
1057 addBirthday(Entity entity, String birthday) argument
1083 addName(Entity entity, String prefix, String givenName, String familyName, String middleName, String suffix, String yomiFirstName, String yomiLastName) argument
1106 addPersonal(Entity entity, EasPersonal personal) argument
1121 addBusiness(Entity entity, EasBusiness business) argument
1138 addPhoto(Entity entity, String photo) argument
1154 addPhone(Entity entity, int type, String phone) argument
1165 addWebpage(Entity entity, String url) argument
1176 addRelation(Entity entity, int type, String value) argument
1187 addNickname(Entity entity, String name) argument
1199 addPostal(Entity entity, int type, String street, String city, String state, String country, String code) argument
1226 addUntyped(Entity entity, ArrayList<UntypedRow> rows, String mimeType, int type, int maxRows) argument
1293 addOrganization(Entity entity, int type, String company, String title, String department, String yomiCompanyName, String officeLocation) argument
1313 addNote(Entity entity, String note) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java1729 * @param entity the Entity for the Event (as might be retrieved by CalendarProvider)
1735 static public Message createMessageForEntity(Context context, Entity entity, argument
1737 return createMessageForEntity(context, entity, messageFlag, uid, account,
1741 static public EmailContent.Message createMessageForEntity(Context context, Entity entity, argument
1743 ContentValues entityValues = entity.getEntityValues();
1744 ArrayList<NamedContentValues> subValues = entity.getSubValues();
2065 Entity entity = eventIterator.next();
2066 return createMessageForEntity(context, entity, messageFlag, uid, account,

Completed in 1183 milliseconds