Searched refs:Accounts (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Browser/src/com/android/browser/ |
D | AccountsChangedReceiver.java | 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 + "=?"; 56 Cursor c = cr.query(Accounts.CONTENT_URI, PROJECTION, in run() 65 cr.update(Accounts.CONTENT_URI, null, null, null); in run()
|
D | BrowserBookmarksPage.java | 40 import android.provider.BrowserContract.Accounts; 657 Accounts.ACCOUNT_NAME, 658 Accounts.ACCOUNT_TYPE 662 super(context, Accounts.CONTENT_URI in AccountsLoader()
|
D | AddBookmarkPage.java | 44 import android.provider.BrowserContract.Accounts; 1012 Accounts.ACCOUNT_NAME, 1013 Accounts.ACCOUNT_TYPE, 1014 Accounts.ROOT_ID, 1022 super(context, Accounts.CONTENT_URI, PROJECTION, null, null, null); in AccountsLoader()
|
/packages/apps/Browser/src/com/android/browser/widget/ |
D | 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 in AccountsLoader()
|
/packages/apps/Gallery2/src/com/android/photos/data/ |
D | PhotoDatabase.java | 22 import com.android.photos.data.PhotoProvider.Accounts; 82 { Accounts._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" }, 83 { Accounts.ACCOUNT_NAME, "TEXT UNIQUE NOT NULL" }, 88 createTable(db, Accounts.TABLE, getAccountTableDefinition()); in onCreate() 116 dropTable(db, Accounts.TABLE); in recreate()
|
D | PhotoProvider.java | 69 public static interface Accounts extends BaseColumns { interface in PhotoProvider 266 sUriMatcher.addURI(AUTHORITY, Accounts.TABLE, MATCH_ACCOUNT); in sUriMatcher.addURI() 268 sUriMatcher.addURI(AUTHORITY, Accounts.TABLE + "/#", MATCH_ACCOUNT_ID); in sUriMatcher.addURI() 407 table = Accounts.TABLE; in getTableFromMatch() 470 return nestWhere(Photos.ACCOUNT_ID, Accounts.TABLE, where); in photoSelectionFromAccounts() 474 return nestWhere(Albums.ACCOUNT_ID, Accounts.TABLE, where); in albumSelectionFromAccounts()
|
/packages/apps/Browser/src/com/android/browser/provider/ |
D | BrowserProvider2.java | 43 import android.provider.BrowserContract.Accounts; 121 Accounts.ACCOUNT_NAME + " IS NOT NULL DESC, " 122 + Accounts.ACCOUNT_NAME + " ASC"; 249 map.put(Accounts.ACCOUNT_TYPE, Accounts.ACCOUNT_TYPE); in map.put() 250 map.put(Accounts.ACCOUNT_NAME, Accounts.ACCOUNT_NAME); in map.put() 251 map.put(Accounts.ROOT_ID, Accounts.ROOT_ID); in map.put() 593 + "SELECT NULL AS " + Accounts.ACCOUNT_NAME in createAccountsView() 594 + ", NULL AS " + Accounts.ACCOUNT_TYPE in createAccountsView() 595 + ", " + FIXED_ID_ROOT + " AS " + Accounts.ROOT_ID in createAccountsView() 596 + " UNION ALL SELECT " + Accounts.ACCOUNT_NAME in createAccountsView() [all …]
|