HomeSort by relevance Sort by last modified time
    Searched defs:RawContact (Results 1 - 3 of 3) sorted by null

  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 27 * Represents a low-level contacts RawContact - or at least
28 * the fields of the RawContact that we care about.
30 final public class RawContact {
33 private static final String TAG = "RawContact";
136 * Convert the RawContact object into a JSON string. From the
172 Log.i(TAG, "Error converting RawContact to JSONObject" + ex.toString());
178 public RawContact(String name, String fullName, String firstName, String lastName,
200 * Creates and returns an instance of the RawContact from the provided JSON data.
203 * @return user The new instance of Sample RawContact created from the JSON data.
205 public static RawContact valueOf(JSONObject contact)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContact.java 40 * RawContact represents a single raw contact in the raw contacts database.
42 * items, and also contains a collection of DataItem objects. A RawContact contains the information
45 * This allows RawContact objects to be thought of as a class with raw contact
50 final public class RawContact implements Parcelable {
123 public static RawContact createFrom(Entity entity) {
127 RawContact rawContact = new RawContact(values);
129 rawContact.addNamedDataItemValues(subValue.uri, subValue.values);
131 return rawContact;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 57 public static final class RawContact {
79 public List<RawContact> rawContacts;
393 RawContact rawContact = new RawContact();
394 rawContact.rawContactId = rawContactId;
395 rawContact.accountName = mDataCursor.getString(DataQuery.ACCOUNT_NAME);
396 rawContact.accountType = mDataCursor.getString(DataQuery.ACCOUNT_TYPE);
397 rawContact.dataSet = mDataCursor.getString(DataQuery.DATA_SET);
398 suggestion.rawContacts.add(rawContact);
    [all...]

Completed in 68 milliseconds