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

/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DMockAccountTypeManager.java47 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { argument
57 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
58 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactLookupKey.java57 public static int getAccountHashCode(String accountTypeWithDataSet, String accountName) { argument
58 if (accountTypeWithDataSet == null || accountName == null) {
62 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF;
65 public static void appendToLookupKey(StringBuilder lookupKey, String accountTypeWithDataSet, argument
76 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 DAbstractContactAggregator.java1551 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet, argument
1553 ContactLookupKey.appendToLookupKey(sb, accountTypeWithDataSet, accountName, rawContactId,
/packages/apps/Contacts/src/com/android/contacts/model/
H A DAccountTypeManager.java161 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
272 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet); argument
705 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { argument
707 accountTypeWithDataSet.accountType, accountTypeWithDataSet.dataSet);
/packages/apps/Dialer/java/com/android/contacts/common/model/
H A DAccountTypeManager.java118 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet); argument
338 AccountTypeWithDataSet accountTypeWithDataSet = account.getAccountTypeWithDataSet();
339 AccountType type = accountTypesByTypeAndDataSet.get(accountTypeWithDataSet);
343 if (result.containsKey(accountTypeWithDataSet)) {
351 + accountTypeWithDataSet
356 result.put(accountTypeWithDataSet, type);
644 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { argument
647 AccountType type = mAccountTypesWithDataSets.get(accountTypeWithDataSet);
713 for (AccountTypeWithDataSet accountTypeWithDataSet : allInvitables.keySet()) {
714 AccountType accountType = allInvitables.get(accountTypeWithDataSet);
[all...]

Completed in 88 milliseconds