Lines Matching refs:where

175         private String[] where = new String[SIZE];
194 where[i] = "b >= " + lower + " AND b < " + upper;
201 .query("t1", COLUMNS, where[i], null, null, null, null);
214 private String[] where = new String[SIZE];
231 where[i] = "c LIKE '" + numberName(i) + "'";
238 .query("t1", COLUMNS, where[i], null, null, null, null);
251 private String[] where = new String[SIZE];
271 where[i] = "b >= " + lower + " AND b < " + upper;
278 .query("t1", COLUMNS, where[i], null, null, null, null);
406 private String[] where = new String[SIZE];
435 where[i] =
444 .query("t1", COLUMNS, where[i], null, null, null, null);
457 private String[] where = new String[SIZE];
475 where[i] = "c LIKE '" + numberName(i) + "'";
482 .query("t1", COLUMNS, where[i], null, null, null, null);
620 private String[] where = new String[SIZE];
639 where[i] = "c LIKE '" + numberName(r).substring(0, 1) + "*'";
648 .query("t1", COLUMNS, where[i], null, null, null, null);
715 * 1000 DELETE's without an index with where clause
720 private String[] where = new String[SIZE];
739 where[i] = "b >= " + lower + " AND b < " + upper;
745 mDatabase.delete("t1", where[i], null);
751 * 1000 DELETE's with an index with where clause
756 private String[] where = new String[SIZE];
776 where[i] = "b >= " + lower + " AND b < " + upper;
782 mDatabase.delete("t1", where[i], null);
788 * 1000 update's with an index with where clause
793 private String[] where = new String[SIZE];
815 where[i] = "b >= " + lower + " AND b < " + upper;
825 mDatabase.update("t1", mValues[i], where[i], null);
831 * 1000 update's without an index with where clause
836 private String[] where = new String[SIZE];
857 where[i] = "b >= " + lower + " AND b < " + upper;
866 mDatabase.update("t1", mValues[i], where[i], null);
1005 private String[] where = new String[SIZE];
1023 where[i] = "a LIKE '" + numberName(r).substring(0, 1) + "*'";
1030 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);
1043 private String[] where = new String[SIZE];
1062 where[i] = "a LIKE '" + numberName(r).substring(0, 1) + "*'";
1069 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);
1081 private String[] where = new String[SIZE];
1096 where[i] = "a >= " + lower + " AND a < " + upper;
1102 mDatabase.query("t4", COLUMNS, where[i], null, null, null, null);
1114 private String[] where = new String[SIZE];
1131 where[i] = "a >= " + lower + " AND a < " + upper;
1138 mDatabase.query("t4", COLUMNS, where[i], null, null, null, null);
1151 private String[] where = new String[SIZE];
1168 where[i] = "a LIKE '*e*'";
1175 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);
1188 private String[] where = new String[SIZE];
1206 where[i] = "a LIKE '*e*'";
1213 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);