HomeSort by relevance Sort by last modified time
    Searched refs:input_type (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/autotest/client/site_tests/touch_HasInput/
touch_HasInput.py 13 def run_once(self, input_type=''):
16 @param input_type: a string representing the required input type. See
20 if not input_type:
23 if not self.player.has(input_type):
24 raise error.TestFail('Device does not have a %s!' % input_type)
  /external/autotest/client/site_tests/touch_WakeupSource/
touch_WakeupSource.py 27 def _find_wakeup_file(self, input_type):
33 @param input_type: e.g. 'touchpad' or 'mouse'. See parent class for
36 @raises: TestError if input_type lacks required information.
39 device_dir = self.player.devices[input_type].device_dir
41 raise error.TestError('No device directory for %s!' % input_type)
45 logging.info('%s not found for %s', filename, input_type)
48 event = self.player.devices[input_type].node.split('/')[-1]
61 logging.info('Could not find parent bus for %s.', input_type)
64 logging.info('Parent bus of %s is %s.', input_type, parent)
72 def _is_wake_source(self, input_type)
    [all...]
  /external/autotest/client/cros/input_playback/
input_playback.py 18 def __init__(self, input_type):
19 self.input_type = input_type # e.g. 'touchpad'
29 s = '%s:' % self.input_type
104 def has(self, input_type):
107 @param input_type: string of type, e.g. 'touchpad'
110 return input_type in self.devices
118 def emulate(self, input_type='mouse', property_file=None):
129 @param input_type: 'mouse' or 'keyboard' to use default property files.
135 new_device = Device(input_type)
    [all...]
  /external/autotest/client/site_tests/touch_UpdateErrors/
touch_UpdateErrors.py 81 def _check_updates(self, input_type):
84 @param input_type: string of input type, e.g. 'touchpad'
89 hw_id = self.player.devices[input_type].hw_id
91 raise error.TestError('%s has no valid hw_id!' % input_type)
120 def run_once(self, input_type='touchpad'):
122 if not self.player.has(input_type):
123 raise error.TestError('No %s found on this device!' % input_type)
130 self._check_updates(input_type)
  /art/compiler/optimizing/
nodes_shared.cc 40 Primitive::Type input_type = instruction->AsTypeConversion()->GetInputType(); local
42 int input_size = Primitive::ComponentSize(input_type);
44 if (result_type == Primitive::kPrimInt && input_type == Primitive::kPrimLong) {
52 (input_type == Primitive::kPrimChar && input_size < result_size)) {
instruction_simplifier_shared.h 30 Primitive::Type input_type = conversion->GetInputType(); local
32 return Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type) &&
33 (result_type != input_type);
instruction_simplifier_arm.cc 220 Primitive::Type input_type = instruction->GetInputType(); local
222 if (input_type == result_type) {
227 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
instruction_simplifier_arm64.cc 189 Primitive::Type input_type = instruction->GetInputType(); local
191 if (input_type == result_type) {
196 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
ssa_builder.cc 134 Primitive::Type input_type = HPhi::ToPhiType(input->GetType()); local
135 if (common_type == input_type) {
137 } else if (Primitive::Is64BitType(common_type) != Primitive::Is64BitType(input_type)) {
144 DCHECK(Primitive::IsFloatingPointType(input_type) || input_type == Primitive::kPrimNot);
145 common_type = input_type;
146 } else if (Primitive::IsIntegralType(input_type)) {
152 DCHECK((common_type == Primitive::kPrimFloat && input_type == Primitive::kPrimNot) ||
153 (common_type == Primitive::kPrimNot && input_type == Primitive::kPrimFloat));
  /external/autotest/client/cros/
touch_playback_test_base.py 61 self.player.emulate(input_type='mouse', property_file=mouse_props)
71 def _find_test_files(self, input_type, gestures):
77 @param input_type: device type, e.g. 'touchpad'
86 if not self.player.has(input_type):
87 raise error.TestError('Device does not have a %s!' % input_type)
89 if input_type in ['touchpad', 'touchscreen', 'stylus']:
90 hw_id = self.player.devices[input_type].hw_id
92 raise error.TestError('No valid hw_id for %s!' % input_type)
93 filename_fmt = '%s_%s_%s' % (self._platform, input_type, hw_id)
96 device_name = self.player.devices[input_type].nam
    [all...]
  /external/autotest/client/site_tests/platform_InputBrightness/
platform_InputBrightness.py 24 self._player.emulate(input_type='keyboard')
39 input_type='keyboard', filename='keyboard_f6')
55 input_type='keyboard', filename='keyboard_f7')
  /external/autotest/client/site_tests/platform_InputNewTab/
platform_InputNewTab.py 26 self._player.emulate(input_type='keyboard')
32 input_type='keyboard', filename='keyboard_ctrl+t')
38 input_type='keyboard', filename='keyboard_ctrl+w')
  /external/autotest/client/cros/a11y/
