Lines Matching refs:key

1202      * search key.
2041 * extra field, {@link #EXTRA_KEY_EVENT}, containing the key event that
2049 * extra field, {@link #EXTRA_KEY_EVENT}, containing the key event that
2643 * <p>NOTE: This should not be used as the primary key of an Intent,
2655 * <p>NOTE: This should not be used as the primary key of an Intent,
2667 * <p>NOTE: This should not be used as the primary key of an Intent,
2679 * <p>NOTE: This should not be used as the primary key of an Intent,
2691 * <p>NOTE: This should not be used as the primary key of an Intent,
2704 * <p>NOTE: This should not be used as the primary key of an Intent,
2716 * <p>NOTE: This should not be used as the primary key of an Intent,
2728 * <p>NOTE: This should not be used as the primary key of an Intent,
2741 * <p>NOTE: This should not be used as the primary key of an Intent,
2946 * indicate that the dock should take over the home key when it is active.
3213 * (longpress home key).
3721 String key = Uri.decode(uri.substring(i + 2, eq));
3726 if (uri.startsWith("S.", i)) b.putString(key, value);
3727 else if (uri.startsWith("B.", i)) b.putBoolean(key, Boolean.parseBoolean(value));
3728 else if (uri.startsWith("b.", i)) b.putByte(key, Byte.parseByte(value));
3729 else if (uri.startsWith("c.", i)) b.putChar(key, value.charAt(0));
3730 else if (uri.startsWith("d.", i)) b.putDouble(key, Double.parseDouble(value));
3731 else if (uri.startsWith("f.", i)) b.putFloat(key, Float.parseFloat(value));
3732 else if (uri.startsWith("i.", i)) b.putInt(key, Integer.parseInt(value));
3733 else if (uri.startsWith("l.", i)) b.putLong(key, Long.parseLong(value));
3734 else if (uri.startsWith("s.", i)) b.putShort(key, Short.parseShort(value));
3846 // fetch the key value
3853 String key = uri.substring(i, j);
3870 intent.mExtras.putString(key, Uri.decode(value));
3873 intent.mExtras.putBoolean(key, Boolean.parseBoolean(value));
3876 intent.mExtras.putByte(key, Byte.parseByte(value));
3879 intent.mExtras.putChar(key, Uri.decode(value).charAt(0));
3882 intent.mExtras.putDouble(key, Double.parseDouble(value));
3885 intent.mExtras.putFloat(key, Float.parseFloat(value));
3888 intent.mExtras.putInt(key, Integer.parseInt(value));
3891 intent.mExtras.putLong(key, Long.parseLong(value));
3894 intent.mExtras.putShort(key, Short.parseShort(value));
4594 * associated with the key 'name'
6592 for (String key : mExtras.keySet()) {
6593 final Object value = mExtras.get(key);
6609 uri.append(Uri.encode(key));