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

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 77 static final String TABLE_FAVORITES = "favorites";
483 if (dbInsertAndCheck(this, db, TABLE_FAVORITES, null, rows[i]) < 0) {
601 db.execSQL("DROP TABLE IF EXISTS " + TABLE_FAVORITES);
639 c = db.query(TABLE_FAVORITES,
685 db.update(TABLE_FAVORITES, values, updateWhere, null);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherProvider.java 74 static final String TABLE_FAVORITES = LauncherSettings.Favorites.TABLE_NAME;
312 + TABLE_FAVORITES + ")";
313 Cursor c = db.query(TABLE_FAVORITES,
321 db.delete(TABLE_FAVORITES, Utilities.createDbSelectionQuery(
500 if (!tableExists(TABLE_FAVORITES) || !tableExists(TABLE_WORKSPACE_SCREENS)) {
601 db.execSQL("CREATE TABLE " + ifNotExists + TABLE_FAVORITES + " (" +
642 String removeOrphanedDesktopItems = "DELETE FROM " + TABLE_FAVORITES +
654 String removeOrphanedFolderItems = "DELETE FROM " + TABLE_FAVORITES +
663 LauncherSettings.Favorites._ID + " FROM " + TABLE_FAVORITES +
792 db.execSQL("DROP TABLE IF EXISTS " + TABLE_FAVORITES);
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 126 private static final String TABLE_FAVORITES = "favorites";
135 REMOVED_LEGACY_TABLES.add(TABLE_FAVORITES);
    [all...]

Completed in 90 milliseconds