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

1 2 3 4 5

  /frameworks/base/core/java/android/view/
InputEvent.aidl 1 /* //device/java/android/android.view.InputEvent.aidl
20 parcelable InputEvent;
IInputFilterHost.aidl 19 import android.view.InputEvent;
27 void sendInputEvent(in InputEvent event, int policyFlags);
IInputFilter.aidl 20 import android.view.InputEvent;
31 void filterInputEvent(in InputEvent event, int policyFlags);
InputEvent.java 27 public abstract class InputEvent implements Parcelable {
45 /*package*/ InputEvent() {
103 public abstract InputEvent copy();
218 public static final Parcelable.Creator<InputEvent> CREATOR
219 = new Parcelable.Creator<InputEvent>() {
220 public InputEvent createFromParcel(Parcel in) {
231 public InputEvent[] newArray(int size) {
232 return new InputEvent[size];
InputFilter.java 24 import android.view.InputEvent;
41 * {@link #onInputEvent(InputEvent)} method instead of being enqueued for dispatch to
49 * {@link #sendInputEvent(InputEvent)} and passing appropriate policy flags for the
70 * Use {@link InputEvent#getDeviceId()} and {@link InputEvent#getSource()} to identify
155 final public void filterInputEvent(InputEvent event, int policyFlags) {
165 public void sendInputEvent(InputEvent event, int policyFlags) {
195 public void onInputEvent(InputEvent event, int policyFlags) {
247 final InputEvent event = (InputEvent)msg.obj
    [all...]
  /external/chromium_org/content/common/input/
input_event.cc 11 InputEvent::InputEvent() : is_keyboard_shortcut(false) {}
13 InputEvent::InputEvent(const blink::WebInputEvent& web_event,
20 InputEvent::~InputEvent() {}
input_event.h 21 class CONTENT_EXPORT InputEvent {
23 InputEvent();
24 InputEvent(const blink::WebInputEvent& web_event,
27 ~InputEvent();
34 DISALLOW_COPY_AND_ASSIGN(InputEvent);
  /external/droiddriver/src/com/google/android/droiddriver/
InputInjector.java 19 import android.view.InputEvent;
22 * Interface for interacting with the UI via InputEvent injection.
32 boolean injectInputEvent(InputEvent event);
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture_target.h 15 class InputEvent;
26 virtual void DispatchInputEventToPlatform(const InputEvent& event) = 0;
mock_input_router_client.h 13 class InputEvent;
60 scoped_ptr<InputEvent> last_filter_event_;
  /external/chromium_org/ppapi/cpp/dev/
widget_dev.h 14 class InputEvent;
29 bool HandleEvent(const InputEvent& event);
ime_input_event_dev.h 21 class IMEInputEvent_Dev : public InputEvent {
31 explicit IMEInputEvent_Dev(const InputEvent& event);
  /external/chromium_org/ppapi/tests/
test_ime_input_event.h 24 virtual bool HandleInputEvent(const pp::InputEvent& input_event);
29 pp::InputEvent CreateImeCompositionStartEvent();
30 pp::InputEvent CreateImeCompositionUpdateEvent(
35 pp::InputEvent CreateImeCompositionEndEvent(const std::string& text);
36 pp::InputEvent CreateImeTextEvent(const std::string& text);
37 pp::InputEvent CreateCharEvent(const std::string& text);
40 bool SimulateInputEvent(const pp::InputEvent& input_event);
56 std::vector<pp::InputEvent> expected_events_;
test_input_event.h 24 virtual bool HandleInputEvent(const pp::InputEvent& input_event);
33 pp::InputEvent CreateMouseEvent(PP_InputEvent_Type type,
35 pp::InputEvent CreateWheelEvent();
36 pp::InputEvent CreateKeyEvent(PP_InputEvent_Type type,
38 pp::InputEvent CreateCharEvent(const std::string& text);
39 pp::InputEvent CreateTouchEvent(PP_InputEvent_Type type,
43 bool SimulateInputEvent(const pp::InputEvent& input_event);
61 pp::InputEvent expected_input_event_;
test_resource_array.cc 16 pp::InputEvent CreateMouseEvent(pp::Instance* instance,
55 pp::InputEvent mouse_event_1 = CreateMouseEvent(
57 pp::InputEvent mouse_event_2 = CreateMouseEvent(
78 pp::InputEvent mouse_event_1 = CreateMouseEvent(
80 pp::InputEvent mouse_event_2 = CreateMouseEvent(
105 pp::InputEvent mouse_event = CreateMouseEvent(
  /external/chromium_org/ppapi/cpp/
input_event.h 35 /// bool MyInstance::HandleInputEvent(const pp::InputEvent& event) {
46 class InputEvent : public Resource {
48 /// Default constructor that creates an is_null() InputEvent object.
49 InputEvent();
52 /// resource ID. The InputEvent object will be is_null() if the given
56 explicit InputEvent(PP_Resource input_event_resource);
58 ~InputEvent();
92 class MouseInputEvent : public InputEvent {
101 /// @param event An <code>InputEvent</code>.
102 explicit MouseInputEvent(const InputEvent& event)
    [all...]
input_event.cc 44 // InputEvent ------------------------------------------------------------------
46 InputEvent::InputEvent() : Resource() {
49 InputEvent::InputEvent(PP_Resource input_event_resource) : Resource() {
59 InputEvent::~InputEvent() {
62 PP_InputEvent_Type InputEvent::GetType() const {
68 PP_TimeTicks InputEvent::GetTimeStamp() const {
74 uint32_t InputEvent::GetModifiers() const
    [all...]
  /frameworks/base/include/android_runtime/
android_view_InputQueue.h 45 status_t getEvent(InputEvent** outEvent);
47 bool preDispatchEvent(InputEvent* event);
49 void finishEvent(InputEvent* event, bool handled);
55 void recycleInputEvent(InputEvent* event);
57 void enqueueEvent(InputEvent* event);
79 Vector<InputEvent*> mPendingEvents;
80 Vector<key_value_pair_t<InputEvent*, bool> > mFinishedEvents;
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 21 import android.view.InputEvent;
36 boolean injectInputEvent(in InputEvent event, boolean sync);
  /external/droiddriver/src/com/google/android/droiddriver/actions/
Action.java 19 import android.view.InputEvent;
26 * user interaction that consists of a series of {@link InputEvent}s.
32 * @param injector the injector to inject {@link InputEvent}s
  /external/jmonkeyengine/engine/src/core/com/jme3/input/event/
InputEvent.java 40 public abstract class InputEvent {
JoyButtonEvent.java 42 public class JoyButtonEvent extends InputEvent {
JoyAxisEvent.java 43 public class JoyAxisEvent extends InputEvent {
  /external/chromium_org/remoting/client/plugin/
pepper_input_handler.h 17 class InputEvent;
33 bool HandleInputEvent(const pp::InputEvent& event);
  /frameworks/base/core/java/android/hardware/input/
IInputManager.aidl 23 import android.view.InputEvent;
39 boolean injectInputEvent(in InputEvent ev, int mode);

Completed in 1017 milliseconds

1 2 3 4 5