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

  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
MockAccountTypeManager.java 20 import com.android.contacts.common.model.account.AccountTypeWithDataSet;
45 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
55 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
56 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
74 public Map<AccountTypeWithDataSet, AccountType> getUsableInvitableAccountTypes() {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 59 public static int getAccountHashCode(String accountTypeWithDataSet, String accountName) {
60 if (accountTypeWithDataSet == null || accountName == null) {
64 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF;
67 public static void appendToLookupKey(StringBuilder lookupKey, String accountTypeWithDataSet,
78 lookupKey.append(getAccountHashCode(accountTypeWithDataSet, accountName));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 47 import com.android.contacts.common.model.account.AccountTypeWithDataSet;
122 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
125 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
133 * @return Unmodifiable map from {@link AccountTypeWithDataSet}s to {@link AccountType}s
145 public abstract Map<AccountTypeWithDataSet, AccountType> getUsableInvitableAccountTypes();
180 private static final Map<AccountTypeWithDataSet, AccountType>
182 Collections.unmodifiableMap(new HashMap<AccountTypeWithDataSet, AccountType>());
201 private Map<AccountTypeWithDataSet, AccountType> mAccountTypesWithDataSets = Maps.newHashMap();
202 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,
ContactAggregator.java     [all...]

Completed in 284 milliseconds