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

  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 52 private static final String TABLE_FAVORITES = "favorites";
405 if (TABLE_FAVORITES.equals(args.table)) {
408 args.table = TABLE_FAVORITES;
442 if (TABLE_FAVORITES.equals(args.table)) {
543 if (TABLE_FAVORITES.equals(args.table)) {
578 if (TABLE_FAVORITES.equals(args.table)) {
581 args.table = TABLE_FAVORITES;
601 if (TABLE_FAVORITES.equals(args.table)) {
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 72 static final String TABLE_FAVORITES = "favorites";
355 if (dbInsertAndCheck(this, db, TABLE_FAVORITES, null, rows[i]) < 0) {
455 db.execSQL("DROP TABLE IF EXISTS " + TABLE_FAVORITES);
468 c = db.query(TABLE_FAVORITES, new String[] { Favorites._ID, Favorites.INTENT },
503 db.update(TABLE_FAVORITES, values, updateWhere, null);
635 c = db.query(TABLE_FAVORITES, new String[] { Favorites._ID, Favorites.ITEM_TYPE },
667 db.update(TABLE_FAVORITES, values, updateWhere, null);
    [all...]

Completed in 249 milliseconds