OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:allAccounts
(Results
1 - 5
of
5
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java
463
final Account[]
allAccounts
= new Account[initialLength];
466
allAccounts
[i++] = cursor.getModel();
470
return
allAccounts
;
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java
391
final List<AccountWithDataSet>
allAccounts
= Lists.newArrayList();
493
allAccounts
.add(accountWithDataSet);
505
Collections.sort(
allAccounts
, ACCOUNT_COMPARATOR);
513
mAccounts =
allAccounts
;
517
mContext,
allAccounts
, accountTypesByTypeAndDataSet);
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderListFragment.java
296
public void onChanged(Account[]
allAccounts
) {
751
final Account[]
allAccounts
= getAllAccounts();
754
for (final Account account :
allAccounts
) {
[
all
...]
AbstractActivityController.java
262
private final DataSetObservable mAllAccountObservers = new Observable("
AllAccounts
");
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java
579
final Account[]
allAccounts
= AccountUtils.getAccounts(this);
580
if (
allAccounts
== null ||
allAccounts
.length == 0) {
589
for (Account a :
allAccounts
) {
[
all
...]
Completed in 1175 milliseconds