HomeSort by relevance Sort by last modified time
    Searched refs:event (Results 1 - 25 of 3626) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/emulator/qtools/
read_pid.cpp 17 PidEvent event; local
18 if (trace->ReadPidEvent(&event))
20 switch (event.rec_type) {
22 printf("t%lld fork tgid %d pid %d\n", event.time, event.tgid, event.pid);
25 printf("t%lld clone tgid %d pid %d\n", event.time, event.tgid, event.pid);
28 printf("t%lld switch %d\n", event.time, event.pid)
    [all...]
  /frameworks/support/v4/eclair/android/support/v4/view/
MotionEventCompatEclair.java 22 * Implementation of motion event compatibility that can call Eclair APIs.
25 public static int findPointerIndex(MotionEvent event, int pointerId) {
26 return event.findPointerIndex(pointerId);
28 public static int getPointerId(MotionEvent event, int pointerIndex) {
29 return event.getPointerId(pointerIndex);
31 public static float getX(MotionEvent event, int pointerIndex) {
32 return event.getX(pointerIndex);
34 public static float getY(MotionEvent event, int pointerIndex) {
35 return event.getY(pointerIndex);
37 public static int getPointerCount(MotionEvent event) {
    [all...]
  /external/webkit/Source/WebKit2/Shared/gtk/
NativeWebMouseEventGtk.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
33 NativeWebMouseEvent::NativeWebMouseEvent(GdkEvent* event, int eventClickCount)
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, eventClickCount))
35 , m_nativeEvent(event)
NativeWebKeyboardEventGtk.cpp 18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
36 NativeWebKeyboardEvent::NativeWebKeyboardEvent(GdkEvent* event)
37 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event->key))
38 , m_nativeEvent(gdk_event_copy(event))
42 NativeWebKeyboardEvent::NativeWebKeyboardEvent(const NativeWebKeyboardEvent& event)
43 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event.nativeEvent()->key))
44 , m_nativeEvent(gdk_event_copy(event.nativeEvent()))
  /external/webkit/Source/WebKit2/Shared/qt/
NativeWebKeyboardEventQt.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(QKeyEvent* event)
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event))
35 , m_nativeEvent(*event)
NativeWebMouseEventQt.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
33 NativeWebMouseEvent::NativeWebMouseEvent(QGraphicsSceneMouseEvent* event, int eventClickCount)
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, eventClickCount))
35 , m_nativeEvent(event)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
EventDecoder.java 17 package com.android.inputmethod.event;
20 * A generic interface for event decoders.
Combiner.java 17 package com.android.inputmethod.event;
24 * Combine an event with the existing state and return the new event.
25 * @param event the event to combine with the existing state.
26 * @return the resulting event.
28 Event combine(Event event);
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
create-event.js 3 var event = document.createEvent('DeviceMotionEvent'); variable
5 shouldBeTrue("typeof event == 'object'");
7 shouldBeTrue("'type' in event");
8 shouldBeTrue("'bubbles' in event");
9 shouldBeTrue("'cancelable' in event");
10 shouldBeTrue("'acceleration' in event");
11 shouldBeTrue("'accelerationIncludingGravity' in event");
12 shouldBeTrue("'rotationRate' in event");
13 shouldBeTrue("'interval' in event");
15 shouldBeTrue("typeof event.type == 'string'")
    [all...]
  /external/skia/legacy/src/utils/
SkDebugTrace.h 17 #define SK_TRACE_EVENT0(event) \
18 SkDebugf("Trace: %s\n", event)
19 #define SK_TRACE_EVENT1(event, name1, value1) \
20 SkDebugf("Trace: %s (%s=%s)\n", event, name1, value1)
21 #define SK_TRACE_EVENT2(event, name1, value1, name2, value2) \
22 SkDebugf("Trace: %s (%s=%s, %s=%s)\n", event, name1, value1, name2, value2)
  /external/skia/src/utils/
SkDebugTrace.h 17 #define SK_TRACE_EVENT0(event) \
18 SkDebugf("Trace: %s\n", event)
19 #define SK_TRACE_EVENT1(event, name1, value1) \
20 SkDebugf("Trace: %s (%s=%s)\n", event, name1, value1)
21 #define SK_TRACE_EVENT2(event, name1, value1, name2, value2) \
22 SkDebugf("Trace: %s (%s=%s, %s=%s)\n", event, name1, value1, name2, value2)
  /external/webkit/Source/WebKit2/Shared/mac/
NativeWebKeyboardEventMac.mm 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(NSEvent *event, NSView *view)
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event, view))
35 , m_nativeEvent(event)
NativeWebMouseEventMac.mm 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
33 NativeWebMouseEvent::NativeWebMouseEvent(NSEvent* event, NSView* view)
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, view))
35 , m_nativeEvent(event)
  /external/webkit/Source/WebCore/bindings/js/
