Searched refs:newAccount (Results 1 - 20 of 20) sorted by relevance

/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/accounts/
H A DAccountStateChangedListener.java44 * @param newAccount the account being used for sign-in.
46 public static void onAccountSignedIn(@Nullable String oldAccount, @NonNull String newAccount) { argument
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DVeiledAddressMatcher.java83 public void onChanged(Account newAccount) {
84 loadPattern(newAccount.settings.veiledAddressPattern);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccountObserver.java78 * @param newAccount
80 public abstract void onChanged(Account newAccount); argument
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DCustomViewToolbar.java47 public void onChanged(Account newAccount) {
48 setSearchButtonVisibility(newAccount);
H A DAnimatedAdapter.java186 public void onChanged(Account newAccount) {
187 if (setAccount(newAccount)) {
214 private boolean setAccount(Account newAccount) { argument
216 if (mAccount != null && mAccount.uri.equals(newAccount.uri)
218 newAccount.settings.importanceMarkersEnabled
220 newAccount.supportsCapability(UIProvider.AccountCapabilities.UNDO)
221 && mAccount.settings.convListIcon == newAccount.settings.convListIcon) {
227 mAccount = newAccount;
233 .toString(newAccount.settings.convListIcon == ConversationListIcon.SENDER_IMAGE));
235 (newAccount
[all...]
H A DRecentFolderList.java73 public void onChanged(Account newAccount) {
74 setCurrentAccount(newAccount);
H A DAbstractConversationViewFragment.java118 public void onChanged(Account newAccount) {
120 mAccount = newAccount;
122 onAccountChanged(newAccount, oldAccount);
230 protected abstract void onAccountChanged(Account newAccount, Account oldAccount); argument
H A DActionBarController.java98 public void onChanged(Account newAccount) {
99 updateAccount(newAccount);
H A DSecureConversationViewFragment.java222 public void onAccountChanged(Account newAccount, Account oldAccount) { argument
H A DConversationListFragment.java153 public void onChanged(Account newAccount) {
154 mAccount = newAccount;
H A DFolderListFragment.java379 public void onChanged(Account newAccount) {
380 setSelectedAccount(newAccount);
H A DConversationViewFragment.java267 public void onAccountChanged(Account newAccount, Account oldAccount) { argument
269 if (isOverviewMode(newAccount) != isOverviewMode(oldAccount)) {
H A DAbstractActivityController.java2884 Account newAccount = allAccounts[0];
2888 newAccount = currentFromList;
2901 newAccount = account;
2909 changeAccount(newAccount);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DCompactContactEditorFragment.java212 AccountWithDataSet oldAccount, AccountWithDataSet newAccount) {
214 mAccountWithDataSet = newAccount;
215 rebindEditorsForNewContact(oldState, oldAccount, newAccount);
211 onRebindEditorsForNewContact(RawContactDelta oldState, AccountWithDataSet oldAccount, AccountWithDataSet newAccount) argument
H A DContactEditorFragment.java412 AccountWithDataSet newAccount = adapter.getItem(position);
413 if (!newAccount.equals(currentAccount)) {
414 rebindEditorsForNewContact(currentState, currentAccount, newAccount);
H A DCompactRawContactsEditorView.java107 * @param newAccount New account to be used.
110 AccountWithDataSet oldAccount, AccountWithDataSet newAccount);
881 final AccountWithDataSet newAccount = adapter.getItem(position);
882 if (mListener != null && !mPrimaryAccount.equals(newAccount)) {
886 newAccount);
109 onRebindEditorsForNewContact(RawContactDelta oldState, AccountWithDataSet oldAccount, AccountWithDataSet newAccount) argument
H A DContactEditorBaseFragment.java1356 * @param newAccount New account to be used.
1360 AccountWithDataSet newAccount) {
1363 AccountType newAccountType = accountTypes.getAccountTypeForAccount(newAccount);
1368 mListener.onCustomCreateContactActivityRequested(newAccount, mIntentExtras);
1374 setStateForNewContact(newAccount, newAccountType, oldState, oldAccountType,
1358 rebindEditorsForNewContact( RawContactDelta oldState, AccountWithDataSet oldAccount, AccountWithDataSet newAccount) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DAccountsSettingsFragment.java400 final String newAccount =
404 .putString(PREF_ACCOUNT_NAME, newAccount)
406 AccountStateChangedListener.onAccountSignedIn(oldAccount, newAccount);
/packages/services/Telecomm/src/com/android/server/telecom/
H A DPhoneAccountRegistrar.java275 // newAccount that was just added
746 private void maybeReplaceOldAccount(PhoneAccount newAccount) { argument
747 UserHandle newAccountUserHandle = newAccount.getAccountHandle().getUserHandle();
755 if (!defaultHandle.groupId.equals(newAccount.getGroupId())) {
759 if (Objects.equals(newAccount.getAccountHandle().getComponentName(),
763 setUserSelectedOutgoingPhoneAccount(newAccount.getAccountHandle(),
769 PhoneAccount replacementAccount = getPhoneAccountByGroupId(newAccount.getGroupId(),
770 newAccount.getAccountHandle().getComponentName(), newAccountUserHandle,
771 newAccount.getAccountHandle());
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DSelectedConversationsActionMenu.java104 public void onChanged(Account newAccount) {
105 mAccount = newAccount;

Completed in 1074 milliseconds