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

/frameworks/base/include/androidfw/
H A DInput.h262 class KeyEvent : public InputEvent { class in namespace:android
264 virtual ~KeyEvent() { }
305 void initialize(const KeyEvent& from);
576 virtual KeyEvent* createKeyEvent() = 0;
589 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
593 KeyEvent mKeyEvent;
605 virtual KeyEvent* createKeyEvent();
613 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
1261 static final String TAG = "KeyEvent";
1266 private static KeyEvent gRecyclerTop;
1268 private KeyEvent mNext;
1285 * you can first call {@link KeyEvent#startTracking()
1286 * KeyEvent.startTracking()} to have the framework track the event
1287 * through its {@link #onKeyUp(int, KeyEvent)} and also call your
1288 * {@link #onKeyLongPress(int, KeyEvent)} if it occurs.
1296 boolean onKeyDown(int keyCode, KeyEvent event);
1300 * the final key up will have {@link KeyEvent#FLAG_CANCELE
1343 private KeyEvent() { method in class:KeyEvent
1353 public KeyEvent(int action, int code) { method in class:KeyEvent
1373 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1397 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1424 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1454 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1486 public KeyEvent(long downTime, long eventTime, int action, method in class:KeyEvent
1513 public KeyEvent(long time, String characters, int deviceId, int flags) { method in class:KeyEvent
1528 public KeyEvent(KeyEvent origEvent) { method in class:KeyEvent
1554 public KeyEvent(KeyEvent origEvent, long eventTime, int newRepeat) { method in class:KeyEvent
1700 private KeyEvent(KeyEvent origEvent, int action) { method in class:KeyEvent
2885 private KeyEvent(Parcel in) { method in class:KeyEvent
[all...]

Completed in 81 milliseconds