HomeSort by relevance Sort by last modified time
    Searched refs:accountTypeWithDataSet (Results 1 - 6 of 6) sorted by null

  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockAccountTypeManager.java 23 import com.android.contacts.model.account.AccountTypeWithDataSet;
47 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
57 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
58 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 57 public static int getAccountHashCode(String accountTypeWithDataSet, String accountName) {
58 if (accountTypeWithDataSet == null || accountName == null) {
62 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF;
65 public static void appendToLookupKey(StringBuilder lookupKey, String accountTypeWithDataSet,
76 lookupKey.append(getAccountHashCode(accountTypeWithDataSet, accountName));
  /packages/apps/Dialer/java/com/android/contacts/common/model/
AccountTypeManager.java 48 import com.android.contacts.common.model.account.AccountTypeWithDataSet;
118 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
121 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
132 * @return Unmodifiable map from {@link AccountTypeWithDataSet}s to {@link AccountType}s which
142 public abstract Map<AccountTypeWithDataSet, AccountType> getUsableInvitableAccountTypes();
177 private static final Map<AccountTypeWithDataSet, AccountType>
179 Collections.unmodifiableMap(new HashMap<AccountTypeWithDataSet, AccountType>());
247 private Map<AccountTypeWithDataSet, AccountType> mAccountTypesWithDataSets = new ArrayMap<>();
248 private Map<AccountTypeWithDataSet, AccountType> mInvitableAccountTypes
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ProfileAggregator.java 53 protected void appendLookupKey(StringBuilder sb, String accountTypeWithDataSet,
AbstractContactAggregator.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 46 import com.android.contacts.model.account.AccountTypeWithDataSet;
161 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
272 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
275 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
706 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
708 accountTypeWithDataSet.accountType, accountTypeWithDataSet.dataSet)
    [all...]

Completed in 1241 milliseconds