/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | AccountTypeManager.java | 48 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 …]
|
D | ContactLoader.java | 41 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/ |
D | AccountTypeWithDataSet.java | 29 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()
|
D | AccountWithDataSet.java | 63 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()
|
D | AccountType.java | 226 public AccountTypeWithDataSet getAccountTypeAndDataSet() { in getAccountTypeAndDataSet() 227 return AccountTypeWithDataSet.get(accountType, dataSet); in getAccountTypeAndDataSet()
|
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
D | AccountTypeWithDataSet.java | 33 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()
|
D | AccountWithDataSet.java | 55 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()
|
D | AccountType.java | 219 public AccountTypeWithDataSet getAccountTypeAndDataSet() { in getAccountTypeAndDataSet() 220 return AccountTypeWithDataSet.get(accountType, dataSet); in getAccountTypeAndDataSet()
|
/packages/apps/Contacts/tests/src/com/android/contacts/model/ |
D | AccountTypeManagerTest.java | 26 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/ |
D | AccountTypeManager.java | 46 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/ |
D | MockAccountTypeManager.java | 23 import com.android.contacts.model.account.AccountTypeWithDataSet; 47 public AccountType getAccountType(AccountTypeWithDataSet accountTypeWithDataSet) { in getAccountType()
|
/packages/apps/Contacts/ |
D | proguard.flags | 45 -keep class com.android.contacts.model.account.AccountTypeWithDataSet { *; }
|