HomeSort by relevance Sort by last modified time
    Searched refs:accounts (Results 126 - 150 of 364) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
scope_approval_dialog.js 29 urls: ['https://accounts.google.com/*'],
32 if (url.toLowerCase().indexOf('https://accounts.google.com/') != 0)
  /external/chromium_org/chrome/browser/ui/autofill/
account_chooser_model.h 41 // Online Wallet accounts and local Autofill data.
44 // Online Wallet service. There may be multiple signed-in accounts, but at any
71 // Returns true if there are any accounts for the user to choose from.
74 // Sets the name of the accounts used to communicate with the Online Wallet
76 void SetWalletAccounts(const std::vector<std::string>& accounts,
79 // Clears the set of accounts used to communicate with the Online Wallet.
91 // Disables all Wallet accounts and switches to the local Autofill data.
129 // The names (emails) of the signed in accounts, gotten from the
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
SystemSyncContentResolverDelegate.java 8 import android.accounts.Account;
  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
MockGrantCredentialsPermissionActivity.java 7 import android.accounts.Account;
  /frameworks/base/core/java/android/accounts/
Account.java 17 package android.accounts;
AccountAuthenticatorResponse.java 17 package android.accounts;
  /frameworks/base/core/java/android/content/
SyncInfo.java 19 import android.accounts.Account;
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportReceiver.java 22 import android.accounts.Account;
23 import android.accounts.AccountManager;
154 final Account[] accounts = am.getAccounts(); local
156 for (Account account : accounts) {
  /frameworks/base/test-runner/src/android/test/
SyncBaseInstrumentation.java 24 import android.accounts.Account;
77 ContentResolver.cancelSync(null /* all accounts */, null /* all authorities */);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapEmailSettingsLoader.java 61 * BTMAP meta-tag in their manifest file. For each app the list of accounts are fetched using
88 ArrayList<BluetoothMapEmailSettingsItem> accounts = parseAccounts(app); local
89 // we do not want to list apps without accounts
90 if(accounts.size() >0)
92 // we need to make sure that the "select all" checkbox is checked if all accounts in the list are checked
94 for (BluetoothMapEmailSettingsItem acc: accounts)
102 groups.put(app, accounts);
136 * Method for getting the accounts under a given contentprovider from a package.
139 * @return An ArrayList of BluetoothMapEmailSettingsItems containing all the accounts from the app
145 // Get the list of accounts from the email apps content resolver (if possibl
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java 121 final List<AccountWithDataSet> accounts = local
123 return !accounts.isEmpty();
127 final List<AccountWithDataSet> accounts = local
129 return !accounts.isEmpty();
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherClings.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
234 Account[] accounts = AccountManager.get(mLauncher).getAccounts(); local
235 if (supportsLimitedUsers && accounts.length == 0) {
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
352 Account[] accounts = mAccountManager.getAccountsByType("com.google"); local
354 assertTrue("Didn't find any Google accounts", accounts.length > 0);
356 Account account = accounts[accounts.length - 1];
357 Log.v(TAG, "Found " + accounts.length + " accounts; using the last one, " + account.name);
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 17 package com.android.settings.accounts;
21 import android.accounts.Account;
22 import android.accounts.AccountManager;
23 import android.accounts.AccountManagerCallback;
24 import android.accounts.AccountManagerFuture;
25 import android.accounts.AuthenticatorException;
26 import android.accounts.OperationCanceledException;
260 // Note that this also counts accounts that are not currently displayed
460 Account[] accounts = AccountManager.get(getActivity()).getAccountsByTypeAsUser(
462 final int count = accounts.length
    [all...]
AccountPreferenceBase.java 18 package com.android.settings.accounts;
20 import android.accounts.AuthenticatorDescription;
  /external/chromium_org/chrome/browser/chromeos/login/signin/
oauth2_login_manager.cc 295 // Let's analyze which accounts we see logged in here:
296 std::vector<std::pair<std::string, bool> > accounts; local
297 gaia::ParseListAccountsData(data, &accounts);
299 if (!accounts.empty()) {
303 accounts.begin();
304 iter != accounts.end(); ++iter) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
21 import android.accounts.AuthenticatorDescription;
22 import android.accounts.OnAccountsUpdateListener;
111 * Returns the list of all accounts (if contactWritableOnly is false) or just the list of
112 * contact writable accounts (if contactWritableOnly is true).
118 * Returns the list of accounts that are group writable.
275 // Accounts without data sets get sorted before those that have them.
312 // Request updates when packages or accounts change
345 public void onAccountsUpdated(Account[] accounts) {
478 Account[] accounts = mAccountManager.getAccounts(); local
    [all...]
  /development/apps/Development/src/com/android/development/
SyncAdapterDriver.java 47 import android.accounts.Account;
48 import android.accounts.AccountManager;
138 Account accounts[] = AccountManager.get(this).getAccountsByType( local
140 String[] accountNames = new String[accounts.length];
141 for (int i = 0; i < accounts.length; i++) {
142 accountNames[i] = accounts[i].name;
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
Chromoting.java 7 import android.accounts.Account;
8 import android.accounts.AccountManager;
9 import android.accounts.AccountManagerCallback;
10 import android.accounts.AccountManagerFuture;
11 import android.accounts.AuthenticatorException;
12 import android.accounts.OperationCanceledException;
44 /** Only accounts of this type will be selectable for authentication. */
62 /** List of accounts on the system. */
65 /** SpinnerAdapter used in the action bar for selecting accounts. */
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 19 import android.accounts.AccountManager;
158 final android.accounts.Account[] amAccounts =
161 for (android.accounts.Account amAccount: amAccounts) {
171 private static void removePeriodicSyncs(final android.accounts.Account amAccount,
187 final android.accounts.Account[] amAccounts =
189 for (android.accounts.Account amAccount : amAccounts) {
207 /** Projection used for getting sync intervals for all accounts. */
214 * Get the sync interval for all accounts, as stored in the DB.
251 // rename the account manager type for all existing accounts, so we add new ones and delete
301 * accounts are converted otherwise terrible, horrible things will happen
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
LocalizedNameResolver.java 19 import android.accounts.AccountManager;
20 import android.accounts.AuthenticatorDescription;
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
AccountWithDataSetTest.java 89 AccountWithDataSet... accounts) {
91 List<AccountWithDataSet> list = Lists.newArrayList(accounts);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
BrowseInfo.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
46 import com.android.tv.settings.accounts.AccountImageUriGetter;
47 import com.android.tv.settings.accounts.AccountSettingsActivity;
48 import com.android.tv.settings.accounts.AuthenticatorHelper;
329 // We don't display the accounts in restricted mode
354 // Add accounts to end of row.
496 Account[] accounts = AccountManager.get(mContext).getAccountsByType(accountType); local
498 googleAccountCount = accounts.length;
500 for (final Account account : accounts) {
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
AccountImageChangeObserver.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MiniDrawerView.java 108 // TODO: figure out the N most recent accounts, don't just take the first few
113 final Account[] accounts = mController.getAllAccounts(); local
115 for (Account a : accounts) {

Completed in 1225 milliseconds

1 2 3 4 56 7 8 91011>>