Home | History | Annotate | Download | only in provider

Lines Matching defs:Attendees

59  * one-time or can recur multiple times. Attendees, reminders, and extended
67 * <li>The {@link Attendees} table holds the event attendee or guest
466 * in the format "#,#,#". Valid types are {@link Attendees#TYPE_NONE},
467 * {@link Attendees#TYPE_OPTIONAL}, {@link Attendees#TYPE_REQUIRED},
468 * {@link Attendees#TYPE_RESOURCE}. Setting this field to only
469 * {@link Attendees#TYPE_NONE} should be used to indicate that changing
750 * Columns from the Attendees table that other tables join into themselves.
832 * Fields and helpers for interacting with Attendees. Each row of this table
834 * {@link #query(ContentResolver, long, String[])} will return a list of attendees for
850 public static final class Attendees implements BaseColumns, AttendeesColumns, EventsColumns {
853 * The content:// style URL for accessing Attendees data
856 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/attendees");
857 private static final String ATTENDEES_WHERE = Attendees.EVENT_ID + "=?";
862 private Attendees() {}
865 * Queries all attendees associated with the given event. This is a
869 * @param eventId The id of the event to retrieve attendees for
871 * @return A Cursor containing all attendees for the event
954 * events that are declined without having to look in the Attendees
1213 * Whether guests can see the list of attendees. Column name.
1270 * queries to add reminders and attendees to each entry.
1321 Attendees.ATTENDEE_NAME,
1322 Attendees.ATTENDEE_EMAIL,
1323 Attendees.ATTENDEE_RELATIONSHIP,
1324 Attendees.ATTENDEE_TYPE,
1325 Attendees.ATTENDEE_STATUS,
1326 Attendees.ATTENDEE_IDENTITY,
1327 Attendees.ATTENDEE_ID_NAMESPACE
1456 subCursor = mResolver.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION,
1461 subCursor = mProvider.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION,
1469 attendeeValues.put(Attendees.ATTENDEE_NAME,
1471 attendeeValues.put(Attendees.ATTENDEE_EMAIL,
1473 attendeeValues.put(Attendees.ATTENDEE_RELATIONSHIP,
1475 attendeeValues.put(Attendees.ATTENDEE_TYPE,
1477 attendeeValues.put(Attendees.ATTENDEE_STATUS,
1479 attendeeValues.put(Attendees.ATTENDEE_IDENTITY,
1481 attendeeValues.put(Attendees.ATTENDEE_ID_NAMESPACE,
1483 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
1562 * events except their reminders, attendees, and extended properties. There