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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationPanelTitle.java55 public void setPressed(boolean pressed) { argument
56 super.setPressed(pressed);
59 button.setPressed(pressed);
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java133 * into latched or locked states when pressed independently.
414 * has pressed the required modifier.
417 * numbers when ALT is pressed such that ALT-Q maps to '1'. So for that keyboard
642 * <li>Chorded behavior: When the modifier key is pressed together with one or more
645 * <li>Toggled behavior: When the modifier key is pressed and released on its own
647 * to next character key that is pressed and will then reset itself to the initial state.
648 * If the modifier is already latched and the modifier key is pressed and release on
650 * apply to all subsequent character keys that are pressed until unlocked by pressing
H A DViewGroup.java2989 protected void dispatchSetPressed(boolean pressed) { argument
2995 // show a pressed state when their parent view does.
2996 // Clearing a pressed state always propagates.
2997 if (!pressed || (!child.isClickable() && !child.isLongClickable())) {
2998 child.setPressed(pressed);
5467 * Return true if the pressed state should be delayed for children or descendants of this
5469 * This prevents the pressed state from appearing when the user is actually trying to scroll
H A DView.java1117 * Indicates the view is pressed. States are used with
1222 * Indicates the view is pressed and its window has the focus.
1229 * Indicates the view is pressed and selected.
1236 * Indicates the view is pressed, selected and its window has the focus.
1244 * Indicates the view is pressed and focused.
1251 * Indicates the view is pressed, focused and its window has the focus.
1259 * Indicates the view is pressed, focused and selected.
1267 * Indicates the view is pressed, focused, selected and its window has the focus.
1276 * Indicates the view is pressed and enabled.
1283 * Indicates the view is pressed, enable
6104 setPressed(boolean pressed) argument
6126 dispatchSetPressed(boolean pressed) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardMultiUserAvatar.java214 public void setPressed(boolean pressed) { argument
215 if (!pressed || isClickable()) {
216 super.setPressed(pressed);
217 mFramed.setPressed(pressed);
H A DKeyguardCircleFramedDrawable.java145 public void setPressed(boolean pressed) { argument
146 mPressed = pressed;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java178 public void setPressed(boolean pressed) { argument
180 if (pressed != isPressed()) {
185 if (pressed) {
207 super.setPressed(pressed);
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java55 * keyboard already reported as being pressed in {@link KeyEvent#getMetaState()}.
151 * @param text the buffer in which the meta key would have been pressed.
153 * @return an integer in which each bit set to one represents a pressed
167 * @param text the buffer in which the meta key would have been pressed.
395 * @return an integer in which each bit set to one represents a pressed
502 long locked, long pressed, long released, long used) {
503 if ((state & pressed) != 0) {
512 state |= what | pressed;
540 long pressed, long released, long used, KeyEvent event) {
545 } else if ((state & pressed) !
501 press(long state, int what, long mask, long locked, long pressed, long released, long used) argument
539 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.java2377 * @return True if the current touch mode requires that we draw the selector in the pressed
2394 * the pressed state for an item.
2461 * Sets the selector state to "pressed" and posts a CheckForKeyLongPress to see if
2902 protected void dispatchSetPressed(boolean pressed) { argument
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java606 private RecipientChip constructChipSpan(RecipientEntry contact, int offset, boolean pressed, argument
619 if (pressed) {
654 private float calculateAvailableWidth(boolean pressed) { argument
1039 * Dismiss any selected chips when the back key is pressed.
1547 private CharSequence createChip(RecipientEntry entry, boolean pressed) { argument
1560 RecipientChip chip = constructChipSpan(entry, start, pressed,

Completed in 1355 milliseconds