Searched refs:RawContactInfo (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Contacts/src/com/android/contacts/ |
D | SplitAggregateView.java | 94 final List<RawContactInfo> list = loadData(); in SplitAggregateView() 115 private static class RawContactInfo implements Comparable<RawContactInfo> { class in SplitAggregateView 124 public RawContactInfo(long rawContactId) { in RawContactInfo() method in SplitAggregateView.RawContactInfo 144 public int compareTo(RawContactInfo another) { in compareTo() 155 private List<RawContactInfo> loadData() { in loadData() 156 HashMap<Long, RawContactInfo> rawContactInfos = new HashMap<Long, RawContactInfo>(); in loadData() 166 RawContactInfo info = rawContactInfos.get(rawContactId); in loadData() 168 info = new RawContactInfo(rawContactId); in loadData() 189 List<RawContactInfo> list = new ArrayList<RawContactInfo>(rawContactInfos.values()); in loadData() 194 private void loadStructuredName(Cursor cursor, RawContactInfo info) { in loadStructuredName() [all …]
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | MetadataEntryParser.java | 93 public static class RawContactInfo { class in MetadataEntryParser 100 public RawContactInfo(String backupId, String accountType, String accountName, in RawContactInfo() method in MetadataEntryParser.RawContactInfo 111 final RawContactInfo mRawContactInfo1; 112 final RawContactInfo mRawContactInfo2; 116 public AggregationData(RawContactInfo rawContactInfo1, RawContactInfo rawContactInfo2, in AggregationData() 126 final RawContactInfo mRawContactInfo; 134 public MetadataEntry(RawContactInfo rawContactInfo, in MetadataEntry() 157 final RawContactInfo rawContactInfo = parseUniqueContact(uniqueContactJSON); in parseDataToMetaDataEntry() 181 final RawContactInfo aggregationContact1 = parseUniqueContact(rawContact1); in parseDataToMetaDataEntry() 183 final RawContactInfo aggregationContact2 = parseUniqueContact(rawContact2); in parseDataToMetaDataEntry() [all …]
|
D | ContactsProvider2.java | 154 import com.android.providers.contacts.MetadataEntryParser.RawContactInfo; 4960 RawContactInfo rawContactInfo) { in searchRawContactIdForRawContactInfo() 5021 final RawContactInfo rawContactInfo = metadataEntry.mRawContactInfo; in updateFromMetaDataEntry() 5057 final RawContactInfo aggregationContact1 = aggregationData.mRawContactInfo1; in updateFromMetaDataEntry() 5058 final RawContactInfo aggregationContact2 = aggregationData.mRawContactInfo2; in updateFromMetaDataEntry()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | MetadataEntryParserTest.java | 24 import com.android.providers.contacts.MetadataEntryParser.RawContactInfo; 83 RawContactInfo rawContactInfo = new RawContactInfo( in testParseDataToMetadataEntry() 85 RawContactInfo aggregationContact1 = new RawContactInfo(aggregationContactBackupId1, in testParseDataToMetadataEntry() 87 RawContactInfo aggregationContact2 = new RawContactInfo(aggregationContactBackupId2, in testParseDataToMetadataEntry() 252 private void assertRawContactInfoEquals(RawContactInfo contact1, RawContactInfo contact2) { in assertRawContactInfoEquals()
|
D | ContactsProvider2Test.java | 91 import com.android.providers.contacts.MetadataEntryParser.RawContactInfo; 2922 RawContactInfo rawContactInfo = new RawContactInfo( in testUpdateFromMetadataEntry() 2966 RawContactInfo aggregationContact = new RawContactInfo( in testUpdateFromMetadataEntry()
|