Searched full:touchpad (Results 1 – 25 of 444) sorted by relevance
12345678910>>...18
/external/wayland-protocols/chromium.org/third_party/wayland-protocols/unstable/touchpad-haptics/ |
D | touchpad-haptics-unstable-v1.xml | 28 <description summary="Allows to play haptic feedback effects on touchpad"> 29 Allows to play haptic feedback effects on touchpad. 42 <description summary="release the memory for the touchpad haptics object"> 48 <description summary="touchpad haptics activated"> 49 Inform the client that a haptic touchpad is present and ready to perform 55 <description summary="touchpad haptics deactivated"> 56 Inform the client that no haptic touchpad is available, likely because the 69 <entry name="press" value="6" summary="Standard touchpad button down effect" /> 70 <entry name="release" value="7" summary="Standard touchpad button up effect" /> 71 … <entry name="deep_press" value="8" summary="Deeper (more force) touchpad button down effect" /> [all …]
|
/external/autotest/client/site_tests/touch_HasInput/ |
D | control.touchpad | 6 NAME = "touch_HasInput.touchpad" 7 PURPOSE = "Check whether a touchpad is present as an input source." 9 This test will fail if the device does not have touchpad input. 16 DEPENDENCIES = "touchpad" 20 If there is no /dev/input/event* that is a touchpad, test will fail. Test 21 should only be run on devices with a touchpad. 24 job.run_test('touch_HasInput', input_type='touchpad')
|
/external/autotest/client/site_tests/touch_WakeupSource/ |
D | touch_WakeupSource.py | 16 """Check that touchpad/touchscreen are set/not set as wake sources.""" 21 # Note, starting with octopus platform, convertibles should enable touchpad 44 '/power touchpad-wakeup', utils.run) == '0'): 54 @param input_type: e.g. 'touchpad' or 'mouse'. See parent class for 98 @param input_type: e.g. 'touchpad' or 'mouse'. See parent class for 121 # Check that touchpad is a wake source for all but the excepted boards. 122 if source == 'touchpad': 126 if not self._is_wake_source('touchpad'): 127 raise error.TestFail('Touchpad is not a wake source!') 129 if self._is_wake_source('touchpad'): [all …]
|
D | control.touchpad | 6 NAME = "touch_WakeupSource.touchpad" 7 PURPOSE = "Test whether onboard touchpad is wakeup source for the DUT." 9 This test will fail if the touchpad is not a wakeup source or if the 17 DEPENDENCIES = "touchpad" 21 For this device's touchpad , verify whether that device is 25 job.run_test('touch_WakeupSource', source='touchpad')
|
/external/libchrome-gestures/include/ |
D | scaling_filter_interpreter.h | 20 // Incoming hardware events are in the units of touchpad pixels, which may 21 // not be square. We convert these to a same-sized touchpad such that 25 // For example, say we have a touchpad that has these properties: 33 // touchpad, by having 1 dot per mm. Thus, the screen DPI told to the next 104 // Touchpad device output bias (pixels). 128 // touchpad at the same time (e.g. a multi-touch mouse). 134 // If the device is touchpad. It would be false if it is a regular mouse
|
/external/autotest/client/site_tests/touch_GestureNav/ |
D | touch_GestureNav.py | 15 """Test to verify the three finger tab switching touchpad gesture.""" 23 raise error.TestError('No touchpad found on this device!') 26 self._filepaths = self._find_test_files_from_directions('touchpad', 72 self._blocking_playback(touch_type='touchpad', 77 self._blocking_playback(touch_type='touchpad',
|
D | control | 7 PURPOSE = "Test that three-finger touchpad gesture can switch tabs." 17 DEPENDENCIES = "touchpad" 21 Plays back touchpad gestures (if present) and checks for back/fwd navigation.
|
/external/autotest/client/site_tests/touch_ScrollDirection/ |
D | README | 6 <DEVICE NAME>_touchpad_Touch ID_scroll-down - Two finger scroll on touchpad in downward direction. 7 <DEVICE NAME>_touchpad_Touch ID_scroll-right - Two finger scroll on touchpad in right direction. 8 <DEVICE NAME>_touchpad_Touch ID_scroll-left - Two finger scroll on touchpad in left direction. 9 <DEVICE NAME>_touchpad_Touch ID_scroll-up - Two finger scroll on touchpad in upward direction.
|
D | touch_ScrollDirection.py | 66 @raises: TestError if host has no touchpad when it should. 69 # Raise error if no touchpad detected. 71 raise error.TestError('No touchpad found on this device!') 75 'touchpad', self._FILENAME_FMT_STR, self._DIRECTIONS)
|
/external/autotest/client/site_tests/touch_TabSwitch/ |
D | touch_TabSwitch.py | 14 """Test to verify the three finger tab switching touchpad gesture.""" 26 raise error.TestError('No touchpad found on this device!') 34 'touchpad', 'three-finger-swipe-%s', self._DIRECTIONS) 79 self._blocking_playback(touch_type='touchpad', 84 self._blocking_playback(touch_type='touchpad',
|
D | control | 7 PURPOSE = "Test that three-finger touchpad gesture can switch tabs." 17 DEPENDENCIES = "touchpad" 21 Plays back touchpad gestures (if present) and checks for tab switching.
|
/external/coreboot/src/ec/clevo/it5570e/ |
D | Kconfig | 103 prompt "Touchpad toggle mode" 106 There are two modes for the touchpad toggle (Fn-F1): 107 - Ctrl-Alt-F9 mode sends the windows-native touchpad toggle keyboard shortcut. 109 to be handled as touchpad toggle.
|
/external/coreboot/src/mainboard/system76/adl/ |
D | devicetree.cb | 5 // Touchpad I2C bus 47 # Touchpad I2C bus 51 register "generic.desc" = ""ELAN Touchpad"" 59 register "generic.desc" = ""FocalTech Touchpad""
|
/external/chromiumos-config/payload_utils/merge_plugins/ |
D | merge_hwid.py | 169 'touchpad': MergeHwid._merge_touchpad, 608 """Merge touchpad items.""" 619 component.hwid_type = 'touchpad' 622 # Check for USB based touchpad 623 # We don't receive an explicit type for the touchpad bus type, so 627 component.touchpad.type = component.touchpad.USB 628 component.touchpad.product_id = component.name 629 component.touchpad.usb.vendor_id = values['vendor'] 630 component.touchpad.usb.product_id = values['product'] 634 # i2c based touchpad [all …]
|
D | merge_hwid_test.py | 514 """Test touchpad USB functionality.""" 520 'touchpad', 534 self.assertEqual(component.hwid_type, 'touchpad') 536 self.assertEqual(component.touchpad.type, Component.Touch.USB) 537 self.assertEqual(component.touchpad.usb.product_id, test_product) 538 self.assertEqual(component.touchpad.usb.vendor_id, test_vendor) 544 """Test touchpad I2C functionality.""" 550 'touchpad', 564 self.assertEqual(component.hwid_type, 'touchpad') 566 self.assertEqual(component.touchpad.type, Component.Touch.I2C) [all …]
|
/external/autotest/client/bin/input/ |
D | input_event_player.py | 84 parser.add_option('-t', '--touchpad', action='store_true', dest='touchpad', 85 default=False, help='Find and use first touchpad device') 90 if options.touchpad: 96 print('Can not find a touchpad device')
|
/external/coreboot/src/mainboard/system76/tgl-u/ |
D | devicetree.cb | 5 // Touchpad I2C bus 98 # Touchpad I2C bus 102 register "generic.desc" = ""ELAN Touchpad"" 110 register "generic.desc" = ""FocalTech Touchpad""
|
/external/coreboot/src/mainboard/system76/gaze15/variants/gaze15/ |
D | overridetree.cb | 6 [PchSerialIoIndexI2C0] = PchSerialIoPci, // Touchpad I2C bus 17 register "generic.desc" = ""ELAN Touchpad"" 25 register "generic.desc" = ""Synaptics Touchpad""
|
/external/coreboot/util/lint/ |
D | lint-stable-028-touchpad-probed-warning | 4 # DESCR: Check that no touchpad uses the "probed" flag 13 …sed -i.bak "/^.*register \"generic.desc\" = \"\"Touchpad\"\"/a \t\t\t\tregister \"generic.probed\"… 22 if grep -B8 "probed\" = \"1\"" $f | grep -q "Touchpad"; then
|
/external/coreboot/src/mainboard/google/slippy/variants/peppy/include/variant/acpi/ |
D | mainboard.asl | 8 Name (_DDN, "Elan Touchpad") 10 Name (ISTP, 1) // Touchpad 50 Name (_DDN, "Cypress Touchpad") 52 Name (ISTP, 1) // Touchpad
|
/external/coreboot/src/mainboard/system76/tgl-h/ |
D | devicetree.cb | 5 // Touchpad I2C bus 111 # Touchpad I2C bus 115 register "generic.desc" = ""ELAN Touchpad"" 123 register "generic.desc" = ""Synaptics Touchpad""
|
/external/chromiumos-config/util/ |
D | hw_features.star | 201 """Specify whether touchpad is present.""" 203 touchpad = _HW_FEAT.Touchpad( 302 touchpad = None, 323 _merge("touchpad", touchpad)
|
/external/autotest/client/site_tests/touch_TapSettings/ |
D | touch_TapSettings.py | 73 @raises: TestError if host has no touchpad when it should. 76 # Raise error if no touchpad detected. 78 raise error.TestError('No touchpad found on this device!') 82 'touchpad', [self._CLICK_NAME, self._DRAG_NAME])
|
/external/coreboot/Documentation/drivers/ |
D | dt_entries.md | 10 register "desc" = ""ELAN Touchpad"" 32 Name (_DDN, "ELAN Touchpad") // _DDN: DOS Device Name 104 register "desc" = ""ELAN Touchpad"" 110 Name (_DDN, "ELAN Touchpad") // _DDN: DOS Device Name 166 and should be used any time a board has multiple touchpad options. 185 which indicates that the method of waking the system using the touchpad will be 294 operation with the touchpad.
|
/external/coreboot/src/mainboard/google/dedede/variants/sasukette/ |
D | overridetree.cb | 156 register "generic.desc" = ""SYNA Touchpad"" 165 register "generic.desc" = ""GXTP Touchpad"" 174 register "generic.desc" = ""SPPT Touchpad"" 183 register "generic.desc" = ""PIXA Touchpad"" 192 register "desc" = ""ELAN Touchpad""
|
12345678910>>...18