OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currentAccount
(Results
1 - 5
of
5
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
AccountsChangedReceiver.java
49
final String
currentAccount
= prefs.getString(
51
removeUnknownAccountFromPreference(prefs, getAccountsForLogin(context),
currentAccount
);
63
* Removes the
currentAccount
from preferences if it's not found
67
final String[] accounts, final String
currentAccount
) {
68
if (
currentAccount
== null) {
72
if (TextUtils.equals(
currentAccount
, account)) {
76
Log.i(TAG, "The current account was removed from the system: " +
currentAccount
);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
AccountsSettingsFragment.java
264
final String
currentAccount
= hasAccountsPermission ? getSignedInAccountName() : null;
269
enableSyncPreferences(accountsForLogin,
currentAccount
);
276
currentAccount
);
284
* @param
currentAccount
the account currently selected in the application.
290
String
currentAccount
) {
319
if (
currentAccount
!= null) {
320
mAccountSwitcher.setSummary(getString(R.string.account_selected,
currentAccount
));
/packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
ComposeActivityTest.java
146
final ReplyFromAccount
currentAccount
= new ReplyFromAccount(mAccount, mAccount.uri,
152
activity.mFromSpinner.setCurrentAccount(
currentAccount
);
154
currentAccount
.account, EMPTY_ACCOUNT_LIST, null);
181
final ReplyFromAccount
currentAccount
= new ReplyFromAccount(mAccount, mAccount.uri,
189
activity.mFromSpinner.setCurrentAccount(
currentAccount
);
191
currentAccount
.account, EMPTY_ACCOUNT_LIST, null);
223
final ReplyFromAccount
currentAccount
= new ReplyFromAccount(mAccount, mAccount.uri,
230
activity.mFromSpinner.setCurrentAccount(
currentAccount
);
232
currentAccount
.account, EMPTY_ACCOUNT_LIST, null);
554
final ReplyFromAccount
currentAccount
= new ReplyFromAccount(mAccount, mAccount.uri
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java
385
final AccountWithDataSet
currentAccount
= new AccountWithDataSet(
401
AccountListFilter.ACCOUNTS_CONTACT_WRITABLE,
currentAccount
);
413
if (!newAccount.equals(
currentAccount
)) {
414
rebindEditorsForNewContact(currentState,
currentAccount
, newAccount);
/frameworks/base/services/core/java/com/android/server/pm/
UserManagerService.java
507
String
currentAccount
= userData.account;
508
if (!Objects.equal(
currentAccount
, accountName)) {
[
all
...]
Completed in 239 milliseconds