a11y_test_base.py 28 self._player.emulate(input_type='keyboard')
45 input_type='keyboard', filename='keyboard_ctrl+alt+z')
56 input_type='keyboard',
70 input_type='keyboard', filename=filename)
  /external/autotest/client/site_tests/platform_InputBrowserNav/
platform_InputBrowserNav.py 28 self._player.emulate(input_type='keyboard')
38 input_type='keyboard', filename='keyboard_f1')
49 input_type='keyboard', filename='keyboard_f2')
70 input_type='keyboard', filename='keyboard_f3')
  /external/autotest/client/site_tests/platform_InputVolume/
platform_InputVolume.py 30 self._player.emulate(input_type='keyboard')
43 input_type='keyboard', filename='keyboard_f9')
61 input_type='keyboard', filename='keyboard_f10')
77 input_type='keyboard', filename='keyboard_f8')
  /external/autotest/client/site_tests/logging_FeedbackReport/
logging_FeedbackReport.py 27 self._player.emulate(input_type='keyboard')
33 input_type='keyboard', filename='keyboard_alt+shift+i')
  /external/autotest/client/site_tests/platform_InputScreenshot/
platform_InputScreenshot.py 31 self.player.emulate(input_type='keyboard')
67 input_type='keyboard', filename='keyboard_ctrl+f5')
  /external/v8/src/compiler/
typed-optimization.cc 116 Type* const input_type = NodeProperties::GetType(input); local
117 if (!input_type->Maybe(Type::SignedSmall())) {
152 Type* const input_type = NodeProperties::GetType(input); local
153 if (input_type->Is(Type::String())) {
190 Type* const input_type = NodeProperties::GetType(input); local
191 if (input_type->Is(type_cache_.kIntegerOrMinusZeroOrNaN)) {
199 Type* const input_type = NodeProperties::GetType(input); local
200 if (input_type->Is(type_cache_.kUint8)) {
  /toolchain/binutils/binutils-2.25/ld/
ldlex.h 156 } input_type; typedef in typeref:enum:input_enum
158 extern input_type parser_input;
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.cc 148 sub_vars["input_type"] = ClassName(method->input_type(), true);
154 " const $input_type$* request,\n"
219 sub_vars["input_type"] = ClassName(method->input_type(), true);
224 " const $input_type$*,\n"
249 sub_vars["input_type"] = ClassName(method->input_type(), true);
257 " ::google::protobuf::down_cast<const $input_type$*>(request),\n"
290 (which == REQUEST) ? method->input_type() : method->output_type()
    [all...]
  /external/autotest/client/site_tests/graphics_VTSwitch/
graphics_VTSwitch.py 49 self._player.emulate(input_type='keyboard')
55 input_type='keyboard', filename='keyboard_ctrl+alt+f2')
61 input_type='keyboard', filename='keyboard_ctrl+alt+f1')
  /external/autotest/client/site_tests/policy_DisableScreenshots/
policy_DisableScreenshots.py 42 self.player.emulate(input_type='keyboard')
68 input_type='keyboard', filename='keyboard_ctrl+f5')
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 210 method->input_type());
258 method->input_type());
304 (which == REQUEST) ? method->input_type() : method->output_type());
444 vars["input"] = name_resolver_->GetImmutableClassName(method->input_type());
459 vars["input"] = name_resolver_->GetImmutableClassName(method->input_type());
  /external/autotest/client/site_tests/desktopui_ScreenLocker/
desktopui_ScreenLocker.py 32 self.player.emulate(input_type='keyboard')
117 input_type='keyboard', filename='keyboard_search+L')
  /external/autotest/client/cros/chameleon/
audio_test_utils.py 685 input_type=None):
691 @input_type: An input node type defined in cras_utils.CRAS_NODE_TYPES.
705 if input_type and input_type not in input_types:
707 'Target input type %s not present' % input_type)
708 audio_facade.set_chrome_active_node_type(output_type, input_type)

Completed in 1454 milliseconds

1 2 3 4 5