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

  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockAccountTypeManager.java 20 import com.android.contacts.common.model.account.AccountTypeWithDataSet;
44 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
46 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
47 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
65 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 49 import com.android.contacts.common.model.account.AccountTypeWithDataSet;
124 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
127 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
135 * @return Unmodifiable map from {@link AccountTypeWithDataSet}s to {@link AccountType}s
147 public abstract Map<AccountTypeWithDataSet, AccountType> getUsableInvitableAccountTypes();
182 private static final Map<AccountTypeWithDataSet, AccountType>
184 Collections.unmodifiableMap(new HashMap<AccountTypeWithDataSet, AccountType>());
203 private Map<AccountTypeWithDataSet, AccountType> mAccountTypesWithDataSets = Maps.newHashMap();
204 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 475 milliseconds