Home
last modified time | relevance | path

Searched refs:newAccount (Results 1 – 14 of 14) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DAnimatedAdapter.java186 public void onChanged(Account newAccount) {
187 if (setAccount(newAccount)) {
214 private boolean setAccount(Account newAccount) { in setAccount() argument
216 if (mAccount != null && mAccount.uri.equals(newAccount.uri) in setAccount()
218 newAccount.settings.importanceMarkersEnabled in setAccount()
220 newAccount.supportsCapability(UIProvider.AccountCapabilities.UNDO) in setAccount()
221 && mAccount.settings.convListIcon == newAccount.settings.convListIcon) { in setAccount()
227 mAccount = newAccount; in setAccount()
233 .toString(newAccount.settings.convListIcon == ConversationListIcon.SENDER_IMAGE)); in setAccount()
235 (newAccount.settings.replyBehavior == UIProvider.DefaultReplyBehavior.REPLY) in setAccount()
[all …]
DAbstractConversationViewFragment.java118 public void onChanged(Account newAccount) {
120 mAccount = newAccount;
122 onAccountChanged(newAccount, oldAccount);
230 protected abstract void onAccountChanged(Account newAccount, Account oldAccount); in onAccountChanged() argument
DCustomViewToolbar.java47 public void onChanged(Account newAccount) {
48 setSearchButtonVisibility(newAccount);
DRecentFolderList.java73 public void onChanged(Account newAccount) {
74 setCurrentAccount(newAccount);
DActionBarController.java98 public void onChanged(Account newAccount) {
99 updateAccount(newAccount);
DConversationListFragment.java153 public void onChanged(Account newAccount) {
154 mAccount = newAccount;
DAbstractActivityController.java2884 Account newAccount = allAccounts[0];
2888 newAccount = currentFromList;
2901 newAccount = account;
2909 changeAccount(newAccount);
DFolderListFragment.java379 public void onChanged(Account newAccount) { in onActivityCreated()
380 setSelectedAccount(newAccount); in onActivityCreated()
DSecureConversationViewFragment.java222 public void onAccountChanged(Account newAccount, Account oldAccount) { in onAccountChanged() argument
DConversationViewFragment.java267 public void onAccountChanged(Account newAccount, Account oldAccount) { in onAccountChanged() argument
269 if (isOverviewMode(newAccount) != isOverviewMode(oldAccount)) { in onAccountChanged()
/packages/apps/Contacts/src/com/android/contacts/editor/
DContactEditorFragment.java741 AccountWithDataSet newAccount) { in rebindEditorsForNewContact() argument
746 newAccount.type, newAccount.dataSet); in rebindEditorsForNewContact()
751 mListener.onCustomCreateContactActivityRequested(newAccount, mIntentExtras); in rebindEditorsForNewContact()
757 bindEditorsForNewContact(newAccount, newAccountType, oldState, oldAccountType); in rebindEditorsForNewContact()
769 private void bindEditorsForNewContact(AccountWithDataSet newAccount, in bindEditorsForNewContact() argument
775 if (newAccount != null) { in bindEditorsForNewContact()
776 rawContact.setAccount(newAccount); in bindEditorsForNewContact()
1081 AccountWithDataSet newAccount = adapter.getItem(position); in addAccountSwitcher()
1082 if (!newAccount.equals(currentAccount)) { in addAccountSwitcher()
1083 rebindEditorsForNewContact(currentState, currentAccount, newAccount); in addAccountSwitcher()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DVeiledAddressMatcher.java83 public void onChanged(Account newAccount) {
84 loadPattern(newAccount.settings.veiledAddressPattern);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DSelectedConversationsActionMenu.java104 public void onChanged(Account newAccount) { in SelectedConversationsActionMenu()
105 mAccount = newAccount; in SelectedConversationsActionMenu()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DAccountObserver.java80 public abstract void onChanged(Account newAccount); in onChanged() argument