Lines Matching defs:values

980      * statement and fill in those values with {@link SQLiteProgram#bindString}
986 * @param sql The raw SQL statement, may contain ? for unknown values to be
1012 * replaced by the values from selectionArgs, in order that they
1013 * appear in the selection. The values will be bound as Strings.
1050 * replaced by the values from selectionArgs, in order that they
1051 * appear in the selection. The values will be bound as Strings.
1092 * replaced by the values from selectionArgs, in order that they
1093 * appear in the selection. The values will be bound as Strings.
1132 * replaced by the values from selectionArgs, in order that they
1133 * appear in the selection. The values will be bound as Strings.
1181 * replaced by the values from selectionArgs, in order that they
1182 * appear in the selection. The values will be bound as Strings.
1217 * replaced by the values from selectionArgs, in order that they
1218 * appear in the selection. The values will be bound as Strings.
1249 * which will be replaced by the values from selectionArgs. The
1250 * values will be bound as Strings.
1263 * which will be replaced by the values from selectionArgs. The
1264 * values will be bound as Strings.
1282 * which will be replaced by the values from selectionArgs. The
1283 * values will be bound as Strings.
1300 * which will be replaced by the values from selectionArgs. The
1301 * values will be bound as Strings.
1329 * naming at least one column name. If your provided <code>values</code> is
1333 * in the case where your <code>values</code> is empty.
1334 * @param values this map contains the initial column values for the
1335 * row. The keys should be the column names and the values the
1336 * column values
1339 public long insert(String table, String nullColumnHack, ContentValues values) {
1341 return insertWithOnConflict(table, nullColumnHack, values, CONFLICT_NONE);
1343 Log.e(TAG, "Error inserting " + values, e);
1354 * naming at least one column name. If your provided <code>values</code> is
1358 * in the case where your <code>values</code> is empty.
1359 * @param values this map contains the initial column values for the
1360 * row. The keys should be the column names and the values the
1361 * column values
1365 public long insertOrThrow(String table, String nullColumnHack, ContentValues values)
1367 return insertWithOnConflict(table, nullColumnHack, values, CONFLICT_NONE);
1381 * @param initialValues this map contains the initial column values for
1406 * @param initialValues this map contains the initial column values for
1428 * @param initialValues this map contains the initial column values for the
1429 * row. The keys should be the column names and the values the
1430 * column values
1487 * will be replaced by the values from whereArgs. The values
1512 * @param values a map from column names to new column values. null is a
1517 * will be replaced by the values from whereArgs. The values
1521 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {
1522 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
1529 * @param values a map from column names to new column values. null is a
1534 * will be replaced by the values from whereArgs. The values
1539 public int updateWithOnConflict(String table, ContentValues values,
1541 if (values == null || values.size() == 0) {
1542 throw new IllegalArgumentException("Empty values");
1554 int setValuesSize = values.size();
1558 for (String colName : values.keySet()) {
1561 bindArgs[i++] = values.get(colName);