Searched refs:pressed (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMultiUserAvatar.java225 public void setPressed(boolean pressed) { argument
226 if (mPressLock && !pressed) {
230 if (mPressLock || !pressed || isClickable()) {
231 super.setPressed(pressed);
232 mFramed.setPressed(pressed);
237 public void lockPressed(boolean pressed) { argument
238 mPressLock = pressed;
239 setPressed(pressed);
H A DKeyguardCircleFramedDrawable.java149 public void setPressed(boolean pressed) { argument
150 mPressed = pressed;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java200 public void setPressed(boolean pressed) { argument
202 if (pressed != isPressed()) {
207 if (pressed) {
231 super.setPressed(pressed);
/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/core/java/android/inputmethodservice/
H A DKeyboard.java256 /** The current pressed state of this key */
257 public boolean pressed; field in class:Keyboard.Key
260 /** Text to output when pressed. This can be multiple characters, like ".com" */
395 * Informs the key that it has been pressed, in case it needs to change its appearance or
400 pressed = !pressed;
404 * Changes the pressed state of the key. If it is a sticky key, it will also change the
410 pressed = !pressed;
482 if (pressed) {
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboard.java245 pressed = !pressed;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DIconUtilities.java179 private Bitmap createSelectedBitmap(Bitmap src, boolean pressed) { argument
190 pressed ? mGlowColorPressedPaint : mGlowColorFocusedPaint);
/frameworks/base/core/java/android/widget/
H A DGallery.java1137 protected void dispatchSetPressed(boolean pressed) { argument
1139 // Show the pressed state on the selected child
1141 mSelectedChild.setPressed(pressed);
H A DAbsListView.java2508 * @return True if the current touch mode requires that we draw the selector in the pressed
2525 * the pressed state for an item.
2592 * Sets the selector state to "pressed" and posts a CheckForKeyLongPress to see if
3056 protected void dispatchSetPressed(boolean pressed) { argument
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java679 private DrawableRecipientChip constructChipSpan(RecipientEntry contact, boolean pressed, argument
691 if (pressed) {
1115 * Dismiss any selected chips when the back key is pressed.
1642 private CharSequence createChip(RecipientEntry entry, boolean pressed) { argument
1653 DrawableRecipientChip chip = constructChipSpan(entry, pressed,
/frameworks/base/core/java/android/view/
H A DViewGroup.java3176 protected void dispatchSetPressed(boolean pressed) { argument
3182 // show a pressed state when their parent view does.
3183 // Clearing a pressed state always propagates.
3184 if (!pressed || (!child.isClickable() && !child.isLongClickable())) {
3185 child.setPressed(pressed);
5784 * Return true if the pressed state should be delayed for children or descendants of this
5786 * This prevents the pressed state from appearing when the user is actually trying to scroll
H A DView.java1136 * Indicates the view is pressed. States are used with
1240 * Indicates the view is pressed and its window has the focus.
1247 * Indicates the view is pressed and selected.
1254 * Indicates the view is pressed, selected and its window has the focus.
1262 * Indicates the view is pressed and focused.
1269 * Indicates the view is pressed, focused and its window has the focus.
1277 * Indicates the view is pressed, focused and selected.
1285 * Indicates the view is pressed, focused, selected and its window has the focus.
1294 * Indicates the view is pressed and enabled.
1301 * Indicates the view is pressed, enable
6431 setPressed(boolean pressed) argument
6453 dispatchSetPressed(boolean pressed) argument
[all...]

Completed in 458 milliseconds