HomeSort by relevance Sort by last modified time
    Searched refs:calendarId (Results 1 - 13 of 13) sorted by null

  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 366 String account, int seed, long calendarId, boolean asSyncAdapter) {
374 values.put(Events.CALENDAR_ID, calendarId);
445 long calendarId, boolean asSyncAdapter, String startWhen, String duration,
449 ContentValues values = getNewEventValues(account, seed, calendarId, asSyncAdapter);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarColorPickerDialog.java 160 public static CalendarColorPickerDialog newInstance(long calendarId, boolean isTablet) {
164 ret.setCalendarId(calendarId);
212 public void setCalendarId(long calendarId) {
213 if (calendarId != mCalendarId) {
214 mCalendarId = calendarId;
CalendarController.java 170 public long calendarId;
357 * @param calendarId The id of the calendar which the event belongs to
361 long selectedMillis, String title, long calendarId) {
383 info.calendarId = calendarId;
596 event.calendarId);
731 String title, long calendarId) {
733 calendarId);
739 boolean allDayEvent, String title, long calendarId) {
745 intent.putExtra(Events.CALENDAR_ID, calendarId);
    [all...]
DeleteEventHelper.java 379 long calendarId = mModel.mCalendarId;
383 values.put(Events.CALENDAR_ID, calendarId);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 403 * @param {integer} calendarId Id of the calendar in array of calendars.
405 CalendarManager.getCalendarFeed = function(calendarId) {
409 calendarId);
416 xmlhttp.open('GET', calendars[calendarId]);
430 * @param {integer} calendarId Variable for storing the no of calendars
434 CalendarManager.onCalendarResponse = function(xmlhttp, calendarId) {
445 CalendarManager.parseCalendarEntry(xmlhttp.responseXML, calendarId);
452 * @param {integer} calendarId Id of the calendar in array of calendars.
454 CalendarManager.parseCalendarEntry = function(responseXML, calendarId) {
475 calendarId++
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventActivity.java 156 info.calendarId = intent.getLongExtra(Events.CALENDAR_ID, -1);
EditEventFragment.java 479 if (mEvent.calendarId != -1) {
480 mCalendarId = mEvent.calendarId;
    [all...]
EditEventView.java     [all...]
EditEventHelper.java     [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java 258 long calendarId = entries.getLong(calendarIdColumn);
260 String syncIdKey = CalendarInstancesHelper.getSyncIdKey(syncId, calendarId);
368 CalendarInstancesHelper.getSyncIdKey(originalEvent, calendarId));
    [all...]
CalendarProvider2.java     [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 100 * 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{
108 m.put(CalendarContract.Events.CALENDAR_ID, calendarId);
  /frameworks/base/core/java/android/provider/
CalendarContract.java 521 final long calendarId = cursor.getLong(cursor.getColumnIndexOrThrow(_ID));
525 cv.put(_ID, calendarId);
    [all...]

Completed in 244 milliseconds