Home
last modified time | relevance | path

Searched refs:pressedKeyView (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/input/debug/
DFocusEventDebugView.java256 PressedKeyView pressedKeyView = mPressedKeys.get(identifier); in handleKeyEvent() local
259 if (pressedKeyView != null) { in handleKeyEvent()
266 container.handleKeyRepeat(pressedKeyView); in handleKeyEvent()
270 pressedKeyView = new PressedKeyView(mContext, getLabel(keyEvent)); in handleKeyEvent()
271 mPressedKeys.put(identifier, pressedKeyView); in handleKeyEvent()
272 container.handleKeyPressed(pressedKeyView); in handleKeyEvent()
276 if (pressedKeyView == null) { in handleKeyEvent()
282 container.handleKeyRelease(pressedKeyView); in handleKeyEvent()
450 public void handleKeyPressed(PressedKeyView pressedKeyView) { in handleKeyPressed() argument
451 addView(pressedKeyView, getChildCount(), mPressedKeyLayoutParams); in handleKeyPressed()