Searched refs:version_match (Results 1 – 7 of 7) sorted by relevance
31 version_match = re.match(35 if not version_match:39 int(version_match.group(1)),40 int(version_match.group(2)),41 int(version_match.group(3)),43 if version_match.group(4):44 new_version_info += (version_match.group(4),)
23 version_match = regex.search(version_file_data)24 if version_match:25 return version_match.groups()
12 version_match = re.search(r"__version__ = ['\"]([^'\"]*)['\"]", line) variable13 if version_match:14 version = version_match.group(1)
34 version_match = re.search(37 if version_match:38 return version_match.group(1)
52 string(REGEX MATCH "Xcode ([0-9][0-9]?([.][0-9])+)" version_match ${xcodebuild_version})53 if(version_match)
191 version_match = re.search(version_regex, cc_version_bytes)192 version = tuple(int(version_match.group(i)) for i in range(1, 4))