HomeSort by relevance Sort by last modified time
    Searched full:account (Results 376 - 400 of 4748) sorted by null

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/accounts/
SyncStateSwitchPreference.java 19 import android.accounts.Account;
37 private Account mAccount;
56 public SyncStateSwitchPreference(Context context, Account account, String authority,
59 setup(account, authority, packageName, uid);
62 public void setup(Account account, String authority, String packageName, int uid) {
63 mAccount = account;
155 public Account getAccount() {
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SwipeableConversationItemView.java 26 import com.android.mail.providers.Account;
37 public SwipeableConversationItemView(Context context, Account account) {
39 mConversationItemView = new ConversationItemView(context, account);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationActionUtils.java 40 import com.android.mail.providers.Account;
200 NotificationCompat.WearableExtender wearExtender, final Account account,
209 context, account, conversation, message,
222 context, account, conversation, message,
350 final Account account, final Conversation conversation, final Message message,
355 final NotificationAction notificationAction = new NotificationAction(action, account,
365 final Intent intent = createReplyIntent(context, account, messageUri, false);
379 final Intent intent = createReplyIntent(context, account, messageUri, true)
814 final Account account = notificationAction.getAccount(); local
837 final Account account = notificationAction.getAccount(); local
    [all...]
Utils.java 59 import com.android.mail.providers.Account;
91 public static final String EXTRA_ACCOUNT = "account";
472 * @param account
476 Conversation conversation, final Uri folderUri, Account account) {
484 intent.setDataAndType(uniqueUri, account.mimeType);
485 intent.putExtra(Utils.EXTRA_ACCOUNT, account.serialize());
495 * @param account
499 Account account) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
AccountsChangedReceiver.java 44 // Ideally the account preference could live in a different preferences file
71 for (final String account : accounts) {
72 if (TextUtils.equals(currentAccount, account)) {
76 Log.i(TAG, "The current account was removed from the system: " + currentAccount);
  /prebuilts/go/darwin-x86/src/cmd/gofmt/testdata/
rewrite6.golden 8 // attribute for the last argument into account.
rewrite6.input 8 // attribute for the last argument into account.
rewrite7.golden 8 // attribute for the last argument into account.
rewrite7.input 8 // attribute for the last argument into account.
  /prebuilts/go/linux-x86/src/cmd/gofmt/testdata/
rewrite6.golden 8 // attribute for the last argument into account.
rewrite6.input 8 // attribute for the last argument into account.
rewrite7.golden 8 // attribute for the last argument into account.
rewrite7.input 8 // attribute for the last argument into account.
  /frameworks/base/services/core/java/com/android/server/content/
SyncManager.java 19 import android.accounts.Account;
335 private boolean containsAccountAndUser(AccountAndUser[] accounts, Account account, int userId) {
339 && accounts[i].account.equals(account)) {
347 /** target indicates endpoints that should be synced after account info is updated. */
360 Account[] accountsForUser = AccountManagerService.getSingleton().getAccounts(
510 scheduleSync(info.account, info.userId, reason, info.provider, extras,
584 mAccountManagerInternal.addOnAppPermissionChangeListener((Account account, int uid) ->
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
AbstractAuthenticatorTests.java 19 import android.accounts.Account;
38 * default implementation of account session api in
140 * Only account name and account type should be returned as a bundle.
201 // Assert returned result contains correct account name, account type and null auth token.
209 * Only account name and account type should be returned as a bundle.
259 assertEquals(Fixtures.ACCOUNT_DEFAULT, updateCredentialsTx.account);
267 // Assert returned result contains correct account name, account type and null auth token
292 Account account = new Account(accountName, Fixtures.TYPE_DEFAULT); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
EmailPreferenceActivity.java 39 * Handles account preferences, using multi-pane arrangement when possible.
49 * Intent to open account settings for account=1
59 // Intent extras for launch directly from system account manager
107 // This case occurs if we're changing account settings from Settings -> Accounts.
108 // We get an account object in the intent, but it's not actually useful to us since
109 // it's always just the first account of that type. The user can't specify which
110 // account they wish to view from within the settings UI, so just dump them at the
112 // android.accounts.Account acct = i.getParcelableExtra("account");
    [all...]
  /development/tools/extract/manual/android/accounts/
annotations.xml 3 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;android.accounts.Account&gt; renameAccount(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback&lt;android.accounts.Account&gt;, android.os.Handler)">
15 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;android.os.Bundle&gt; confirmCredentials(android.accounts.Account, android.os.Bundle, android.app.Activity, android.accounts.AccountManagerCallback&lt;android.os.Bundle&gt;, android.os.Handler)">
27 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;android.os.Bundle&gt; getAuthToken(android.accounts.Account, java.lang.String, android.os.Bundle, android.app.Activity, android.accounts.AccountManagerCallback&lt;android.os.Bundle&gt;, android.os.Handler)">
33 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;android.os.Bundle&gt; getAuthToken(android.accounts.Account, java.lang.String, android.os.Bundle, boolean, android.accounts.AccountManagerCallback&lt;android.os.Bundle&gt;, android.os.Handler)">
39 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;android.os.Bundle&gt; getAuthToken(android.accounts.Account, java.lang.String, boolean, android.accounts.AccountManagerCallback&lt;android.os.Bundle&gt;, android.os.Handler)">
51 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;android.os.Bundle&gt; removeAccount(android.accounts.Account, android.app.Activity, android.accounts.AccountManagerCallback&lt;android.os.Bundle&gt;, android.os.Handler)">
57 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;android.os.Bundle&gt; updateCredentials(android.accounts.Account, java.lang.String, android.os.Bundle, android.app.Activity, android.accounts.AccountManagerCallback&lt;android.os.Bundle&gt;, android.os.Handler)">
63 <item name="android.accounts.AccountManager android.accounts.AccountManagerFuture&lt;java.lang.Boolean&gt; removeAccount(android.accounts.Account, android.accounts.AccountManagerCallback&lt;java.lang.Boolean&gt;, android.os.Handler)"
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
ComposeActivityTest.java 31 import com.android.mail.providers.Account;
59 private Account mAccount;
61 private static final Account[] EMPTY_ACCOUNT_LIST = new Account[0];
98 final Account account = getActivity().getFromAccount(); local
99 return getRefMessage(resolver, account.folderListUri);
103 // Get a mock account.
104 final Account account = getAccountForName(activity, accountName) local
179 final Account account = mAccount; local
    [all...]
  /cts/hostsidetests/devicepolicy/app/AccountCheck/Tester/res/xml/
authenticator.xml 18 <!-- for the Account Manager. -->
20 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
  /cts/tests/tests/accounts/CtsUnaffiliatedAccountAuthenticators/res/xml/
custom_authenticator.xml 21 <!-- for the Account Manager. -->
23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
default_authenticator.xml 21 <!-- for the Account Manager. -->
23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
standard_authenticator.xml 21 <!-- for the Account Manager. -->
23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/res/xml/
authenticator.xml 16 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
17 android:accountType="com.example.android.sampletvinput.account"
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/res/xml/
authenticator.xml 18 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
19 android:accountType="com.example.android.basicsyncadapter.account"
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/res/xml/
authenticator.xml 18 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
19 android:accountType="com.example.android.basicsyncadapter.account"

Completed in 500 milliseconds

<<11121314151617181920>>