Searched defs:calendarId (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarColorPickerDialog.java160 public static CalendarColorPickerDialog newInstance(long calendarId, boolean isTablet) { argument
164 ret.setCalendarId(calendarId);
216 public void setCalendarId(long calendarId) { argument
217 if (calendarId != mCalendarId) {
218 mCalendarId = calendarId;
H A DCalendarController.java171 public long calendarId; field in class:CalendarController.EventInfo
363 * @param calendarId The id of the calendar which the event belongs to
367 long selectedMillis, String title, long calendarId) {
389 info.calendarId = calendarId;
602 event.calendarId);
737 String title, long calendarId) {
739 calendarId);
745 boolean allDayEvent, String title, long calendarId) {
751 intent.putExtra(Events.CALENDAR_ID, calendarId);
365 sendEventRelatedEventWithExtraWithTitleWithCalendarId(Object sender, long eventType, long eventId, long startMillis, long endMillis, int x, int y, long extraLong, long selectedMillis, String title, long calendarId) argument
736 launchCreateEvent(long startMillis, long endMillis, boolean allDayEvent, String title, long calendarId) argument
744 generateCreateEventIntent(long startMillis, long endMillis, boolean allDayEvent, String title, long calendarId) argument
[all...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarInstancesHelper.java258 long calendarId = entries.getLong(calendarIdColumn);
260 String syncIdKey = CalendarInstancesHelper.getSyncIdKey(syncId, calendarId);
368 CalendarInstancesHelper.getSyncIdKey(originalEvent, calendarId));
866 * Generates a unique key from the syncId and calendarId. The purpose of
873 * @param calendarId Id for the calendar
876 static String getSyncIdKey(String syncId, long calendarId) { argument
877 return calendarId + ":" + syncId;
H A DCalendarProvider2.java2017 long calendarId = values.getAsLong(Events.CALENDAR_ID);
2018 String accountName = getOwner(calendarId);
2092 String calendarId = values.getAsString(Events.CALENDAR_ID);
2094 if (TextUtils.isEmpty(syncId) || TextUtils.isEmpty(calendarId) ||
2104 new String[] { syncId, calendarId });
2627 private long getOriginalId(String originalSyncId, String calendarId) { argument
2628 if (TextUtils.isEmpty(originalSyncId) || TextUtils.isEmpty(calendarId)) {
2637 new String[] {originalSyncId, calendarId}, null);
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarSyncTestingBase.java100 * Creates a new event in the given calendarId.
101 * @param calendarId Calendar to be used.
106 protected Uri insertEvent(int calendarId, EventInfo event) throws Exception{ argument
108 m.put(CalendarContract.Events.CALENDAR_ID, calendarId);
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DCalendarSyncParser.java107 final long calendarId) throws IOException {
110 mCalendarId = calendarId;
104 CalendarSyncParser(final Context context, final ContentResolver resolver, final InputStream in, final Mailbox mailbox, final Account account, final android.accounts.Account accountManagerAccount, final long calendarId) argument
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventView.java1468 private int findSelectedCalendarPosition(Cursor calendarsCursor, long calendarId) { argument
1476 if (calendarsCursor.getLong(calendarIdColumn) == calendarId) {
1734 long calendarId = c.getLong(idColumn);
1740 if (calendarId == mModel.mCalendarId && mModel.isCalendarColorInitialized() &&
1747 mModel.mCalendarId = calendarId;

Completed in 373 milliseconds