Searched defs:mCurrentAccount (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAccountHeaderPresenter.java59 private AccountWithDataSet mCurrentAccount; field in class:AccountHeaderPresenter
90 if (mCurrentAccount != null && mCurrentAccount.equals(account)) {
93 mCurrentAccount = account;
104 if (mCurrentAccount == null || !AccountInfo.contains(mAccounts, mCurrentAccount)) {
105 mCurrentAccount = mAccounts.isEmpty() ? null : accounts.get(0).getAccount();
112 return mCurrentAccount != null ? mCurrentAccount : null;
116 outState.putParcelable(KEY_SELECTED_ACCOUNT, mCurrentAccount);
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderListFragment.java200 protected Account mCurrentAccount; field in class:FolderListFragment
667 if (mCurrentAccount == null || account == null ||
668 !mCurrentAccount.getEmailAddress().equals(account.getEmailAddress())) {
691 folderListUri = mCurrentAccount.folderListUri;
694 folderListUri = mCurrentAccount.allFolderListUri;
989 mAccountController.switchToDefaultInboxOrChangeAccount(mCurrentAccount);
1005 if(!mCurrentAccount.isAccountReady()) {
1083 && mCurrentAccount != null && mAccountController != null
1086 folderName, mCurrentAccount.getEmailAddress());
1087 changeAccount(mCurrentAccount);
[all...]

Completed in 178 milliseconds