Home | History | Annotate | Download | only in provider

Lines Matching defs:Calendars

80      * Columns from the Calendars table that other tables join into themselves.
125 * If this calendar is in the list of calendars that are selected for
204 * Contains a list of available calendars.
206 public static class Calendars implements BaseColumns, CalendarsColumns
208 private static final String WHERE_DELETE_FOR_ACCOUNT = Calendars._SYNC_ACCOUNT + "=?"
209 + " AND " + Calendars._SYNC_ACCOUNT_TYPE + "=?";
231 * Convenience method to delete all calendars that match the account.
238 // delete all calendars that match this account
239 return Calendar.Calendars.delete(cr,
247 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/calendars");
286 * This will be different from the _SYNC_ACCOUNT for delegated calendars.
368 * <P>Type: INTEGER (foreign key to the Calendars table)</P>
586 * key into the calendars table).
707 DatabaseUtils.cursorStringToContentValuesIfPresent(cursor, cv, Calendars.URL);
851 private static final String WHERE_CALENDARS_SELECTED = Calendars.SELECTED + "=1";