HomeSort by relevance Sort by last modified time
    Searched refs:event (Results 226 - 250 of 6832) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkdnd.py 10 To enable an object to be dragged, you must create an event binding
13 should call Tkdnd.dnd_start(source, event), where 'source' is the
14 object to be dragged, and 'event' is the event that invoked the call
35 function is called as dnd_accept(source, event), where 'source' is the
37 'event' is the most recent event object (generally a <Motion> event;
50 source object, and 'event' is the most recent event object)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkdnd.py 10 To enable an object to be dragged, you must create an event binding
13 should call Tkdnd.dnd_start(source, event), where 'source' is the
14 object to be dragged, and 'event' is the event that invoked the call
35 function is called as dnd_accept(source, event), where 'source' is the
37 'event' is the most recent event object (generally a <Motion> event;
50 source object, and 'event' is the most recent event object)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 10 To enable an object to be dragged, you must create an event binding
13 should call Tkdnd.dnd_start(source, event), where 'source' is the
14 object to be dragged, and 'event' is the event that invoked the call
35 function is called as dnd_accept(source, event), where 'source' is the
37 'event' is the most recent event object (generally a <Motion> event;
50 source object, and 'event' is the most recent event object)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 10 To enable an object to be dragged, you must create an event binding
13 should call Tkdnd.dnd_start(source, event), where 'source' is the
14 object to be dragged, and 'event' is the event that invoked the call
35 function is called as dnd_accept(source, event), where 'source' is the
37 'event' is the most recent event object (generally a <Motion> event;
50 source object, and 'event' is the most recent event object)
    [all...]
  /frameworks/base/core/java/android/view/
InputEventConsistencyVerifier.java 26 * When a problem is detected, the event is tainted. This mechanism prevents the same
56 // The most recently checked event and the nesting level at which it was checked.
58 // so that the verifier can detect when it has been asked to verify the same event twice.
59 // It does not make sense to examine the contents of the last event since it may have
70 // Current event and its type.
90 // Set to true when we discover that the touch event stream is inconsistent.
94 // Set to true if the touch event stream is partially unhandled.
107 * Indicates that the verifier is intended to act on raw device input event streams.
143 * Resets the state of the input event consistency verifier.
164 * Checks an arbitrary input event
681 final InputEvent event = mRecentEvents[index]; local
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
GnssNavigationMessageCallbackTest.java 28 GnssNavigationMessage event = message; local
29 callback.onGnssNavigationMessageReceived(event);
  /cts/tests/tests/text/src/android/text/method/cts/
TextMethodUtils.java 30 KeyEvent event = new KeyEvent(KeyEvent.ACTION_DOWN, keyCode); local
31 if ('\0' == event.getMatch(acceptedChars)) {
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
CardLayout.java 61 public boolean onTouchEvent(MotionEvent event) {
62 switch(event.getAction()){
68 return super.onTouchEvent(event);
72 public boolean onInterceptTouchEvent(MotionEvent event) {
74 switch(event.getAction()){
77 mSwiping = Math.abs(mDownX - event.getX()) > mTouchSlop;
81 mDownX = event.getX();
82 mDownY = event.getY();
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
CardLayout.java 61 public boolean onTouchEvent(MotionEvent event) {
62 switch(event.getAction()){
68 return super.onTouchEvent(event);
72 public boolean onInterceptTouchEvent(MotionEvent event) {
74 switch(event.getAction()){
77 mSwiping = Math.abs(mDownX - event.getX()) > mTouchSlop;
81 mDownX = event.getX();
82 mDownY = event.getY();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The ID
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
ToolTip.java 3 import com.google.gwt.event.dom.client.MouseOverHandler;
4 import com.google.gwt.event.dom.client.MouseOverEvent;
5 import com.google.gwt.event.dom.client.MouseOutHandler;
6 import com.google.gwt.event.dom.client.MouseOutEvent;
36 public void onMouseOver(MouseOverEvent event) {
37 showAtWindow(event.getClientX(), event.getClientY());
40 public void onMouseOut(MouseOutEvent event) {
  /external/guava/guava/src/com/google/common/eventbus/
SynchronizedEventSubscriber.java 44 public void handleEvent(Object event) throws InvocationTargetException {
47 super.handleEvent(event);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/archrast/
eventmanager.h 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * @brief Definitions for the event manager.
41 /// Event handling occurs only on a single thread.
50 // Event manager owns destroying handler objects once attached.
63 void Dispatch(Event& event)
65 ///@todo Add event filter check here.
69 event.Accept(pHandler);
  /external/python/cpython2/Lib/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
MultiTouchFilter.java 12 public void updateTouch(MotionEvent event) {
14 final int pointerCount = event.getPointerCount();
16 final int action = event.getAction();
18 final int id = event.getPointerId(x);
23 event.getX(x) * (1.0f / params.viewScaleX),
24 event.getY(x) * (1.0f / params.viewScaleY));
27 event.getX(x) * (1.0f / params.viewScaleX),
28 event.getY(x) * (1.0f / params.viewScaleY));
  /external/skia/debugger/QT/
SkDrawCommandGeometryWidget.h 25 void paintEvent(QPaintEvent* event);
26 void resizeEvent(QResizeEvent* event);
SkRasterWidget.h 29 void paintEvent(QPaintEvent* event);
31 void resizeEvent(QResizeEvent* event);
  /external/skqp/debugger/QT/
SkDrawCommandGeometryWidget.h 25 void paintEvent(QPaintEvent* event);
26 void resizeEvent(QResizeEvent* event);
SkRasterWidget.h 29 void paintEvent(QPaintEvent* event);
31 void resizeEvent(QResizeEvent* event);
  /external/sl4a/Common/src/com/googlecode/android_scripting/trigger/
Trigger.java 21 import com.googlecode.android_scripting.event.Event;
26 * Interface implemented by objects listening to events on the event queue inside of the
32 * Handles an event from the event queue.
34 * @param event
35 * Event to handle
39 void handleEvent(Event event, Context context);
42 * Returns the event name that this {@link Trigger} is interested in
    [all...]
  /external/walt/ios/WALT/
WALTTouch.m 20 - (instancetype)initWithEvent:(UIEvent *)event {
22 if ([event allTouches].count > 1) {
23 NSLog(@"Multiple touches in event; taking any.");
25 self.kernelTime = event.timestamp;
27 UITouch *touch = [[event allTouches] anyObject];
  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_dtmf_buffer.h 28 int(const DtmfEvent& event));
30 bool(uint32_t current_timestamp, DtmfEvent* event));
  /frameworks/av/include/soundtrigger/
SoundTriggerCallback.h 32 virtual void onRecognitionEvent(struct sound_trigger_recognition_event *event) = 0;
34 virtual void onSoundModelEvent(struct sound_trigger_model_event *event) = 0;
  /frameworks/av/media/libaudioclient/aidl/android/media/
IAudioRecord.aidl 27 void start(int /*AudioSystem::sync_event_t*/ event,
  /frameworks/base/core/java/android/app/backup/
IBackupManagerMonitor.aidl 32 * @param event bundle will contain data about event, like package name, package version etc.
34 void onEvent(in Bundle event);

Completed in 856 milliseconds

1 2 3 4 5 6 7 8 91011>>