OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Accounts
(Results
1 - 8
of
8
) 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
;
657
Accounts
.ACCOUNT_NAME,
658
Accounts
.ACCOUNT_TYPE
662
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/Gallery2/src/com/android/photos/data/
PhotoDatabase.java
22
import com.android.photos.data.PhotoProvider.
Accounts
;
43
// Photos.ACCOUNT_ID is a foreign key to
Accounts
._ID
58
// Albums.ACCOUNT_ID is a foreign key to
Accounts
._ID
82
{
Accounts
._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" },
83
{
Accounts
.ACCOUNT_NAME, "TEXT UNIQUE NOT NULL" },
88
createTable(db,
Accounts
.TABLE, getAccountTableDefinition());
116
dropTable(db,
Accounts
.TABLE);
PhotoProvider.java
67
* Contains columns that can be accessed via
Accounts
.CONTENT_URI
69
public static interface
Accounts
extends BaseColumns {
73
public static final String TABLE = "
accounts
";
99
/** Long foreign key to
Accounts
._ID */
138
/** Long foreign key to
Accounts
._ID */
266
sUriMatcher.addURI(AUTHORITY,
Accounts
.TABLE, MATCH_ACCOUNT);
267
// match against
Accounts
._ID
268
sUriMatcher.addURI(AUTHORITY,
Accounts
.TABLE + "/#", MATCH_ACCOUNT_ID);
407
table =
Accounts
.TABLE;
470
return nestWhere(Photos.ACCOUNT_ID,
Accounts
.TABLE, where)
[
all
...]
/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
;
121
Accounts
.ACCOUNT_NAME + " IS NOT NULL DESC, "
122
+
Accounts
.ACCOUNT_NAME + " ASC";
173
static final int
ACCOUNTS
= 7000;
206
matcher.addURI(authority, "
accounts
",
ACCOUNTS
);
247
//
Accounts
249
map.put(
Accounts
.ACCOUNT_TYPE, Accounts.ACCOUNT_TYPE)
494
Account[]
accounts
= am.getAccountsByType("com.google");
local
1784
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 213 milliseconds