HomeSort by relevance Sort by last modified time
    Searched refs:pressed (Results 51 - 75 of 159) sorted by null

1 23 4 5 6 7

  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_mac.h 94 virtual void OnControlKeyChanged(bool pressed);
213 // Was delete pressed?
216 // Was the delete key pressed with an empty selection at the end of the edit?
  /external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_view_mac.h 71 virtual void OnControlKeyChanged(bool pressed) OVERRIDE;
175 // Was delete pressed?
178 // Was the delete key pressed with an empty selection at the end of the edit?
  /external/chromium_org/remoting/protocol/
message_decoder_unittest.cc 103 EXPECT_EQ((index % 2) != 0, message->key_event().pressed());
  /bootable/recovery/
ui.cpp 101 // pressed and then released, with no other keypresses or releases in
250 int pressed = key_pressed[key]; local
252 return pressed;
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_atarievents.c 215 SDL_bool pressed)
229 if (SDL_TranslateUNICODE && pressed) {
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 256 /** 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/
PasswordEntryKeyboard.java 245 pressed = !pressed;
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardCircleFramedDrawable.java 149 public void setPressed(boolean pressed) {
150 mPressed = pressed;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 179 private Bitmap createSelectedBitmap(Bitmap src, boolean pressed) {
190 pressed ? mGlowColorPressedPaint : mGlowColorFocusedPaint);
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 168 boolean pressed, Bitmap src) {
185 pressed ? sGlowColorPressedPaint : sGlowColorFocusedPaint);
  /packages/apps/Settings/src/com/android/settings/users/
CircleFramedDrawable.java 163 public void setPressed(boolean pressed) {
164 mPressed = pressed;
  /external/chromium_org/chrome/browser/resources/file_manager/css/
gallery.css 619 .gallery .header button[pressed],
620 .gallery .toolbar button[pressed],
621 .gallery .header button[pressed]:hover,
622 .gallery .toolbar button[pressed]:hover {
634 .gallery > .toolbar button.autofix[pressed] {
647 .gallery > .toolbar button.crop[pressed] {
660 .gallery > .toolbar button.exposure[pressed] {
673 .gallery > .toolbar button.rotate_right[pressed] {
686 .gallery > .toolbar button.rotate_left[pressed] {
699 .gallery > .toolbar button.undo[pressed] {
    [all...]
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_edit_model.h 254 void OnControlKeyChanged(bool pressed);
  /external/chromium_org/remoting/client/plugin/
chromoting_instance.h 210 void SendTrappedKey(uint32 usb_keycode, bool pressed);
  /external/chromium_org/ui/views/controls/table/
table_view_unittest.cc 192 const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::Point(0, y),
195 table_->OnMousePressed(pressed);
282 const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::Point(x, 0),
284 helper_->header()->OnMousePressed(pressed);
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 58 * when the appropriate trigger is activated (e.g. a key is pressed), the
154 private void invokeActions(int hash, boolean pressed) {
168 ((ActionListener) listener).onAction(mapping.name, pressed, frameTPF);
182 private void invokeTimedActions(int hash, long time, boolean pressed) {
187 if (pressed) {
619 * Called to reset pressed keys or buttons when focus is restored.
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainTestModifyHeight.java 196 public void onAction(String name, boolean pressed, float tpf) {
197 if (name.equals("wireframe") && !pressed) {
205 raiseTerrain = pressed;
207 lowerTerrain = pressed;
  /packages/apps/Camera2/src/com/android/camera/
VideoUI.java 540 // disable preview gestures after shutter is pressed
541 public void setShutterPressed(boolean pressed) {
543 mGestures.setEnabled(!pressed);
671 public void pressShutter(boolean pressed) {
672 mShutterButton.setPressed(pressed);
  /cts/tests/src/android/view/cts/
MockView.java 365 protected void dispatchSetPressed(boolean pressed) {
366 super.dispatchSetPressed(pressed);
  /external/chromium/chrome/browser/resources/
keyboard_overlay.js 128 91: 'ALT', // left ALT pressed with SHIFT
129 92: 'ALT', // right ALT pressed with SHIFT
134 // be changed because the key currently pressed
187 classes.push('pressed');
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.css 113 /* Pressed is set when an app is first touched.
115 .app.grabber-pressed img {
119 /* Grabbed is set (and pressed is cleared) when the app has been held. */
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
DesktopView.java 287 // Stops software keyboards from closing as soon as the enter key is pressed.
294 private void handleMouseMovement(float x, float y, int button, boolean pressed) {
303 JniInterface.mouseAction((int)coordinates[0], (int)coordinates[1], button, pressed);
341 // The user pressed and released without moving: do left click and release.
348 Log.i("mouse", "\tReleasing the currently-pressed button");
439 Log.i("mouse", "\tReleasing the currently-pressed button");
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.h 116 void setMousePressed(bool pressed) { m_mousePressed = pressed; }
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_avrcp.cpp 131 static void btavrcp_passthrough_command_callback(int id, int pressed) {
140 (jint)pressed);
  /external/chromium_org/remoting/webapp/
client_plugin.js 118 * Release all currently pressed keys.
126 * @param {boolean} pressed True to inject a key press, False for a release.
129 function(usbKeycode, pressed) {};

Completed in 2716 milliseconds

1 23 4 5 6 7