Searched defs:events (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Mms/src/org/w3c/dom/events/
H A DDocumentEvent.java13 package org.w3c.dom.events;
H A DEventListener.java13 package org.w3c.dom.events;
17 * handling events. Users implement the <code>EventListener</code> interface
H A DEventException.java13 package org.w3c.dom.events;
H A DEventTarget.java13 package org.w3c.dom.events;
22 * of events to that <code>EventTarget</code>.
45 * events of the specified type will be dispatched to the registered
80 * This method allows the dispatch of events into the implementations
82 * capturing and bubbling behavior as events dispatched directly by the
H A DEvent.java13 package org.w3c.dom.events;
84 * be not available for all events. When not available, a value of 0
131 * events use their own prefix to avoid confusion and lessen the
132 * probability of conflicts with other new events.
/packages/apps/Mms/src/com/android/mms/dom/events/
H A DEventTargetImpl.java18 package com.android.mms.dom.events;
22 import org.w3c.dom.events.Event;
23 import org.w3c.dom.events.EventException;
24 import org.w3c.dom.events.EventListener;
25 import org.w3c.dom.events.EventTarget;
H A DEventImpl.java18 package com.android.mms.dom.events;
20 import org.w3c.dom.events.Event;
21 import org.w3c.dom.events.EventTarget;
/packages/apps/Calendar/src/com/android/calendar/
H A DEventLoader.java93 //query which days have events
99 //Set all the days with events to true
129 public ArrayList<Event> events; field in class:EventLoader.LoadEventsRequest
133 public LoadEventsRequest(int id, int startDay, int numDays, ArrayList<Event> events, argument
138 this.events = events;
144 Event.loadEvents(eventLoader.mContext, events, startDay,
231 * Loads "numDays" days worth of events, starting at start, into events.
233 * Reuses an existing background thread, if events wer
239 loadEventsInBackground(final int numDays, final ArrayList<Event> events, int startDay, final Runnable successCallback, final Runnable cancelCallback) argument
[all...]
H A DEvent.java48 * 1) events with an earlier start (begin for normal events, startday for allday)
49 * 2) events with a later end (end for normal events, endday for allday)
52 * The start and end day is sorted first so that all day events are
53 * sorted correctly with respect to events that are >24 hours (and
65 // The projection to use when querying instances to build a list of events
149 // These 4 fields are used for navigating among events within the selected
223 public static void loadEvents(Context context, ArrayList<Event> events, int startDay, int days, argument
233 events
341 buildEventsFromCursor( ArrayList<Event> events, Cursor cEvents, Context context, int startDay, int endDay) argument
[all...]
H A DUtils.java81 // For recurring events which instances of the series are being modified
683 * @return true when declined events should be hidden.
834 // white. The result is the color that should be used for declined events.
844 // A single strand represents one color of events. Events are divided up by
846 // that it holds conflicting events as well as color settings for allday on
866 * Converts a list of events to a list of segments to draw. Assumes list is
867 * ordered by start time of the events. The function processes events for a
869 * The algorithm goes over all the events and creates a set of segments
886 * @param firstJulianDay The julian day of the first day of events
894 createDNAStrands(int firstJulianDay, ArrayList<Event> events, int top, int bottom, int minPixels, int[] dayXs, Context context) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthByWeekAdapter.java130 public void setEvents(int firstJulianDay, int numDays, ArrayList<Event> events) { argument
133 Log.e(TAG, "Attempted to set events for mini view. Events only supported in full"
138 mEvents = events;
148 if (events == null || events.size() == 0) {
150 Log.d(TAG, "No events. Returning early--go schedule something fun.");
157 // Compute the new set of days with events
158 for (Event event : events) {
180 Log.d(TAG, "Processed " + events.size() + " events
[all...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertService.java305 // Process the query results and bucketize events.
323 // If there are more high/medium priority events than we can show, bump some to
328 // Post the individual higher priority events (future and recently started
329 // concurrent events). Order these so that earlier start times appear higher in
338 // Keep concurrent events high priority (to appear higher in the notification list)
343 // Post the medium priority events (concurrent events that started a while ago).
347 // events, so that all notifications will be co-located together.
361 // Post the low priority events as 1 combined notification.
376 // Multiple expired events ar
840 getDigestTitle(ArrayList<NotificationInfo> events) argument
[all...]

Completed in 117 milliseconds