HomeSort by relevance Sort by last modified time
    Searched defs:Events (Results 1 - 5 of 5) sorted by null

  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 45 protected Uri mEventsUri = Calendar.Events.CONTENT_URI;
55 EVENT_COLUMNS_TO_SKIP.add(Calendar.Events._ID);
56 EVENT_COLUMNS_TO_SKIP.add(Calendar.Events._SYNC_TIME);
57 EVENT_COLUMNS_TO_SKIP.add(Calendar.Events._SYNC_VERSION);
58 EVENT_COLUMNS_TO_SKIP.add(Calendar.Events._SYNC_DATA);
59 EVENT_COLUMNS_TO_SKIP.add(Calendar.Events._SYNC_DIRTY);
60 EVENT_COLUMNS_TO_SKIP.add(Calendar.Events._SYNC_MARK);
109 m.put(Calendar.Events.CALENDAR_ID, calendarId);
110 m.put(Calendar.Events.TITLE, event.mTitle);
111 m.put(Calendar.Events.DTSTART, event.mDtstart)
    [all...]
  /external/chromium/net/tools/flip_server/
epoll_server.h 24 // events. Note that enabling this code vastly slows
49 EpollEvent(int events, bool is_epoll_wait)
50 : in_events(events),
54 int in_events; // incoming events
131 // By default, we don't wait any amount of time for events, and
145 // in the set of events included in event_mask occurs on the
164 // the events for which the callback would like to be
226 // no longer request events when 'fd' is readable.
237 // request events when 'fd' is readable.
248 // no longer request events when 'fd' is writable
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 1219 var Events = new Class({
1221 $events: {},
1224 type = Events.removeOn(type);
1226 this.$events[type] = this.$events[type] || [];
1227 this.$events[type].include(fn);
1233 addEvents: function(events){
1234 for (var type in events) this.addEvent(type, events[type]);
1239 type = Events.removeOn(type)
    [all...]
  /frameworks/base/core/java/android/provider/
Calendar.java 42 * The Calendar provider contains all calendar events.
119 * The timezone the calendar's events occurs in
273 * The location the of the events in the calendar
362 * Columns from the Events table that other tables join into themselves.
409 * events that are declined without having to look in the Attendees
599 * Contains one entry per calendar event. Recurring events show up as a single entry.
666 final long eventId = cursor.getLong(cursor.getColumnIndexOrThrow(Events._ID));
668 cv.put(Events._ID, eventId);
796 * Contains one entry per calendar event. Recurring events show up as a single entry.
798 public static final class Events implements BaseColumns, EventsColumns, CalendarsColumns
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 51 import android.provider.Calendar.Events;
91 new String[] {Events._ID};
94 Events._SYNC_ID,
95 Events.RRULE,
96 Events.RDATE,
97 Events.ORIGINAL_EVENT,
112 * Projection to query for correcting times in allDay events.
115 Events._ID,
116 Events.DTSTART,
117 Events.DTEND
    [all...]

Completed in 395 milliseconds