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

/packages/apps/DeskClock/src/com/android/deskclock/events/
H A DEventTracker.java17 package com.android.deskclock.events;
H A DLogEventTracker.java16 package com.android.deskclock.events;
H A DEvents.java17 package com.android.deskclock.events;
80 * method can be used to track events such as button presses or other user
96 * method can be used to track events such as button presses or other user
/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.java82 // For recurring events which instances of the series are being modified
691 * @return true when declined events should be hidden.
842 // white. The result is the color that should be used for declined events.
874 // A single strand represents one color of events. Events are divided up by
876 // that it holds conflicting events as well as color settings for allday on
896 * Converts a list of events to a list of segments to draw. Assumes list is
897 * ordered by start time of the events. The function processes events for a
899 * The algorithm goes over all the events and creates a set of segments
916 * @param firstJulianDay The julian day of the first day of events
924 createDNAStrands(int firstJulianDay, ArrayList<Event> events, int top, int bottom, int minPixels, int[] dayXs, Context context) argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLastComposedWord.java66 public LastComposedWord(final ArrayList<Event> events, argument
74 mEvents = new ArrayList<>(events);
/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.java314 // Process the query results and bucketize events.
332 // If there are more high/medium priority events than we can show, bump some to
337 // Post the individual higher priority events (future and recently started
338 // concurrent events). Order these so that earlier start times appear higher in
347 // Keep concurrent events high priority (to appear higher in the notification list)
352 // Post the medium priority events (concurrent events that started a while ago).
356 // events, so that all notifications will be co-located together.
370 // Post the low priority events as 1 combined notification.
385 // Multiple expired events ar
849 getDigestTitle(ArrayList<NotificationInfo> events) argument
[all...]

Completed in 444 milliseconds