Searched defs:KeyEvent (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/include/input/
H A DInput.h261 class KeyEvent : public InputEvent { class in namespace:android
263 virtual ~KeyEvent() { }
304 void initialize(const KeyEvent& from);
577 virtual KeyEvent* createKeyEvent() = 0;
590 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
594 KeyEvent mKeyEvent;
606 virtual KeyEvent* createKeyEvent();
614 Vector<KeyEvent*> mKeyEventPool;
/frameworks/base/core/java/android/view/
H A DKeyEvent.java83 public class KeyEvent extends InputEvent implements Parcelable { class in inherits:InputEvent,Parcelable
1279 static final String TAG = "KeyEvent";
1284 private static KeyEvent gRecyclerTop;
1286 private KeyEvent mNext;
1303 * you can first call {@link KeyEvent#startTracking()
1304 * KeyEvent.startTracking()} to have the framework track the event
1305 * through its {@link #onKeyUp(int, KeyEvent)} and also call your
1306 * {@link #onKeyLongPress(int, KeyEvent)} if it occurs.
1314 boolean onKeyDown(int keyCode, KeyEvent event);
1318 * the final key up will have {@link KeyEvent#FLAG_CANCELE
1361 private KeyEvent() { method in class:KeyEvent
1371 public KeyEvent(int action, int code) { method in class:KeyEvent
1391 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1415 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1442 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1472 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1504 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1531 public KeyEvent(long time, String characters, int deviceId, int flags) { method in class:KeyEvent
1546 public KeyEvent(KeyEvent origEvent) { method in class:KeyEvent
1572 public KeyEvent(KeyEvent origEvent, long eventTime, int newRepeat) { method in class:KeyEvent
1718 private KeyEvent(KeyEvent origEvent, int action) { method in class:KeyEvent
2916 private KeyEvent(Parcel in) { method in class:KeyEvent
[all...]

Completed in 56 milliseconds