HomeSort by relevance Sort by last modified time
    Searched full:keycode (Results 251 - 275 of 599) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/resources/file_manager/
slideshow.html 183 if (e.keyCode == 37) {
190 if (e.keyCode == 39) {
  /external/chromium/chrome/browser/resources/options/
deletable_item_list.js 135 if ((e.keyCode == 46 || (e.keyCode == 8 && cr.isMac)) &&
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
context_menu_handler.js 112 (e.keyCode == 93 && !e.shiftKey ||
134 if (e.keyCode == 27 /* Esc */) {
list_selection_controller.js 192 if (e.keyCode == SPACE_KEY_CODE)
209 if (sm.multiple && e.keyCode == 65 &&
217 if (e.keyCode == SPACE_KEY_CODE) {
  /external/chromium/chrome/browser/resources/
slideshow.html 187 if (e.keyCode == 37) {
194 if (e.keyCode == 39) {
  /external/chromium/webkit/glue/
webmenurunner_mac.mm 194 // Fake an ESC key event (keyCode = 0x1B, from webinputevent_mac.mm) and
209 keyCode:0x1B];
  /external/qemu/
input.c 151 void kbd_put_keycode(int keycode)
155 cursor->put_kbd_event(cursor->opaque, keycode);
  /frameworks/base/core/java/android/content/
DialogInterface.java 151 * @param keyCode The code for the physical key that was pressed
156 public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBtEnablingActivity.java 104 public boolean onKeyDown(int keyCode, KeyEvent event) {
105 if (keyCode == KeyEvent.KEYCODE_BACK) {
BluetoothOppIncomingFileConfirmActivity.java 165 public boolean onKeyDown(int keyCode, KeyEvent event) {
166 if (keyCode == KeyEvent.KEYCODE_BACK) {
  /packages/apps/Mms/src/com/android/mms/ui/
EditSlideDurationActivity.java 121 public boolean onKey(View v, int keyCode, KeyEvent event) {
126 switch (keyCode) {
SlideshowActivity.java 294 public boolean onKeyDown(int keyCode, KeyEvent event) {
295 switch (keyCode) {
318 return super.onKeyDown(keyCode, event);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XIproto.h 59 #define KeyCode CARD8
247 KeyCode min_keycode;
248 KeyCode max_keycode;
887 KeyCode key;
971 KeyCode firstKeyCode;
1002 KeyCode firstKeyCode;
    [all...]
  /external/webkit/Source/WebCore/platform/wx/
KeyboardEventWx.cpp 35 static String keyIdentifierForWxKeyCode(int keyCode)
37 switch (keyCode) {
125 return String::format("U+%04X", toupper(keyCode));
129 static int windowsKeyCodeForKeyEvent(unsigned int keycode)
131 switch (keycode) {
  /frameworks/base/core/java/android/webkit/
AccessibilityInjector.java 375 private boolean isEnterActionKey(int keyCode) {
376 return keyCode == KeyEvent.KEYCODE_DPAD_CENTER
377 || keyCode == KeyEvent.KEYCODE_ENTER
378 || keyCode == KeyEvent.KEYCODE_NUMPAD_ENTER;
479 builder.append(", keyCode: ");
  /frameworks/base/media/java/android/media/
MediaMetadataRetriever.java 179 * meta data value associated with the keyCode.
181 * The keyCode currently supported is listed below as METADATA_XXX
184 * @param keyCode One of the constants listed below at the end of the class.
185 * @return The meta data value associate with the given keyCode on success;
188 public native String extractMetadata(int keyCode);
  /frameworks/base/core/java/android/view/
KeyEvent.java 585 // NOTE: If you add a new keycode here you must also add it to:
    [all...]
  /external/webkit/Source/WebKit/chromium/src/mac/
WebInputEventFactory.mm 58 switch ([event keyCode]) {
86 // Check that this is the type of event that has a keyCode.
99 switch ([event keyCode]) {
129 // so e.g. 'A' gets the same keyCode on QWERTY, AZERTY or Dvorak layouts.
140 // Ctrl+A on an AZERTY keyboard would get VK_Q keyCode if we relied on -[NSEvent keyCode] below.
148 // E.g. the key next to Caps Lock has the same Event.keyCode on U.S. keyboard ('A') and on Russian keyboard (CYRILLIC LETTER EF).
149 return WebCore::windowsKeyCodeForKeyCode([event keyCode]);
169 switch ([event keyCode]) {
552 result.nativeKeyCode = [event keyCode];
    [all...]
  /frameworks/base/services/input/
InputReader.h 258 int32_t keyCode) = 0;
286 InputDevice* device, int32_t keyCode, int32_t scanCode) = 0;
329 int32_t keyCode);
353 InputDevice* device, int32_t keyCode, int32_t scanCode);
400 InputDevice* device, int32_t keyCode, int32_t scanCode);
455 int32_t getKeyCodeState(uint32_t sourceMask, int32_t keyCode);
834 virtual int32_t getKeyCodeState(uint32_t sourceMask, int32_t keyCode);
882 virtual int32_t getKeyCodeState(uint32_t sourceMask, int32_t keyCode);
891 int32_t keyCode;
923 void processKey(nsecs_t when, bool down, int32_t keyCode, int32_t scanCode
    [all...]
InputDispatcher.cpp 617 bool InputDispatcher::isAppSwitchKeyCode(int32_t keyCode) {
618 return keyCode == AKEYCODE_HOME || keyCode == AKEYCODE_ENDCALL;
623 && isAppSwitchKeyCode(keyEntry->keyCode)
720 entry->action, entry->flags, entry->keyCode, entry->scanCode,
776 && mKeyRepeatState.lastKeyEntry->keyCode == entry->keyCode) {
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DefaultSoftKeyboardJAJP.java     [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindowManager.java     [all...]
  /external/qemu/hw/
ps2.c 138 keycode is expressed as follow:
142 static void ps2_put_keycode(void *opaque, int keycode)
147 if (!s->translate && keycode < 0xe0 && s->scancode_set == 2)
149 if (keycode & 0x80)
151 keycode = ps2_raw_keycode[keycode & 0x7f];
153 ps2_queue(&s->common, keycode);
  /external/webkit/Source/WebKit/win/
DOMEventsClasses.h 260 virtual HRESULT STDMETHODCALLTYPE keyCode(
369 virtual HRESULT STDMETHODCALLTYPE keyCode(
370 /* [retval][out] */ long* result) { return DOMUIEvent::keyCode(result); }
517 virtual HRESULT STDMETHODCALLTYPE keyCode(
518 /* [retval][out] */ long* result) { return DOMUIEvent::keyCode(result); }
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 446 public boolean onKeyDown(int keyCode, KeyEvent event) {
449 switch (keyCode) {
464 return super.onKeyDown(keyCode, event);

Completed in 844 milliseconds

<<11121314151617181920>>