Home
last modified time | relevance | path

Searched refs:accountTypeWithDataSet (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/model/
DAccountTypeManager.java118 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/
DContactLookupKey.java57 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/
DMockAccountTypeManager.java47 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/
DAccountTypeManager.java162 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
273 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
707 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
709 accountTypeWithDataSet.accountType, accountTypeWithDataSet.dataSet);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DProfileAggregator.java53 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, in appendLookupKey() argument
DAbstractContactAggregator.java1558 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, in appendLookupKey() argument
1560 ContactLookupKey.appendToLookupKey(sb, accountTypeWithDataSet, accountName, rawContactId, in appendLookupKey()