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

/frameworks/native/include/input/
H A DInput.h285 class KeyEvent : public InputEvent { class in namespace:android
287 virtual ~KeyEvent() { }
323 void initialize(const KeyEvent& from);
599 virtual KeyEvent* createKeyEvent() = 0;
612 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
616 KeyEvent mKeyEvent;
628 virtual KeyEvent* createKeyEvent();
636 Vector<KeyEvent*> mKeyEventPool;
/frameworks/base/core/java/android/view/
H A DKeyEvent.java82 public class KeyEvent extends InputEvent implements Parcelable { class in inherits:InputEvent,Parcelable
1171 static final String TAG = "KeyEvent";
1176 private static KeyEvent gRecyclerTop;
1178 private KeyEvent mNext;
1195 * you can first call {@link KeyEvent#startTracking()
1196 * KeyEvent.startTracking()} to have the framework track the event
1197 * through its {@link #onKeyUp(int, KeyEvent)} and also call your
1198 * {@link #onKeyLongPress(int, KeyEvent)} if it occurs.
1206 boolean onKeyDown(int keyCode, KeyEvent event);
1210 * the final key up will have {@link KeyEvent#FLAG_CANCELE
1252 private KeyEvent() { method in class:KeyEvent
1262 public KeyEvent(int action, int code) { method in class:KeyEvent
1282 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1306 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1333 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1363 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1395 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1422 public KeyEvent(long time, String characters, int deviceId, int flags) { method in class:KeyEvent
1437 public KeyEvent(KeyEvent origEvent) { method in class:KeyEvent
1463 public KeyEvent(KeyEvent origEvent, long eventTime, int newRepeat) { method in class:KeyEvent
1609 private KeyEvent(KeyEvent origEvent, int action) { method in class:KeyEvent
2891 private KeyEvent(Parcel in) { method in class:KeyEvent
[all...]

Completed in 312 milliseconds