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

/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
H A DMockAccountTypeManager.java45 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { argument
55 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
56 && 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));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DProfileAggregator.java53 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, argument
H A DContactAggregator.java2007 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, argument
2009 ContactLookupKey.appendToLookupKey(sb, accountTypeWithDataSet, accountName, rawContactId,
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DAccountTypeManager.java122 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet); argument
616 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { argument
619 AccountType type = mAccountTypesWithDataSets.get(accountTypeWithDataSet);
676 AccountTypeWithDataSet accountTypeWithDataSet = account.getAccountTypeWithDataSet();
677 AccountType type = accountTypesByTypeAndDataSet.get(accountTypeWithDataSet);
679 if (result.containsKey(accountTypeWithDataSet)) continue;
682 Log.d(TAG, "Type " + accountTypeWithDataSet
686 result.put(accountTypeWithDataSet, type);
712 for (AccountTypeWithDataSet accountTypeWithDataSet : allInvitables.keySet()) {
713 AccountType accountType = allInvitables.get(accountTypeWithDataSet);
[all...]

Completed in 640 milliseconds