Searched refs:accountTypeWithDataSet (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | AccountTypeManager.java | 118 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet); in getAccountType() argument 338 AccountTypeWithDataSet accountTypeWithDataSet = account.getAccountTypeWithDataSet(); in findAllInvitableAccountTypes() local 339 AccountType type = accountTypesByTypeAndDataSet.get(accountTypeWithDataSet); in findAllInvitableAccountTypes() 343 if (result.containsKey(accountTypeWithDataSet)) { in findAllInvitableAccountTypes() 351 + accountTypeWithDataSet in findAllInvitableAccountTypes() 356 result.put(accountTypeWithDataSet, type); in findAllInvitableAccountTypes() 644 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { in getAccountType() argument 647 AccountType type = mAccountTypesWithDataSets.get(accountTypeWithDataSet); in getAccountType() 713 for (AccountTypeWithDataSet accountTypeWithDataSet : allInvitables.keySet()) { in findUsableInvitableAccountTypes() 714 AccountType accountType = allInvitables.get(accountTypeWithDataSet); in findUsableInvitableAccountTypes() [all …]
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactLookupKey.java | 57 public static int getAccountHashCode(String accountTypeWithDataSet, String accountName) { in getAccountHashCode() argument 58 if (accountTypeWithDataSet == null || accountName == null) { in getAccountHashCode() 62 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF; in getAccountHashCode() 65 public static void appendToLookupKey(StringBuilder lookupKey, String accountTypeWithDataSet, in appendToLookupKey() argument 76 lookupKey.append(getAccountHashCode(accountTypeWithDataSet, accountName)); in appendToLookupKey()
|
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/ |
D | MockAccountTypeManager.java | 47 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { in getAccountType() argument 57 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType) in getAccountType() 58 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) { in getAccountType()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | AccountTypeManager.java | 161 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { 272 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet); 705 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { 707 accountTypeWithDataSet.accountType, accountTypeWithDataSet.dataSet);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ProfileAggregator.java | 53 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, in appendLookupKey() argument
|
D | AbstractContactAggregator.java | 1551 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, in appendLookupKey() argument 1553 ContactLookupKey.appendToLookupKey(sb, accountTypeWithDataSet, accountName, rawContactId, in appendLookupKey()
|