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

  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 365 String account, int seed, long calendarId, boolean asSyncAdapter) {
373 values.put(Events.CALENDAR_ID, calendarId);
444 long calendarId, boolean asSyncAdapter, String startWhen, String duration,
448 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);
216 public void setCalendarId(long calendarId) {
217 if (calendarId != mCalendarId) {
218 mCalendarId = calendarId;
CalendarController.java 171 public long calendarId;
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);
    [all...]
DeleteEventHelper.java 379 long calendarId = mModel.mCalendarId;
383 values.put(Events.CALENDAR_ID, calendarId);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 408 * @param {integer} calendarId Id of the calendar in array of calendars.
410 CalendarManager.getCalendarFeed = function(calendarId) {
414 calendarId);
421 xmlhttp.open('GET', calendars[calendarId]);
435 * @param {integer} calendarId Variable for storing the no of calendars
439 CalendarManager.onCalendarResponse = function(xmlhttp, calendarId) {
450 CalendarManager.parseCalendarEntry(xmlhttp.responseXML, calendarId);
457 * @param {integer} calendarId Id of the calendar in array of calendars.
459 CalendarManager.parseCalendarEntry = function(responseXML, calendarId) {
488 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 256 long calendarId = entries.getLong(calendarIdColumn);
258 String syncIdKey = CalendarInstancesHelper.getSyncIdKey(syncId, calendarId);
366 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...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncParser.java 108 final long calendarId) throws IOException {
111 mCalendarId = calendarId;
    [all...]

Completed in 347 milliseconds