Searched defs:accountTypeWithDataSet (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
H A DMockAccountTypeManager.java46 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { argument
48 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
49 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactLookupKey.java59 public static int getAccountHashCode(String accountTypeWithDataSet, String accountName) { argument
60 if (accountTypeWithDataSet == null || accountName == null) {
64 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF;
67 public static void appendToLookupKey(StringBuilder lookupKey, String accountTypeWithDataSet, argument
78 lookupKey.append(getAccountHashCode(accountTypeWithDataSet, accountName));
H A DProfileAggregator.java45 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, argument
H A DContactAggregator.java1800 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, argument
1802 ContactLookupKey.appendToLookupKey(sb, accountTypeWithDataSet, accountName, rawContactId,
/packages/apps/Contacts/src/com/android/contacts/model/
H A DAccountTypeManager.java107 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet); argument
612 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { argument
615 AccountType type = mAccountTypesWithDataSets.get(accountTypeWithDataSet);
672 AccountTypeWithDataSet accountTypeWithDataSet = account.getAccountTypeWithDataSet();
673 AccountType type = accountTypesByTypeAndDataSet.get(accountTypeWithDataSet);
675 if (result.containsKey(accountTypeWithDataSet)) continue;
678 Log.d(TAG, "Type " + accountTypeWithDataSet
682 result.put(accountTypeWithDataSet, type);
708 for (AccountTypeWithDataSet accountTypeWithDataSet : allInvitables.keySet()) {
709 AccountType accountType = allInvitables.get(accountTypeWithDataSet);
[all...]

Completed in 140 milliseconds