HomeSort by relevance Sort by last modified time
    Searched refs:Accounts (Results 1 - 6 of 6) sorted by null

  /packages/apps/Browser/src/com/android/browser/
AccountsChangedReceiver.java 18 import android.accounts.Account;
19 import android.accounts.AccountManager;
27 import android.provider.BrowserContract.Accounts;
34 Accounts.ACCOUNT_NAME,
35 Accounts.ACCOUNT_TYPE,
37 private static final String SELECTION = Accounts.ACCOUNT_NAME + " IS NOT NULL";
38 private static final String DELETE_SELECTION = Accounts.ACCOUNT_NAME + "=? AND "
39 + Accounts.ACCOUNT_TYPE + "=?";
54 Account[] accounts = AccountManager.get(mContext).getAccounts(); local
56 Cursor c = cr.query(Accounts.CONTENT_URI, PROJECTION
    [all...]
BrowserBookmarksPage.java 40 import android.provider.BrowserContract.Accounts;
649 Accounts.ACCOUNT_NAME,
650 Accounts.ACCOUNT_TYPE
654 super(context, Accounts.CONTENT_URI
AddBookmarkPage.java 44 import android.provider.BrowserContract.Accounts;
688 mAccountSpinner = (Spinner) findViewById(R.id.accounts);
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetConfigure.java 28 import android.provider.BrowserContract.Accounts;
120 Accounts.ACCOUNT_NAME,
121 Accounts.ACCOUNT_TYPE,
122 Accounts.ROOT_ID,
130 super(context, Accounts.CONTENT_URI
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
43 import android.provider.BrowserContract.Accounts;
119 Accounts.ACCOUNT_NAME + " IS NOT NULL DESC, "
120 + Accounts.ACCOUNT_NAME + " ASC";
171 static final int ACCOUNTS = 7000;
204 matcher.addURI(authority, "accounts", ACCOUNTS);
245 // Accounts
247 map.put(Accounts.ACCOUNT_TYPE, Accounts.ACCOUNT_TYPE)
492 Account[] accounts = am.getAccountsByType("com.google"); local
1732 Account[] accounts = AccountManager.get(getContext()).getAccounts(); local
    [all...]
  /frameworks/base/core/java/android/provider/
BrowserContract.java 19 import android.accounts.Account;
403 * Read-only table that lists all the accounts that are used to provide bookmarks.
406 public static final class Accounts {
411 AUTHORITY_URI.buildUpon().appendPath("accounts").build();

Completed in 54 milliseconds