OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AccountType
(Results
1 - 2
of
2
) sorted by null
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
AccountTypeTest.java
26
* Test case for {@link
AccountType
}.
41
assertEquals(DEFAULT,
AccountType
.getResourceText(c, null, -1, DEFAULT));
44
assertEquals(DEFAULT,
AccountType
.getResourceText(c, packageName, -1, DEFAULT));
49
AccountType
.getResourceText(c, packageName, externalResID, DEFAULT));
54
AccountType
.getResourceText(c, null, internalResId, DEFAULT));
58
* Verify if {@link
AccountType
#getInviteContactActionLabel} correctly gets the resource ID
59
* from {@link
AccountType
#getInviteContactActionResId}
67
AccountType
accountType
= new
AccountType
() {
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountType.java
50
public abstract class
AccountType
{
51
private static final String TAG = "
AccountType
";
56
public String
accountType
= null;
212
return getResourceText(context, syncAdapterPackageName, titleRes,
accountType
);
233
return AccountTypeWithDataSet.get(
accountType
, dataSet);
509
* Compare two {@link
AccountType
} by their {@link
AccountType
#getDisplayLabel} with the
512
public static class DisplayLabelComparator implements Comparator<
AccountType
> {
521
private String getDisplayLabel(
AccountType
type) {
527
public int compare(
AccountType
lhs, AccountType rhs)
[
all
...]
Completed in 348 milliseconds