Lines Matching refs:match
113 match = _LOCAL_INSTANCE_NAME_PATTERN.match(name)
114 if match:
115 return int(match.group("id"))
214 match = _RE_TIMEZONE.match(start_time)
218 if match:
620 match = cls._INSTANCE_NAME_PATTERN.match(name)
621 if match:
622 return int(match.group("id"))
642 match = cls._DEVICE_SERIAL_PATTERN.match(serial)
643 if not match:
645 port = int(match.group("console_port"))
773 zone_match = _RE_ZONE.match(zone_info)
806 match = re_pattern.match(line)
807 if match:
808 adb_port = int(match.group(_RE_GROUP_ADB))
809 vnc_port = int(match.group(_RE_GROUP_VNC))