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

  /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();
  /packages/apps/Gallery2/src/com/android/photos/data/
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...]

Completed in 115 milliseconds