/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | MailAppProvider.java | 204 final List<AccountCacheEntry> accountList; in query() local 206 accountList = Lists.newArrayList(mAccountCache.values()); in query() 212 Collections.sort(accountList, mAccountComparator); in query() 215 new MatrixCursorWithExtra(resultProjection, accountList.size(), extras); in query() 217 for (AccountCacheEntry accountEntry : accountList) { in query() 401 final List<AccountCacheEntry> accountList; in cacheAccountList() local 404 accountList = ImmutableList.copyOf(mAccountCache.values()); in cacheAccountList() 408 for (AccountCacheEntry accountEntry : accountList) { in cacheAccountList() 453 final List<AccountCacheEntry> accountList; in onLoadComplete() local 455 accountList = ImmutableList.copyOf(mAccountCache.values()); in onLoadComplete() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/vcard/ |
D | SelectAccountActivity.java | 61 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local 62 if (accountList.size() == 0) { in onCreate() 66 } else if (accountList.size() == 1) { in onCreate() 67 final AccountWithDataSet account = accountList.get(0); in onCreate() 77 Log.i(LOG_TAG, "The number of available accounts: " + accountList.size()); in onCreate() 82 this, accountList, resId) { in onCreate()
|
D | NfcImportVCardActivity.java | 197 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local 198 if (accountList.size() == 0) { in onCreate() 200 } else if (accountList.size() == 1) { in onCreate() 201 mAccount = accountList.get(0); in onCreate()
|
D | ImportVCardActivity.java | 600 final List<AccountWithDataSet> accountList = accountTypes.blockForWritableAccounts(); in onCreate() local 601 if (accountList.size() == 0) { in onCreate() 603 } else if (accountList.size() == 1) { in onCreate() 604 mAccount = accountList.get(0); in onCreate()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | AccountSelectionUtil.java | 63 public AccountSelectedListener(Activity activity, List<AccountWithDataSet> accountList, in AccountSelectedListener() argument 65 if (accountList == null || accountList.size() == 0) { in AccountSelectedListener() 69 mAccountList = accountList; in AccountSelectedListener() 74 public AccountSelectedListener(Activity activity, List<AccountWithDataSet> accountList, in AccountSelectedListener() argument 78 this(activity, accountList, resId, /* subscriptionId = */ -1); in AccountSelectedListener()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapAppObserver.java | 367 ArrayList<BluetoothMapAccountItem> accountList = mFullList.get(app); in getEnabledAccountItems() local 368 if (accountList != null) { in getEnabledAccountItems() 369 for (BluetoothMapAccountItem acc : accountList) { in getEnabledAccountItems() 394 ArrayList<BluetoothMapAccountItem> accountList = mFullList.get(app); in getAllAccountItems() local 395 list.addAll(accountList); in getAllAccountItems()
|
/packages/apps/Email/tests/src/com/android/email/ |
D | AccountTestCase.java | 71 ArrayList<Account> accountList = new ArrayList<Account>(); in makeExchangeServiceAccountList() local 78 accountList.add(account); in makeExchangeServiceAccountList() 83 return accountList; in makeExchangeServiceAccountList()
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/ |
D | MockUiProvider.java | 163 List<Map<String, Object>> accountList = resultMap.get(getAccountsUri().toString()); in initializeAccount() local 164 if (accountList == null) { in initializeAccount() 165 accountList = Lists.newArrayList(); in initializeAccount() 166 resultMap.put(getAccountsUri().toString(), accountList); in initializeAccount() local 168 accountList.add(accountDetailsMap); in initializeAccount()
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
D | ImportDialogFragment.java | 265 final List<AccountWithDataSet> accountList = AccountInfo.extractAccounts( in handleImportRequest() local 272 final int size = accountList.size(); in handleImportRequest() 283 (size == 1 ? accountList.get(0) : null), in handleImportRequest()
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | FolderListFragment.java | 1349 final List<DrawerItem> accountList = new ArrayList<>(allAccounts.length); in buildAccountListDrawerItems() local 1354 accountList.add(DrawerItem.ofAccount(mActivity, account, unreadCount, in buildAccountListDrawerItems() 1360 return accountList; in buildAccountListDrawerItems()
|