JSEventCustom.cpp 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
37 #include "Event.h"
117 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Event* event)
121 if (!event)
124 JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), event);
128 if (event->isUIEvent()) {
129 if (event->isKeyboardEvent())
130 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, KeyboardEvent, event);
131 else if (event->isTextEvent()
    [all...]
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
optional-event-properties.js 3 var event; variable
5 evalAndLog("event = document.createEvent('DeviceOrientationEvent')");
6 shouldBeTrue("event.alpha == null");
7 shouldBeTrue("event.beta == null");
8 shouldBeTrue("event.gamma == null");
10 evalAndLog("event.initDeviceOrientationEvent('', false, false, 0, 1, 2)");
11 shouldBeTrue("event.alpha == 0");
12 shouldBeTrue("event.beta == 1");
13 shouldBeTrue("event.gamma == 2");
15 evalAndLog("event.initDeviceOrientationEvent()")
    [all...]
create-event.js 3 var event = document.createEvent('DeviceOrientationEvent'); variable
5 shouldBeTrue("typeof event == 'object'");
7 shouldBeTrue("'type' in event");
8 shouldBeTrue("'bubbles' in event");
9 shouldBeTrue("'cancelable' in event");
10 shouldBeTrue("'alpha' in event");
11 shouldBeTrue("'beta' in event");
12 shouldBeTrue("'gamma' in event");
14 shouldBeTrue("typeof event.type == 'string'");
15 shouldBeTrue("typeof event.bubbles == 'boolean'")
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
PreferenceChangeEventTest.java 32 PreferenceChangeEvent event; field in class:PreferenceChangeEventTest
36 event = new PreferenceChangeEvent(null, "key", "value");
43 event = new PreferenceChangeEvent(Preferences.userRoot(), "key", null);
44 assertEquals("key", event.getKey());
45 assertNull(event.getNewValue());
46 assertSame(Preferences.userRoot(), event.getNode());
47 assertSame(Preferences.userRoot(), event.getSource());
49 event = new PreferenceChangeEvent(Preferences.userRoot(), "", null);
50 assertEquals("", event.getKey());
51 assertNull(event.getNewValue())
    [all...]
  /external/webkit/Source/WebCore/platform/wx/
MouseWheelEventWx.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
31 #include <wx/event.h>
35 PlatformWheelEvent::PlatformWheelEvent(const wxMouseEvent& event, const wxPoint& globalPoint)
36 : m_position(event.GetPosition())
39 , m_shiftKey(event.ShiftDown())
40 , m_ctrlKey(event.ControlDown())
41 , m_altKey(event.AltDown())
42 , m_metaKey(event.MetaDown()) // FIXME: We'll have to test other browsers
44 , m_deltaY(event.GetWheelRotation() / event.GetWheelDelta()
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
MotionEventCompat.java 30 public int findPointerIndex(MotionEvent event, int pointerId);
31 public int getPointerId(MotionEvent event, int pointerIndex);
32 public float getX(MotionEvent event, int pointerIndex);
33 public float getY(MotionEvent event, int pointerIndex);
34 public int getPointerCount(MotionEvent event);
42 public int findPointerIndex(MotionEvent event, int pointerId) {
50 public int getPointerId(MotionEvent event, int pointerIndex) {
58 public float getX(MotionEvent event, int pointerIndex) {
60 return event.getX();
65 public float getY(MotionEvent event, int pointerIndex)
    [all...]
  /external/guava/guava/src/com/google/common/eventbus/
DeadEvent.java 22 * Wraps an event that was posted, but which had no subscribers and thus could
26 * can detect misconfigurations in a system's event distribution.
35 private final Object event; field in class:DeadEvent
42 * @param event the event that could not be delivered.
44 public DeadEvent(Object source, Object event) {
46 this.event = event;
50 * Returns the object that originated this event (<em>not</em> the object that
51 * originated the wrapped event). This is generally an {@link EventBus}
    [all...]
  /external/webkit/Source/WebKit/wx/
WebBrowserShell.h 18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
58 // event handlers (these functions should _not_ be virtual)
59 void OnCut(wxCommandEvent& event);
60 void OnCopy(wxCommandEvent& event);
61 void OnPaste(wxCommandEvent& event);
62 void OnQuit(wxCommandEvent& event);
63 void OnAbout(wxCommandEvent& event);
64 void OnLoadFile(wxCommandEvent& event);
65 void OnAddressBarEnter(wxCommandEvent& event);
66 void OnSearchCtrlEnter(wxCommandEvent& event);
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBEventDispatcher.cpp 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
34 #include "Event.h"
39 bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget> >& eventTargets)
44 event->setEventPhase(Event::CAPTURING_PHASE);
46 event->setCurrentTarget(eventTargets[i].get());
47 eventTargets[i]->fireEventListeners(event);
48 if (event->propagationStopped())
52 event->setEventPhase(Event::AT_TARGET)
    [all...]
  /external/jmdns/src/javax/jmdns/
ServiceListener.java 17 * <b>Note:</b>This event is only the service added event. The service info associated with this event does not include resolution information.<br/>
21 * ServiceInfo info = event.getDNS().getServiceInfo(event.getType(), event.getName())
27 * @param event
30 void serviceAdded(ServiceEvent event);
35 * @param event
38 void serviceRemoved(ServiceEvent event);
    [all...]
  /external/skia/include/core/
SkTrace.h 14 /* If your system embeds skia and has complex event logging, in
23 the function) separated by double colons for 'event'.
39 #define SK_TRACE_EVENT0(event)
40 #define SK_TRACE_EVENT1(event, name1, value1)
41 #define SK_TRACE_EVENT2(event, name1, value1, name2, value2)
  /external/skia/legacy/include/core/
SkTrace.h 14 /* If your system embeds skia and has complex event logging, in
23 the function) separated by double colons for 'event'.
39 #define SK_TRACE_EVENT0(event)
40 #define SK_TRACE_EVENT1(event, name1, value1)
41 #define SK_TRACE_EVENT2(event, name1, value1, name2, value2)

Completed in 559 milliseconds

1 2 3 4 5 6 7 8 91011>>