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

<<11121314151617181920>>

  /external/autotest/frontend/client/src/autotest/common/table/
FragmentedTable.java 6 import com.google.gwt.event.dom.client.ClickEvent;
9 import com.google.gwt.user.client.Event;
79 public HTMLTable.Cell getCellForEvent(ClickEvent event) {
80 return getCellForDomEvent(event);
98 protected Element getEventTargetCell(Event event) {
99 Element td = DOM.eventGetTarget(event);
  /external/autotest/site_utils/
metadata_reporter.py 41 _abort = threading.Event()
42 _queue_full = threading.Event()
  /external/chromium-trace/catapult/devil/devil/android/perf/
surface_stats_collector.py 37 self._get_data_event = threading.Event()
38 self._stop_event = threading.Event()
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
play.js 28 var willPlayEvent = document.createEvent('Event');
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
instancestatus.py 18 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
44 class Event(object):
46 A status event for an instance.
48 :ivar code: A string indicating the event type.
49 :ivar description: A string describing the reason for the event.
51 the event.
53 the event.
64 return 'Event:%s' % self.code
116 event = Event()
    [all...]
volumestatus.py 18 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
27 class Event(object):
29 A status event for an instance.
31 :ivar type: The type of the event.
32 :ivar id: The ID of the event.
33 :ivar description: A string describing the reason for the event.
35 the event.
37 the event.
49 return 'Event:%s' % self.type
73 event = Event(
    [all...]
  /external/deqp/execserver/
xsWin32TestProcess.cpp 75 // Event
77 Event::Event (bool manualReset, bool initialState)
85 Event::~Event (void)
90 void Event::setSignaled (void)
96 void Event::reset (void)
131 Event ioEvent (true, false); // Manual reset, non-signaled state.
158 // \note GetOverlappedResult() will fail with ERROR_IO_INCOMPLETE if IO event is not complete (should be).
226 Event ioEvent (true, false); // Manual reset, not signaled state
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractComboPropertyEditor.java 26 import org.eclipse.swt.widgets.Event;
71 public void handleEvent(Event event) {
72 switch (event.keyCode) {
79 event.doit = false;
  /external/ltrace/
proc.h 47 /* Event handler that overrides the default one. Should
48 * return NULL if the event was handled, otherwise the
49 * returned event is passed to the default handler. */
50 Event *(*on_event)(struct event_handler *self, Event *event);
52 /* Called when the event handler removal is requested. */
199 * in the event queue, destroy it and free memory. */
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
TriggerService.java 33 import com.googlecode.android_scripting.event.Event;
34 import com.googlecode.android_scripting.event.EventObserver;
129 public void onEventReceived(Event event) {
130 mTrigger.handleEvent(event, TriggerService.this);
  /external/v8/tools/testrunner/local/
pool.py 7 from multiprocessing import Event, Process, Queue
48 reached or 2. when the event "done" is set."""
91 self.done = Event()
171 # For exceptional tear down set the "done" event to stop the workers before
  /external/valgrind/lackey/
lk_main.c 79 // Every instruction executed has an "instr" event representing it.
87 // Instruction Memory accesses Event sequence
365 Ity_I1 is the guarding condition for the event. If NULL it is
418 Event;
430 notified event where possible (Dw immediately following Dr and
441 when there is no space to add a new event, and before entering a
450 instrumentation IR for each event, in the order in which they
453 static Event events[N_EVENTS];
485 Event* ev;
529 Event* evt
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DelegatingAction.java 25 import org.eclipse.swt.widgets.Event;
135 public void runWithEvent(Event event) {
136 mAction.runWithEvent(event);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ColumnDialog.java 30 import org.eclipse.swt.widgets.Event;
93 public void handleEvent(Event event) {
  /system/core/adb/
test_adb.py 71 # Helper method that reads a pipe until it is closed, then sets the event.
72 def _read_pipe_and_set_event(self, pipe, event):
74 event.set()
107 stdout_event = threading.Event()
114 stderr_event = threading.Event()
  /device/google/contexthub/util/nanotool/
sensorevent.h 74 * Common timestamped sensor event structure is SensorEventHeader followed by
78 struct SensorEventHeader : public Event {
93 * one of the sensor event types and populated from byte stream. If
94 * this function is called, it's assumed that the event type is within the
105 * contained in the event.
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/iphone/
iPhoneInputManager.mm 6 This software is provided 'as-is', without any express or implied warranty. In no event will
58 #pragma mark Accelerator Event Handling
63 #pragma mark Touch Event Handling
64 - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
70 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
76 - (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
82 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
142 OIS_EXCEPT( E_General, "iPhoneInputManager::_parseConfigSettings >> Unable to find a window or event target" );
  /external/webrtc/webrtc/video/
video_capture_input_unittest.cc 16 #include "webrtc/base/event.h"
102 rtc::Event output_frame_event_;
115 rtc::Event frame_destroyed_event(false, false);
118 explicit TestBuffer(rtc::Event* event) : I420Buffer(5, 5), event_(event) {}
123 rtc::Event* const event_;
  /frameworks/native/services/surfaceflinger/
EventThread.cpp 168 "received hotplug event for an invalid display (id=%d)", type);
172 DisplayEventReceiver::Event event; local
173 event.header.type = DisplayEventReceiver::DISPLAY_EVENT_HOTPLUG;
174 event.header.id = type;
175 event.header.timestamp = systemTime();
176 event.hotplug.connected = connected;
177 mPendingEvents.add(event);
183 DisplayEventReceiver::Event event; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/captureintent/stateful/
StateMachineImpl.java 37 /** The condition to synchronize state changed event. */
102 public void processEvent(Event event) {
105 EventHandler eventHandler = mState.getEventHandler(event.getClass());
107 Log.d(TAG, "Process event : " + event);
108 Optional<State> newState = eventHandler.processEvent(event);
114 Log.e(TAG, "Failed to process event: " + event);
  /system/connectivity/apmanager/
hostapd_monitor_unittest.cc 50 void(HostapdMonitor::Event event, const std::string& data));
service.h 101 void HostapdEventCallback(HostapdMonitor::Event event,
  /frameworks/base/core/java/android/hardware/location/
ActivityRecognitionHardware.java 46 * Contains the number of supported Event Types.
62 private static class Event {
160 private void onActivityChanged(Event[] events) {
170 Event event = events[i]; local
171 String activityName = getActivityName(event.activity);
173 new ActivityRecognitionEvent(activityName, event.type, event.timestamp);
184 Log.e(TAG, "Error delivering activity changed event.", e);
242 for (int event = 0; event < EVENT_TYPE_COUNT; ++event)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/
ImageCanvas.java 37 import org.eclipse.swt.widgets.Event;
84 public void handleEvent(Event e) {
92 public void handleEvent(Event e) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
InputLogic.java 33 import com.android.inputmethod.event.Event;
34 import com.android.inputmethod.event.InputTransaction;
231 * @param event the input event containing the data.
234 public InputTransaction onTextInput(final SettingsValues settingsValues, final Event event,
236 final String rawText = event.getTextToCommit().toString();
237 final InputTransaction inputTransaction = new InputTransaction(settingsValues, event,
285 final Event event = Event.createPunctuationSuggestionPickedEvent(suggestionInfo) local
290 final Event event = Event.createSuggestionPickedEvent(suggestionInfo); local
    [all...]

Completed in 623 milliseconds

<<11121314151617181920>>