/external/webkit/Source/WebKit/efl/DefaultTheme/widget/file/ |
file.edc | 45 set_state(PART:"file", "pressed", 0.0); 50 set_state(PART:"file", "pressed", 0.0); 92 state: "pressed" 0.0; 112 name: "pressed"; 113 signal: "pressed";
|
/docs/source.android.com/src/tech/input/ |
key-character-map-files.md | 177 are pressed. 180 behavior (character that should be typed) when the key is pressed and all of the 184 the either the LEFT SHIFT or RIGHT SHIFT modifier is pressed. 187 when the both RIGHT SHIFT and RIGHT ALT modifiers are pressed together. 191 * `shift`: Applies when either the LEFT SHIFT or RIGHT SHIFT modifier is pressed. 192 * `lshift`: Applies when the LEFT SHIFT modifier is pressed. 193 * `rshift`: Applies when the RIGHT SHIFT modifier is pressed. 194 * `alt`: Applies when either the LEFT ALT or RIGHT ALT modifier is pressed. 195 * `lalt`: Applies when the LEFT ALT modifier is pressed. 196 * `ralt`: Applies when the RIGHT ALT modifier is pressed [all...] |
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
InputSystemJme.java | 58 private boolean pressed = false;
field in class:InputSystemJme 136 nic.processMouseEvent(x, y, evt.getDeltaWheel(), buttonIndex, pressed);
144 boolean wasPressed = pressed;
148 pressed = evt.isPressed();
151 if (wasPressed && !pressed) {
161 consumed = nic.processMouseEvent(x, y, 0, buttonIndex, pressed);
167 // Mouse button pressed. Begin dragging
168 if (!wasPressed && pressed) {
173 if (consumed && pressed) {
|
/external/replicaisland/src/com/replica/replicaisland/ |
InputTouchScreen.java | 50 boolean pressed = false; 52 pressed = mTouchPoints[index].getPressed(); 54 return pressed;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
NotificationPanelTitle.java | 55 public void setPressed(boolean pressed) { 56 super.setPressed(pressed); 59 button.setPressed(pressed);
|
/external/chromium/chrome/browser/chromeos/frame/ |
panel_controller.h | 52 // button is pressed to give beforeunload handlers a chance to cancel. 55 // Close the panel. Called when a close button is pressed. 153 // Cursor's absolute position when the mouse button was pressed. 158 // mouse button was pressed.
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/entry/ |
entry.edc | 42 set_state(PART:"entry", "pressed", 0.0); 88 state: "pressed" 0.0; 123 name: "pressed"; 124 signal: "pressed";
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/field/ |
search_field.edc | 44 set_state(PART:"search_field", "pressed", 0.0); 87 state: "pressed" 0.0; 115 name: "pressed"; 116 signal: "pressed";
|
/packages/apps/Music/src/com/android/music/ |
RepeatingImageButton.java | 29 * as long as the button is pressed. 53 * Sets the listener to be called while the button is pressed and 132 * is pressed. 134 * @param duration The number of milliseconds the button has been pressed so far.
|
/external/chromium/chrome/browser/ui/gtk/status_icons/ |
status_icon_gtk.cc | 38 // Ignore pressed images, since the standard on Linux is to not highlight 39 // pressed status icons.
|
/frameworks/base/core/java/android/view/ |
HapticFeedbackConstants.java | 34 * The user has pressed on a virtual on-screen key. 39 * The user has pressed a soft keyboard key.
|
/packages/apps/Contacts/res/drawable/ |
btn_call.xml | 18 Almost a copy from framework's item_background_holo_dark.xml, but has different pressed effect 24 <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
PagedViewIcon.java | 29 /** A simple callback interface to allow a PagedViewIcon to notify when it has been pressed */ 81 // We keep in the pressed state until resetDrawableState() is called to reset the press
|
BubbleTextView.java | 116 // In this case, we have already created the pressed outline on ACTION_DOWN, 122 // Otherwise, either clear the pressed/focused background, or create a background 204 // So that the pressed outline is visible immediately when isPressed() is true, 211 // Invalidate so the pressed state is visible, or set a flag so we know that we 212 // have to call invalidate as soon as the state is "pressed" 224 // If we've touched down and up on an item, and it's still not "pressed", then 225 // destroy the pressed outline
|
/packages/apps/Phone/res/drawable/ |
btn_call.xml | 18 Almost a copy from framework's item_background_holo_dark.xml, but has different pressed effect 24 <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
|
/development/apps/Development/src/com/android/development/ |
BadBehaviorActivity.java | 164 Log.i(TAG, "Native crash pressed -- about to kill -11 self"); 179 Log.i(TAG, "ANR pressed -- about to hang"); 189 Log.i(TAG, "ANR activity pressed -- about to launch"); 197 Log.i(TAG, "ANR broadcast pressed -- about to send"); 205 Log.i(TAG, "ANR service pressed -- about to start"); 214 Log.i(TAG, "ANR system pressed -- about to engage"); 229 Log.i(TAG, "Wedge system pressed -- about to engage");
|
/frameworks/base/core/java/android/text/method/ |
MetaKeyKeyListener.java | 55 * 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. 239 if (current == PRESSED) 289 if (state == PRESSED) 298 content.setSpan(what, 0, 0, PRESSED); 306 content.setSpan(SELECTING, 0, 0, PRESSED); 348 else if (current == PRESSED) 395 * @return an integer in which each bit set to one represents a pressed [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
KeyboardState.java | 397 // Ignore update shift state event while the shift key is being pressed (including 430 // Shift key is pressed while shift locked state, we will treat this state as 431 // shift lock shifted state and mark as if shift key pressed while normal state. 435 // Shift key is pressed while automatic shifted, we have to move to manual 477 // In shift locked state, shift has been pressed and slid out to other key. 482 // Shift has been long pressed, ignore this release. 484 // Shift has been pressed without chording while shift locked state. 488 // Shift has been pressed without chording while shifted state. 493 // Shift has been pressed without chording while manual shifted transited from 553 // Detected only the mode change key has been pressed, and then released [all...] |
/external/chromium/base/win/ |
win_util.h | 45 // Returns true if the shift key is currently pressed. 48 // Returns true if the ctrl key is currently pressed. 51 // Returns true if the alt key is currently pressed.
|
/external/chromium-trace/src/shared/js/cr/ui/ |
repeating_button_test.html | 95 * @param {number} time1 Duration that the mouse button is pressed and the 97 * @param {number} time2 Duration that the mouse button is pressed but the 149 * Simulates draging the mouse off of the button while pressed.
|
/frameworks/native/include/android/ |
input.h | 74 /* No meta keys are pressed. */ 77 /* This mask is used to check whether one of the ALT meta keys is pressed. */ 80 /* This mask is used to check whether the left ALT meta key is pressed. */ 83 /* This mask is used to check whether the right ALT meta key is pressed. */ 86 /* This mask is used to check whether one of the SHIFT meta keys is pressed. */ 89 /* This mask is used to check whether the left SHIFT meta key is pressed. */ 92 /* This mask is used to check whether the right SHIFT meta key is pressed. */ 95 /* This mask is used to check whether the SYM meta key is pressed. */ 98 /* This mask is used to check whether the FUNCTION meta key is pressed. */ 101 /* This mask is used to check whether one of the CTRL meta keys is pressed. * [all...] |
/cts/tests/src/android/widget/cts/ |
MyGallery.java | 77 protected void dispatchSetPressed(boolean pressed) { 78 super.dispatchSetPressed(pressed);
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
JoystickView.java | 41 public void setPressed(boolean pressed) { 42 fPressed = pressed;
|
/external/chromium/chrome/browser/chromeos/status/ |
status_area_button.h | 40 // Controls whether or not this status area button is able to be pressed. 59 // Indicates when this button can be pressed. Independent of
|
/external/chromium/chrome/browser/tab_contents/ |
confirm_infobar_delegate.h | 37 // Called when the OK button is pressed. If the function returns true, the 41 // Called when the Cancel button is pressed. If the function returns true,
|