Searched defs:events (Results 1 - 18 of 18) 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/services/Car/libvehiclenetwork/native/
H A DIVehicleNetworkListener.cpp47 virtual void onEvents(sp<VehiclePropValueListHolder>& events) { argument
52 status_t r = VehicleNetworkProtoUtil::toVehiclePropValues(events->getList(), *values.get());
H A DVehicleNetwork.cpp45 void VehicleNetworkEventMessageHandler::handleHalEvents(sp<VehiclePropValueListHolder>& events) { argument
47 mEvents.push_back(events);
316 void VehicleNetwork::onEvents(sp<VehiclePropValueListHolder>& events) { argument
317 getEventHandler()->handleHalEvents(events);
/packages/services/Car/service/src/com/android/car/hal/
H A DSensorHalServiceBase.java46 * Sensor events are available.
47 * @param events
49 void onSensorEvents(List<CarSensorEvent> events); argument
/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/services/Car/libvehiclenetwork/libvehiclenetwork-audio-helper/src/
H A DVehicleNetworkAudioHelper.cpp203 void VehicleNetworkAudioHelper::onEvents(sp<VehiclePropValueListHolder>& events) { argument
212 for (vehicle_prop_value_t* value : events->getList()) {
/packages/services/Car/tests/libvehiclenetwork-native-test/
H A DIVehicleNetworkTestListener.h29 virtual void onEvents(sp<VehiclePropValueListHolder>& events) { argument
30 String8 msg("events ");
32 for (auto& e : events->getList()) {
H A DVehicleNetworkTestListener.h42 virtual void onEvents(sp<VehiclePropValueListHolder>& events) { argument
43 String8 msg("events ");
45 for (auto& e : events->getList()) {
/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/services/Car/car-lib/src/android/car/hardware/
H A DCarSensorManager.java170 List<CarSensorEvent> events = (List<CarSensorEvent>) msg.obj;
171 for (CarSensorEvent event: events) {
274 * @param rate how fast the sensor events are delivered. It should be one of
421 private void handleOnSensorChanged(List<CarSensorEvent> events) { argument
422 mHandler.sendMessage(mHandler.obtainMessage(MSG_SENSOR_EVENTS, events));
433 public void onSensorChanged(List<CarSensorEvent> events) { argument
436 manager.handleOnSensorChanged(events);
/packages/services/Car/service/src/com/android/car/
H A DCarSensorService.java235 private void processSensorData(List<CarSensorEvent> events) { argument
237 for (CarSensorEvent event: events) {
267 public void onSensorEvents(List<CarSensorEvent> events) { argument
269 mSensorDispatchHandler.handleSensorEvents(events);
271 processSensorData(events);
740 /** callback for sensor events */
943 writer.println("**last events for sensors**");
/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...]
/packages/services/Car/vehicle_network_service/
H A DVehicleNetworkService.cpp98 List<vehicle_prop_value_t*>* events = NULL; local
110 events = nonFreeList;
112 events = freeList;
116 if (events != NULL) {
117 EVENT_LOG("doHandleHalEvent, num events:%d", events->size());
118 mService.dispatchHalEvents(*events);
120 for (auto& e : *events) {
124 events->clear();
1009 void VehicleNetworkService::dispatchHalEvents(List<vehicle_prop_value_t*>& events) { argument
[all...]

Completed in 535 milliseconds