Home | History | Annotate | Download | only in calendar

Lines Matching refs:Instances

30 import android.provider.CalendarContract.Instances;
65 // The projection to use when querying instances to build a list of events
67 Instances.TITLE, // 0
68 Instances.EVENT_LOCATION, // 1
69 Instances.ALL_DAY, // 2
70 Instances.DISPLAY_COLOR, // 3 If SDK < 16, set to Instances.CALENDAR_COLOR.
71 Instances.EVENT_TIMEZONE, // 4
72 Instances.EVENT_ID, // 5
73 Instances.BEGIN, // 6
74 Instances.END, // 7
75 Instances._ID, // 8
76 Instances.START_DAY, // 9
77 Instances.END_DAY, // 10
78 Instances.START_MINUTE, // 11
79 Instances.END_MINUTE, // 12
80 Instances.HAS_ALARM, // 13
81 Instances.RRULE, // 14
82 Instances.RDATE, // 15
83 Instances.SELF_ATTENDEE_STATUS, // 16
86 Instances.ALL_DAY + "=1 OR (" + Instances.END + "-" + Instances.BEGIN + ")>="
113 EVENT_PROJECTION[PROJECTION_COLOR_INDEX] = Instances.CALENDAR_COLOR;
221 * Loads <i>days</i> days worth of instances starting at <i>startDay</i>.
237 // We use the byDay instances query to get a list of all events for
255 String hideString = " AND " + Instances.SELF_ATTENDEE_STATUS + "!="
289 * Performs a query to return all visible instances in the given range
305 * @return A Cursor of instances matching the selection
313 Uri.Builder builder = Instances.CONTENT_BY_DAY_URI.buildUpon();