HomeSort by relevance Sort by last modified time
    Searched full:keyboard_state (Results 1 - 8 of 8) sorted by null

  /sdk/apps/DeviceConfig/res/values-keysexposed/
strings.xml 3 <string name="keyboard_state">EXPOSED</string>
  /sdk/apps/DeviceConfig/res/values-keyshidden/
strings.xml 3 <string name="keyboard_state">HIDDEN</string>
  /sdk/apps/DeviceConfig/res/values-keyssoft/
strings.xml 3 <string name="keyboard_state">SOFT</string>
  /external/chromium_org/chrome/test/webdriver/
keycode_text_conversion_win.cc 18 BYTE keyboard_state[256]; local
19 memset(keyboard_state, 0, 256);
21 keyboard_state[VK_SHIFT] |= 0x80;
23 keyboard_state[VK_CONTROL] |= 0x80;
25 keyboard_state[VK_MENU] |= 0x80;
27 int code = ::ToUnicode(key_code, scan_code, keyboard_state, chars, 4, 0);
  /external/chromium_org/chrome/test/chromedriver/
keycode_text_conversion_win.cc 18 BYTE keyboard_state[256]; local
19 memset(keyboard_state, 0, 256);
22 keyboard_state[VK_SHIFT] |= 0x80;
24 keyboard_state[VK_CONTROL] |= 0x80;
26 keyboard_state[VK_MENU] |= 0x80;
28 int code = ::ToUnicode(key_code, scan_code, keyboard_state, chars, 4, 0);
  /external/chromium_org/remoting/host/win/
rdp_client_window.cc 163 BYTE keyboard_state[kKeyboardStateLength]; local
164 if (!GetKeyboardState(keyboard_state)) {
170 DCHECK(!(keyboard_state[VK_CONTROL] & kKeyPressedFlag));
171 DCHECK(!(keyboard_state[VK_MENU] & kKeyPressedFlag));
172 DCHECK(!(keyboard_state[VK_END] & kKeyPressedFlag));
181 keyboard_state[VK_CONTROL] |= kKeyPressedFlag;
182 keyboard_state[VK_LCONTROL] |= kKeyPressedFlag;
183 CHECK(SetKeyboardState(keyboard_state));
187 keyboard_state[VK_MENU] |= kKeyPressedFlag;
188 keyboard_state[VK_LMENU] |= kKeyPressedFlag
    [all...]
  /external/chromium_org/ui/aura/
remote_root_window_host_win.cc 42 uint8 keyboard_state[256] = {0}; local
43 ::GetKeyboardState(keyboard_state);
45 SetKeyState(keyboard_state, !!(flags & ui::EF_SHIFT_DOWN), VK_SHIFT);
46 SetKeyState(keyboard_state, !!(flags & ui::EF_CONTROL_DOWN), VK_CONTROL);
47 SetKeyState(keyboard_state, !!(flags & ui::EF_ALT_DOWN), VK_MENU);
48 SetKeyState(keyboard_state, !!(flags & ui::EF_CAPS_LOCK_DOWN), VK_CAPITAL);
50 ::SetKeyboardState(keyboard_state);
  /sdk/apps/DeviceConfig/res/layout/
main.xml 188 android:text="@string/keyboard_state" >

Completed in 4472 milliseconds