HomeSort by relevance Sort by last modified time
    Searched refs:Event (Results 251 - 275 of 835) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 34 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
206 def Event():
208 Returns an event object
210 from multiprocessing.synchronize import Event
211 return Event()
  /external/webrtc/webrtc/modules/audio_processing/test/
unpack.cc 51 using audioproc::Event;
78 Event event_msg;
96 if (event_msg.type() == Event::REVERSE_STREAM) {
130 } else if (event_msg.type() == Event::STREAM) {
229 } else if (event_msg.type() == Event::CONFIG) {
254 } else if (event_msg.type() == Event::INIT) {
  /frameworks/base/services/usage/java/com/android/server/usage/
UsageStatsXmlV1.java 43 private static final String EVENT_LOG_TAG = "event-log";
44 private static final String EVENT_TAG = "event";
104 final UsageEvents.Event event = statsOut.buildEvent(packageName, className); local
106 // Apply the offset to the beginTime to find the absolute time of this event.
107 event.mTimeStamp = statsOut.beginTime + XmlUtils.readLongAttribute(parser, TIME_ATTR);
109 event.mEventType = XmlUtils.readIntAttribute(parser, TYPE_ATTR);
110 switch (event.mEventType) {
111 case UsageEvents.Event.CONFIGURATION_CHANGE:
112 event.mConfiguration = new Configuration()
    [all...]
  /developers/build/prebuilts/gradle/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java 70 * event.
116 List<Event> events = queryEvents(this, beginTime, endTime);
117 for (Event event : events) {
118 final PutDataMapRequest putDataMapRequest = event.toPutDataMapRequest();
134 private static List<Event> queryEvents(Context context, long beginTime, long endTime) {
152 List<Event> events = new ArrayList<Event>(cursor.getCount());
154 Event event = new Event() local
    [all...]
  /developers/build/prebuilts/gradle/DataLayer/Application/src/main/java/com/example/android/wearable/datalayer/
MainActivity.java 220 for (DataEvent event : dataEvents) {
221 if (event.getType() == DataEvent.TYPE_CHANGED) {
223 new Event("DataItem Changed", event.getDataItem().toString()));
224 } else if (event.getType() == DataEvent.TYPE_DELETED) {
226 new Event("DataItem Deleted", event.getDataItem().toString()));
236 mDataItemListAdapter.add(new Event("Message from watch", messageEvent.toString()));
243 mDataItemListAdapter.add(new Event("onCapabilityChanged", capabilityInfo.toString()));
368 * A View Adapter for presenting the Event objects in a lis
393 Event event = getItem(position); local
    [all...]
  /developers/samples/android/wearable/wear/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java 70 * event.
116 List<Event> events = queryEvents(this, beginTime, endTime);
117 for (Event event : events) {
118 final PutDataMapRequest putDataMapRequest = event.toPutDataMapRequest();
134 private static List<Event> queryEvents(Context context, long beginTime, long endTime) {
152 List<Event> events = new ArrayList<Event>(cursor.getCount());
154 Event event = new Event() local
    [all...]
  /developers/samples/android/wearable/wear/DataLayer/Application/src/main/java/com/example/android/wearable/datalayer/
MainActivity.java 220 for (DataEvent event : dataEvents) {
221 if (event.getType() == DataEvent.TYPE_CHANGED) {
223 new Event("DataItem Changed", event.getDataItem().toString()));
224 } else if (event.getType() == DataEvent.TYPE_DELETED) {
226 new Event("DataItem Deleted", event.getDataItem().toString()));
236 mDataItemListAdapter.add(new Event("Message from watch", messageEvent.toString()));
243 mDataItemListAdapter.add(new Event("onCapabilityChanged", capabilityInfo.toString()));
368 * A View Adapter for presenting the Event objects in a lis
393 Event event = getItem(position); local
    [all...]
  /development/samples/browseable/AgendaData/Application/src/com.example.android.wearable.agendadata/
CalendarQueryService.java 70 * event.
116 List<Event> events = queryEvents(this, beginTime, endTime);
117 for (Event event : events) {
118 final PutDataMapRequest putDataMapRequest = event.toPutDataMapRequest();
134 private static List<Event> queryEvents(Context context, long beginTime, long endTime) {
152 List<Event> events = new ArrayList<Event>(cursor.getCount());
154 Event event = new Event() local
    [all...]
  /development/samples/browseable/DataLayer/Application/src/com.example.android.wearable.datalayer/
MainActivity.java 220 for (DataEvent event : dataEvents) {
221 if (event.getType() == DataEvent.TYPE_CHANGED) {
223 new Event("DataItem Changed", event.getDataItem().toString()));
224 } else if (event.getType() == DataEvent.TYPE_DELETED) {
226 new Event("DataItem Deleted", event.getDataItem().toString()));
236 mDataItemListAdapter.add(new Event("Message from watch", messageEvent.toString()));
243 mDataItemListAdapter.add(new Event("onCapabilityChanged", capabilityInfo.toString()));
368 * A View Adapter for presenting the Event objects in a lis
393 Event event = getItem(position); local
    [all...]
  /device/google/contexthub/util/nanotool/
nanomessage.h 91 * The base event for all event data.
93 struct Event {
98 * A request to write an event to the ContextHub.
106 * A response to writing an event to the ContextHub.
119 * A response to reading an event from the ContextHub.
147 // Event data associated with this response.
159 * An event used to configure a sensor with specific attributes.
185 struct Configuration : public Event {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
EventBuilder.java 25 * This class allows to build an {@link Event} with multiple modifiers.
40 * @param count the count before event
136 * Builds the event with all added modifiers.
138 * @return an {@link Event}
140 public Event build() {
143 return new Event(eventKind, suspendPolicy, mods);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckerDocumentation.cpp 57 check::Event<ImplicitNullDerefEvent>,
108 /// \brief Pre-visit an abstract "call" event.
120 /// \brief Post-visit an abstract "call" event.
299 /// check::Event<ImplicitNullDerefEvent>
300 void checkEvent(ImplicitNullDerefEvent Event) const {}
  /external/ltrace/
libltrace.c 156 dispatch_callbacks(Event * ev) {
163 /* Ignoring case 2: process being born before a clone event */
174 Event * ev;
  /external/sl4a/Common/src/com/googlecode/android_scripting/event/
EventServer.java 17 package com.googlecode.android_scripting.event;
34 * An Event Forwarding server that forwards events from the rpc queue in realtime to listener
56 onEventReceived(new Event("sl4a", "{\"shutdown\": \"event-server\"}"));
66 Log.d("handle event connection.");
71 // wait until the event dispatcher gets us the events
87 public void onEventReceived(Event event) {
90 result = JsonBuilder.build(event);
  /external/webrtc/webrtc/modules/audio_processing/
audio_processing_impl_locking_unittest.cc 19 #include "webrtc/base/event.h"
311 rtc::Event* render_call_event,
312 rtc::Event* capture_call_event,
329 rtc::Event* const render_call_event_ = nullptr;
330 rtc::Event* const capture_call_event_ = nullptr;
357 rtc::Event* render_call_event,
358 rtc::Event* capture_call_event,
375 rtc::Event* const render_call_event_ = nullptr;
376 rtc::Event* const capture_call_event_ = nullptr;
435 // Event handlers for the test
    [all...]
  /frameworks/base/libs/androidfw/
DisplayEventDispatcher.cpp 38 ALOGV("dispatcher %p ~ Initializing display event dispatcher.", this);
44 ALOGW("Failed to initialize display event receiver, status=%d", result);
57 ALOGV("dispatcher %p ~ Disposing display event dispatcher.", this);
73 ALOGE("dispatcher %p ~ last event processed while scheduling was for %" PRId64 "",
90 ALOGE("Display event receiver pipe was closed or an error occurred. "
96 ALOGW("Received spurious callback for unhandled poll event. "
118 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
123 const DisplayEventReceiver::Event& ev = buf[i];
137 ALOGW("dispatcher %p ~ ignoring unknown event type %#x", this, ev.header.type);
143 ALOGW("Failed to get events from display event dispatcher, status=%d", status_t(n))
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContentObserver.java 134 // Default event report version is 1.0
596 private class Event {
602 /* Extended event parameters in MAP Event version 1.1 */
608 /* Event parameters in MAP Event version 1.2 */
629 public Event(String eventType, long handle, String folder,
646 public Event(String eventType, long handle, String folder, TYPE msgType) {
653 /* extended event type 1.1 */
654 public Event(String eventType, long handle, String folder, TYPE msgType
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
loop.js 33 var endLoopEvent = document.createEvent('Event');
43 var willLoopEvent = document.createEvent('Event');
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractTextPropertyEditor.java 31 import org.eclipse.swt.widgets.Event;
98 public void modifyText(ModifyEvent event) {
127 public void focusGained(FocusEvent event) {
132 public void focusLost(FocusEvent event) {
201 public void handleEvent(Event event) {
236 public void keyDown(PropertyTable propertyTable, Property property, KeyEvent event)
238 boolean withAlt = (event.stateMask & SWT.ALT) != 0;
239 boolean withCtrl = (event.stateMask & SWT.CTRL) != 0;
240 if (event.character != 0 && !(withAlt || withCtrl))
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Event.java 23 * By default an event will "bubble" up through an actor's parent's handlers (see {@link #setBubbles(boolean)}).
25 * An actor's capture listeners can {@link #stop()} an event to prevent child actors from seeing it.
27 * An Event may be marked as "handled" which will end its propagation outside of the Stage (see {@link #handle()}). The default
28 * {@link Actor#fire(Event)} will mark events handled if an {@link EventListener} returns true.
30 * A cancelled event will be stopped and handled. Additionally, many actors will undo the side-effects of a canceled event. (See
34 * @see Actor#fire(Event) */
35 public class Event implements Poolable {
39 private boolean capture; // true means event occurred during the capture phase
41 private boolean handled; // true means the event was handled (the stage will eat the input)
    [all...]
InputEvent.java 22 /** Event for actor input: touch, mouse, keyboard, and scroll.
24 public class InputEvent extends Event {
37 /** The stage x coordinate where the event occurred. Valid for: touchDown, touchDragged, touchUp, mouseMoved, enter, and exit. */
46 /** The stage x coordinate where the event occurred. Valid for: touchDown, touchDragged, touchUp, mouseMoved, enter, and exit. */
55 /** The type of input event. */
64 /** The pointer index for the event. The first touch is index 0, second touch is index 1, etc. Always -1 on desktop. Valid for:
111 /** The actor related to the event. Valid for: enter and exit. For enter, this is the actor being exited, or null. For exit,
122 /** Sets actorCoords to this event's coordinates relative to the specified actor.
130 /** Returns true of this event is a touchUp triggered by {@link Stage#cancelTouchFocus()}. */
  /external/webrtc/webrtc/base/
winping.h 55 HANDLE Event,

Completed in 1531 milliseconds

<<11121314151617181920>>