Lines Matching refs:key

400      * return the collation key
402 * @return the collation key
414 * return the collation key in hex format
416 * @return the collation key in hex format
581 * @param values The {@link ContentValues} to put the value into, with the field as the key
606 * @param values The {@link ContentValues} to put the value into, with the field as the key
607 * @param key The key to store the value with in the map
610 ContentValues values, String key) {
611 values.put(key, cursor.getString(cursor.getColumnIndexOrThrow(field)));
619 * @param values The {@link ContentValues} to put the value into, with the field as the key
630 * @param values The {@link ContentValues} to put the value into, with the field as the key
631 * @param key The key to store the value with in the map
634 String key) {
637 values.put(key, cursor.getInt(colIndex));
639 values.put(key, (Integer) null);
648 * @param values The {@link ContentValues} to put the value into, with the field as the key
661 * @param key The key to store the value with in the map
664 String key) {
668 values.put(key, value);
670 values.put(key, (Long) null);
692 * @param key The key to store the value with in the map
695 ContentValues values, String key) {
698 values.put(key, cursor.getDouble(colIndex));
700 values.put(key, (Double) null);
1094 final String key = e.getKey();
1095 int i = getColumnIndex(key);
1099 i + " (" + key + ")");
1116 * @param key the column name
1119 public int getColumnIndex(String key) {
1121 final Integer index = mColumns.get(key);
1123 throw new IllegalArgumentException("column '" + key + "' is invalid");