Home
last modified time | relevance | path

Searched refs:mode_match (Results 1 – 4 of 4) sorted by relevance

/external/autotest/client/site_tests/hardware_Resolution/
Dhardware_Resolution.py82 mode_match = re.match(_MODETEST_MODE_PATTERN, line)
83 if mode_match is not None:
84 res = '{0}x{1}'.format(int(mode_match.group(1)),
85 int(mode_match.group(2)))
/external/syslinux/efi/
Dvesa.c87 BOOLEAN mode_match = FALSE; in efi_vesacon_set_mode() local
118mode_match = ((uint32_t)*x == mode_info->HorizontalResolution && (uint32_t)*y == mode_info->Vertic… in efi_vesacon_set_mode()
120 if (mode_match) { in efi_vesacon_set_mode()
127 if (!mode_match) { in efi_vesacon_set_mode()
/external/autotest/client/cros/graphics/
Dgraphics_utils.py683 mode_match = re.match(_MODETEST_MODE_PATTERN, line)
684 if mode_match is not None:
685 size = (int(mode_match.group(1)), int(mode_match.group(2)))
/external/autotest/client/common_lib/cros/network/
Diw_runner.py581 mode_match = re.search('\* (\w+)', line)
582 if mode_match:
583 pending_phy_modes.append(mode_match.group(1))