Searched defs:calendarId (Results 1 - 5 of 5) 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.java256 long calendarId = entries.getLong(calendarIdColumn);
258 String syncIdKey = CalendarInstancesHelper.getSyncIdKey(syncId, calendarId);
366 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.java2008 long calendarId = values.getAsLong(Events.CALENDAR_ID);
2009 String accountName = getOwner(calendarId);
2083 String calendarId = values.getAsString(Events.CALENDAR_ID);
2085 if (TextUtils.isEmpty(syncId) || TextUtils.isEmpty(calendarId) ||
2095 new String[] { syncId, calendarId });
2646 private long getOriginalId(String originalSyncId, String calendarId) { argument
2647 if (TextUtils.isEmpty(originalSyncId) || TextUtils.isEmpty(calendarId)) {
2656 new String[] {originalSyncId, calendarId}, null);
/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 248 milliseconds