Home | History | Annotate | Download | only in calendar

Lines Matching refs:CalendarCache

26 import android.provider.CalendarContract.CalendarCache;
50 private static final String[] TIMEZONE_TYPE_ARGS = { CalendarCache.KEY_TIMEZONE_TYPE };
52 { CalendarCache.KEY_TIMEZONE_INSTANCES };
54 CalendarCache.KEY, CalendarCache.VALUE
104 int keyColumn = cursor.getColumnIndexOrThrow(CalendarCache.KEY);
105 int valueColumn = cursor.getColumnIndexOrThrow(CalendarCache.VALUE);
109 if (TextUtils.equals(key, CalendarCache.KEY_TIMEZONE_TYPE)) {
111 value, CalendarCache.TIMEZONE_TYPE_AUTO);
117 key, CalendarCache.KEY_TIMEZONE_INSTANCES_PREVIOUS)) {
192 * {@link CalendarCache#TIMEZONE_TYPE_AUTO} will cause it to be set
197 * {@link CalendarCache#TIMEZONE_TYPE_AUTO}
208 if (CalendarCache.TIMEZONE_TYPE_AUTO.equals(timeZone)) {
241 values.put(CalendarCache.VALUE, mUseHomeTZ ? CalendarCache.TIMEZONE_TYPE_HOME
242 : CalendarCache.TIMEZONE_TYPE_AUTO);
243 mHandler.startUpdate(mToken, null, CalendarCache.URI, values, "key=?",
249 values2.put(CalendarCache.VALUE, mHomeTZ);
250 mHandler.startUpdate(mToken, null, CalendarCache.URI, values2,
289 mHandler.startQuery(0, context, CalendarCache.URI, CALENDAR_CACHE_POJECTION,