Home | History | Annotate | Download | only in util

Lines Matching refs:mAccounts

41     private List<AccountInfo> mAccounts;
60 mAccounts = new ArrayList<>(accounts.size());
66 final AccountInfo currentInfo = mAccounts.isEmpty()
68 : AccountInfo.getAccount(accounts, mAccounts.get(0).getAccount());
70 mAccounts.clear();
71 mAccounts.addAll(accounts);
74 && !mAccounts.isEmpty()
75 && !mAccounts.get(0).sameAccount(currentAccount)
76 && mAccounts.remove(currentInfo)) {
77 mAccounts.add(0, currentInfo);
96 text1.setText(mAccounts.get(position).getTypeLabel());
97 text2.setText(mAccounts.get(position).getNameLabel());
99 icon.setImageDrawable(mAccounts.get(position).getIcon());
106 return mAccounts.size();
111 return mAccounts.get(position).getAccount();