Home | History | Annotate | Download | only in launcher3

Lines Matching refs:Cursor

34 import android.database.Cursor;
112 return "vnd.android.cursor.dir/" + args.table;
114 return "vnd.android.cursor.item/" + args.table;
144 public Cursor query(Uri uri, String[] projection, String selection,
153 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
323 try (Cursor c = db.query(Favorites.TABLE_NAME, new String[] { Favorites.APPWIDGET_ID },
438 Cursor c = db.query(Favorites.TABLE_NAME,
619 Cursor c = getReadableDatabase().query(
852 Cursor c = null;
908 Cursor c = db.query(WorkspaceScreens.TABLE_NAME,
959 Cursor c = db.rawQuery("SELECT container, MAX(cellX) FROM favorites"
1082 Cursor c = db.rawQuery("SELECT MAX(_id) FROM " + table, null);