Home | History | Annotate | Download | only in editor

Lines Matching refs:rawContact

86         // Load RawContact data
109 final Map<Long, RawContact> rawContactMap = new HashMap<>();
112 RawContact rawContact = new RawContact();
113 rawContact.id = rawContactCursor.getLong(RAW_CONTACT_ID);
114 photoSelection.append(rawContact.id).append(',');
115 rawContact.displayName = rawContactCursor.getString(DISPLAY_NAME_PRIMARY);
116 rawContact.displayNameAlt = rawContactCursor.getString(DISPLAY_NAME_ALTERNATIVE);
117 rawContact.accountName = rawContactCursor.getString(ACCOUNT_NAME);
118 rawContact.accountType = rawContactCursor.getString(ACCOUNT_TYPE);
119 rawContact.accountDataSet = rawContactCursor.getString(DATA_SET);
120 result.rawContacts.add(rawContact);
121 rawContactMap.put(rawContact.id, rawContact);
206 public ArrayList<RawContact> rawContacts = new ArrayList<>();
214 in.readTypedList(rawContacts, RawContact.CREATOR);
222 final RawContact rawContact = rawContacts.get(i);
224 rawContact.accountType, rawContact.accountDataSet);
236 final RawContact rawContact = rawContacts.get(i);
238 rawContact.accountType, rawContact.accountDataSet);
261 public static class RawContact implements Parcelable {
262 public static final Parcelable.Creator<RawContact> CREATOR =
263 new Parcelable.Creator<RawContact>() {
265 public RawContact createFromParcel(Parcel source) {
266 return new RawContact(source);
270 public RawContact[] newArray(int size) {
271 return new RawContact[size];
283 public RawContact() {}
285 private RawContact(Parcel in) {