OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AccountTypeWithDataSet
(Results
1 - 7
of
7
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java
33
public class
AccountTypeWithDataSet
{
45
private
AccountTypeWithDataSet
(String accountType, String dataSet) {
50
public static
AccountTypeWithDataSet
get(String accountType, String dataSet) {
51
return new
AccountTypeWithDataSet
(accountType, dataSet);
82
if (!(o instanceof
AccountTypeWithDataSet
)) return false;
84
AccountTypeWithDataSet
other = (
AccountTypeWithDataSet
) o;
AccountWithDataSet.java
49
private final
AccountTypeWithDataSet
mAccountTypeWithDataSet;
59
mAccountTypeWithDataSet =
AccountTypeWithDataSet
.get(type, dataSet);
65
mAccountTypeWithDataSet =
AccountTypeWithDataSet
.get(type, dataSet);
85
public
AccountTypeWithDataSet
getAccountTypeWithDataSet() {
AccountType.java
230
* Returns {@link
AccountTypeWithDataSet
} for this type.
232
public
AccountTypeWithDataSet
getAccountTypeAndDataSet() {
233
return
AccountTypeWithDataSet
.get(accountType, dataSet);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java
48
import com.android.contacts.common.model.account.
AccountTypeWithDataSet
;
123
public abstract AccountType getAccountType(
AccountTypeWithDataSet
accountTypeWithDataSet
);
126
return getAccountType(
AccountTypeWithDataSet
.get(accountType, dataSet));
134
* @return Unmodifiable map from {@link
AccountTypeWithDataSet
}s to {@link AccountType}s
146
public abstract Map<
AccountTypeWithDataSet
, AccountType> getUsableInvitableAccountTypes();
181
private static final Map<
AccountTypeWithDataSet
, AccountType>
183
Collections.unmodifiableMap(new HashMap<
AccountTypeWithDataSet
, AccountType>());
202
private Map<
AccountTypeWithDataSet
, AccountType> mAccountTypesWithDataSets = Maps.newHashMap();
203
private Map<
AccountTypeWithDataSet
, AccountType> mInvitableAccountTypes
[
all
...]
ContactLoader.java
45
import com.android.contacts.common.model.account.
AccountTypeWithDataSet
;
575
Map<
AccountTypeWithDataSet
, AccountType> invitables =
578
final Map<
AccountTypeWithDataSet
, AccountType> resultMap =
583
final
AccountTypeWithDataSet
type =
AccountTypeWithDataSet
.get(
[
all
...]
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
AccountTypeManagerTest.java
24
import com.android.contacts.common.model.account.
AccountTypeWithDataSet
;
58
Map<
AccountTypeWithDataSet
, AccountType> types =
136
private static Map<
AccountTypeWithDataSet
, AccountType> buildAccountTypes(AccountType... types) {
137
final HashMap<
AccountTypeWithDataSet
, AccountType> result = Maps.newHashMap();
161
Map<
AccountTypeWithDataSet
, AccountType> types,
164
Map<
AccountTypeWithDataSet
, AccountType> result =
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/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() {
Completed in 632 milliseconds