Lines Matching refs:match
236 match = _RE_RES.match(value)
237 if match:
238 arg_hw_properties[_X_RES] = match.group("x_res")
239 arg_hw_properties[_Y_RES] = match.group("y_res")
244 match = _RE_MEMORY.match(value)
245 if match and match.group("gb_size"):
247 int(match.group("gb_size")) * 1024)
248 elif match and match.group("mb_size"):
249 arg_hw_properties[key] = match.group("mb_size")
254 if not _RE_INT.match(value):
348 if re.match(r"(.*_)?%s" % flavor, flavor_string):
540 if re.match(r"(.*_)?%s_" % avd_type_abbr,
650 match = _BRANCH_RE.match(EscapeAnsi(line.decode()))
651 if match:
654 branch = branch_prefix + match.group("branch")