Home | History | Annotate | Download | only in launcher2

Lines Matching defs:where

111         if (TextUtils.isEmpty(args.where)) {
127 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
144 db.delete(args.table, args.where, args.args);
188 int count = db.delete(args.table, args.where, args.args);
199 int count = db.update(args.table, values, args.where, args.args);
332 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
528 // Where's version 5?
719 + "SET icon=? WHERE _id=?");
721 c = db.rawQuery("SELECT _id, icon FROM favorites WHERE iconType=" +
1265 * Build a query string that will match any row where the column matches
1281 public final String where;
1284 SqlArguments(Uri url, String where, String[] args) {
1287 this.where = where;
1291 } else if (!TextUtils.isEmpty(where)) {
1292 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
1295 this.where = "_id=" + ContentUris.parseId(url);
1303 where = null;