HomeSort by relevance Sort by last modified time
    Searched defs:Keyboard (Results 1 - 11 of 11) sorted by null

  /external/chromium-trace/catapult/devil/devil/android/tools/
keyboard.py 6 """Use your keyboard as your phone's keyboard. Experimental."""
70 def Keyboard(device, stream_itr):
91 description="Use your keyboard as your phone's keyboard.")
117 Keyboard(devices[0], next_char())
  /external/autotest/client/cros/input_playback/
keyboard.py 10 _KEYBOARD = 'keyboard'
13 class Keyboard(object):
14 """An emulated keyboard device used for UI automation."""
17 """Prepare an emulated keyboard device."""
19 # Create an emulated keyboard device.
20 self.keyboard = input_playback.InputPlayback()
21 self.keyboard.emulate(input_type=_KEYBOARD)
22 self.keyboard.find_connected_inputs()
35 self.keyboard.blocking_playback(filepath=event_file,
44 self.keyboard.blocking_playback(filepath=event_file
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/
Keyboard.java 1 package org.unicode.cldr.draft.keyboard;
12 * Object representing a keyboard layout. Includes identifier information, platform given names,
16 public final class Keyboard {
23 private Keyboard(KeyboardId keyboardId, ImmutableList<String> names,
32 * Creates a keyboard given an identifier, a list of platform given names, key maps and
35 public static Keyboard of(KeyboardId keyboardId, ImmutableList<String> names,
37 return new Keyboard(keyboardId, names, keyMaps, transforms);
74 if (o instanceof Keyboard) {
75 Keyboard other = (Keyboard) o
    [all...]
KeyboardBuilder.java 1 package org.unicode.cldr.draft.keyboard;
23 /** Builder class to assist in constructing a keyboard object. */
81 public ImmutableList<Keyboard> build() {
103 ImmutableList.Builder<Keyboard> keyboards = ImmutableList.builder();
105 keyboards.add(Keyboard.of(keyboardId, names.build(), keyMaps.build(), transforms.build()));
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/PlatformIntelBdsLib/
IntelBdsPlatform.c 115 USB_CLASS_DEVICE_PATH Keyboard;
122 // USB_CLASS_DEVICE_PATH Keyboard
133 1 // DeviceProtocol: keyboard
407 // Add the hardcoded short-form USB keyboard device path to ConIn.
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/Library/PlatformBootManagerLib/
PlatformBm.c 100 USB_CLASS_DEVICE_PATH Keyboard;
107 // USB_CLASS_DEVICE_PATH Keyboard
118 1 // DeviceProtocol: keyboard
561 // Add the hardcoded short-form USB keyboard device path to ConIn.
580 // Register platform-specific boot options and keyboard shortcuts.
  /device/linaro/bootloader/edk2/ArmPkg/Library/PlatformBootManagerLib/
PlatformBm.c 97 USB_CLASS_DEVICE_PATH Keyboard;
104 // USB_CLASS_DEVICE_PATH Keyboard
115 1 // DeviceProtocol: keyboard
476 // Add the hardcoded short-form USB keyboard device path to ConIn.
495 // Register platform-specific boot options and keyboard shortcuts.
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/
PlatformBm.c 98 USB_CLASS_DEVICE_PATH Keyboard;
105 // USB_CLASS_DEVICE_PATH Keyboard
116 1 // DeviceProtocol: keyboard
619 // Add the hardcoded short-form USB keyboard device path to ConIn.
644 // Register platform-specific boot options and keyboard shortcuts.
  /device/linaro/bootloader/edk2/DuetPkg/Library/DuetBdsLib/
BdsPlatform.h 175 ACPI_HID_DEVICE_PATH Keyboard;
204 // the short form device path for Usb keyboard
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/PlatformBdsLib/
BdsPlatform.h 94 // the short form device path for Usb keyboard
219 ACPI_HID_DEVICE_PATH Keyboard;
  /external/cldr/tools/java/org/unicode/cldr/draft/
Keyboard.java 29 * A first, very rough cut at reading the keyboard data.
34 public class Keyboard {
148 public Keyboard(String locale, String version, String platformVersion, Set<String> names,
159 // public static Keyboard getKeyboard(String keyboardId, Set<Exception> errors) {
177 public static Keyboard getKeyboard(String platformId, String keyboardId, Set<Exception> errors) {
190 public static Keyboard getKeyboard(String id, Reader r, Set<Exception> errors) {
439 public Keyboard getKeyboard() {
447 return new Keyboard(locale, version, platformVersion, names, fallback, keyMaps, transformMap);
455 // <keyboard locale='bg-t-k0-chromeos-phonetic'>
542 errors.add(new KeyboardException("duplicate keyboard: " + item.modifiers + " has same layout as " + keyMapModifiers))
    [all...]

Completed in 238 milliseconds