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

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherSettings.java 101 LauncherProvider.AUTHORITY + "/" + LauncherProvider.TABLE_FAVORITES +
109 LauncherProvider.AUTHORITY + "/" + LauncherProvider.TABLE_FAVORITES +
122 "/" + LauncherProvider.TABLE_FAVORITES + "/" + id + "?" +
LauncherProvider.java 72 static final String TABLE_FAVORITES = "favorites";
324 if (db.insert(TABLE_FAVORITES, null, rows[i]) < 0) {
412 db.execSQL("DROP TABLE IF EXISTS " + TABLE_FAVORITES);
425 c = db.query(TABLE_FAVORITES, new String[] { Favorites._ID, Favorites.INTENT },
460 db.update(TABLE_FAVORITES, values, updateWhere, null);
560 c = db.query(TABLE_FAVORITES, new String[] { Favorites._ID, Favorites.ITEM_TYPE },
592 db.update(TABLE_FAVORITES, values, updateWhere, null);
715 db.insert(TABLE_FAVORITES, null, values);
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 52 private static final String TABLE_FAVORITES = "favorites";
294 if (TABLE_FAVORITES.equals(args.table)) {
297 args.table = TABLE_FAVORITES;
331 if (TABLE_FAVORITES.equals(args.table)) {
427 if (TABLE_FAVORITES.equals(args.table)) {
460 if (TABLE_FAVORITES.equals(args.table)) {
463 args.table = TABLE_FAVORITES;
480 if (TABLE_FAVORITES.equals(args.table)) {

Completed in 154 milliseconds