Searched defs:pressed (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/policy/
H A DIconUtilities.java170 private Bitmap createSelectedBitmap(Bitmap src, boolean pressed) { argument
181 pressed ? mGlowColorPressedPaint : mGlowColorFocusedPaint);
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java55 * keyboard already reported as being pressed in {@link KeyEvent#getMetaState()}.
154 * @param text the buffer in which the meta key would have been pressed.
156 * @return an integer in which each bit set to one represents a pressed
175 * @param text the buffer in which the meta key would have been pressed.
177 * @return an integer in which each bit set to one represents a pressed
195 * @param text the buffer in which the meta key would have been pressed.
226 * @param text the buffer in which the meta key would have been pressed.
454 * @return an integer in which each bit set to one represents a pressed
561 long locked, long pressed, long released, long used) {
562 if ((state & pressed) !
560 press(long state, int what, long mask, long locked, long pressed, long released, long used) argument
598 release(long state, int what, long mask, long pressed, long released, long used, KeyEvent event) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonRipple.java161 boolean pressed = false;
164 pressed = true;
168 if (pressed != mPressed) {
169 setPressed(pressed);
170 mPressed = pressed;
187 public void setPressed(boolean pressed) { argument
189 setPressedHardware(pressed);
191 setPressedSoftware(pressed);
206 private void setPressedSoftware(boolean pressed) { argument
207 if (pressed) {
235 setPressedHardware(boolean pressed) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidedActionsStylist.java396 * @param pressed True if the action has been pressed, false if it has been unpressed.
398 public void onAnimateItemPressed(ViewHolder vh, boolean pressed) { argument
399 int attr = pressed ? R.attr.guidedActionPressedAnimation :
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java257 /** The current pressed state of this key */
258 public boolean pressed; field in class:Keyboard.Key
261 /** Text to output when pressed. This can be multiple characters, like ".com" */
396 * Informs the key that it has been pressed, in case it needs to change its appearance or
401 pressed = !pressed;
405 * Changes the pressed state of the key.
422 pressed = !pressed;
494 if (pressed) {
[all...]
/frameworks/base/core/java/android/widget/
H A DGallery.java1140 protected void dispatchSetPressed(boolean pressed) { argument
1142 // Show the pressed state on the selected child
1144 mSelectedChild.setPressed(pressed);
H A DAbsListView.java2641 * @return True if the current touch mode requires that we draw the selector in the pressed
2658 * the pressed state for an item.
2725 * Sets the selector state to "pressed" and posts a CheckForKeyLongPress to see if
3211 protected void dispatchSetPressed(boolean pressed) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeaderView.java565 protected void dispatchSetPressed(boolean pressed) { argument
/frameworks/base/core/java/android/view/
H A DViewGroup.java3722 protected void dispatchSetPressed(boolean pressed) { argument
3728 // show a pressed state when their parent view does.
3729 // Clearing a pressed state always propagates.
3730 if (!pressed || (!child.isClickable() && !child.isLongClickable())) {
3731 child.setPressed(pressed);
6617 * Return true if the pressed state should be delayed for children or descendants of this
6619 * This prevents the pressed state from appearing when the user is actually trying to scroll
H A DView.java1242 * Indicates the view is pressed. States are used with
1346 * Indicates the view is pressed and its window has the focus.
1353 * Indicates the view is pressed and selected.
1360 * Indicates the view is pressed, selected and its window has the focus.
1368 * Indicates the view is pressed and focused.
1375 * Indicates the view is pressed, focused and its window has the focus.
1383 * Indicates the view is pressed, focused and selected.
1391 * Indicates the view is pressed, focused, selected and its window has the focus.
1400 * Indicates the view is pressed and enabled.
1407 * Indicates the view is pressed, enable
7860 setPressed(boolean pressed, float x, float y) argument
7877 setPressed(boolean pressed) argument
7899 dispatchSetPressed(boolean pressed) argument
[all...]

Completed in 339 milliseconds