Home | History | Annotate | Download | only in calendar

Lines Matching refs:KEY

54                 CalendarCache.KEY, CalendarCache.VALUE
74 * This is the key used for writing whether or not a home time zone should
79 * This is the key used for writing the time zone that should be used if
104 int keyColumn = cursor.getColumnIndexOrThrow(CalendarCache.KEY);
107 String key = cursor.getString(keyColumn);
109 if (TextUtils.equals(key, CalendarCache.KEY_TIMEZONE_TYPE)) {
117 key, CalendarCache.KEY_TIMEZONE_INSTANCES_PREVIOUS)) {
243 mHandler.startUpdate(mToken, null, CalendarCache.URI, values, "key=?",
251 "key=?", TIMEZONE_INSTANCES_ARGS);
327 * @param key The preference to write to
330 public static void setSharedPreference(SharedPreferences prefs, String key, String value) {
333 editor.putString(key, value);
342 * @param key The preference to write to
345 public static void setSharedPreference(SharedPreferences prefs, String key, boolean value) {
348 editor.putBoolean(key, value);