Home
last modified time | relevance | path

Searched refs:AccountTypeWithDataSet (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/model/
DAccountTypeManager.java48 import com.android.contacts.common.model.account.AccountTypeWithDataSet;
118 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet); in getAccountType()
121 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet)); in getAccountType()
142 public abstract Map<AccountTypeWithDataSet, AccountType> getUsableInvitableAccountTypes(); in 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 =
332 static Map<AccountTypeWithDataSet, AccountType> findAllInvitableAccountTypes( in findAllInvitableAccountTypes() argument
335 Map<AccountTypeWithDataSet, AccountType> accountTypesByTypeAndDataSet) { in findAllInvitableAccountTypes()
[all …]
DContactLoader.java41 import com.android.contacts.common.model.account.AccountTypeWithDataSet;
393 Map<AccountTypeWithDataSet, AccountType> invitables = in loadInvitableAccountTypes()
396 final Map<AccountTypeWithDataSet, AccountType> resultMap = Maps.newHashMap(invitables); in loadInvitableAccountTypes()
400 final AccountTypeWithDataSet type = in loadInvitableAccountTypes()
401 AccountTypeWithDataSet.get( in loadInvitableAccountTypes()
/packages/apps/Dialer/java/com/android/contacts/common/model/account/
DAccountTypeWithDataSet.java29 public class AccountTypeWithDataSet { class
44 private AccountTypeWithDataSet(String accountType, String dataSet) { in AccountTypeWithDataSet() method in AccountTypeWithDataSet
49 public static AccountTypeWithDataSet get(String accountType, String dataSet) { in get()
50 return new AccountTypeWithDataSet(accountType, dataSet); in get()
85 if (!(o instanceof AccountTypeWithDataSet)) { in equals()
89 AccountTypeWithDataSet other = (AccountTypeWithDataSet) o; in equals()
DAccountWithDataSet.java63 private final AccountTypeWithDataSet mAccountTypeWithDataSet;
69 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet); in AccountWithDataSet()
76 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet); in AccountWithDataSet()
168 public AccountTypeWithDataSet getAccountTypeWithDataSet() { in getAccountTypeWithDataSet()
DAccountType.java226 public AccountTypeWithDataSet getAccountTypeAndDataSet() { in getAccountTypeAndDataSet()
227 return AccountTypeWithDataSet.get(accountType, dataSet); in getAccountTypeAndDataSet()
/packages/apps/Contacts/src/com/android/contacts/model/account/
DAccountTypeWithDataSet.java33 public class AccountTypeWithDataSet { class
45 private AccountTypeWithDataSet(String accountType, String dataSet) { in AccountTypeWithDataSet() method in AccountTypeWithDataSet
50 public static AccountTypeWithDataSet get(String accountType, String dataSet) { in get()
51 return new AccountTypeWithDataSet(accountType, dataSet); in get()
82 if (!(o instanceof AccountTypeWithDataSet)) return false; in equals()
84 AccountTypeWithDataSet other = (AccountTypeWithDataSet) o; in equals()
DAccountWithDataSet.java55 private final AccountTypeWithDataSet mAccountTypeWithDataSet;
69 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet); in AccountWithDataSet()
80 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet); in AccountWithDataSet()
119 public AccountTypeWithDataSet getAccountTypeWithDataSet() { in getAccountTypeWithDataSet()
DAccountType.java219 public AccountTypeWithDataSet getAccountTypeAndDataSet() { in getAccountTypeAndDataSet()
220 return AccountTypeWithDataSet.get(accountType, dataSet); in getAccountTypeAndDataSet()
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DAccountTypeManagerTest.java26 import com.android.contacts.model.account.AccountTypeWithDataSet;
75 … private static Map<AccountTypeWithDataSet, AccountType> buildAccountTypes(AccountType... types) { in buildAccountTypes()
76 final HashMap<AccountTypeWithDataSet, AccountType> result = Maps.newHashMap(); in buildAccountTypes()
/packages/apps/Contacts/src/com/android/contacts/model/
DAccountTypeManager.java46 import com.android.contacts.model.account.AccountTypeWithDataSet;
162 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
273 public abstract AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet);
276 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
709 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) {
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
DMockAccountTypeManager.java23 import com.android.contacts.model.account.AccountTypeWithDataSet;
47 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { in getAccountType()
/packages/apps/Contacts/
Dproguard.flags45 -keep class com.android.contacts.model.account.AccountTypeWithDataSet { *; }