Lines Matching defs:where
941 public int delete(Uri url, String where, String[] whereArgs) {
955 if (where != null && where.length() > 0) {
957 sb.append(where);
963 where = sb.toString();
982 int count = db.delete(TABLE_NAMES[match % 10], where, whereArgs);
988 public int update(Uri url, ContentValues values, String where,
999 if (where != null && where.length() > 0) {
1001 sb.append(where);
1007 where = sb.toString();
1044 int ret = db.update(TABLE_NAMES[match % 10], values, where, whereArgs);