Home
last modified time | relevance | path

Searched refs:version_match (Results 1 – 7 of 7) sorted by relevance

/external/python/asn1crypto/dev/
Dversion.py31 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),)
/external/zstd/build/meson/
DGetZstdLibraryVersion.py23 version_match = regex.search(version_file_data)
24 if version_match:
25 return version_match.groups()
/external/lz4/contrib/meson/
DGetLz4LibraryVersion.py23 version_match = regex.search(version_file_data)
24 if version_match:
25 return version_match.groups()
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/
Dsetup.py12 version_match = re.search(r"__version__ = ['\"]([^'\"]*)['\"]", line) variable
13 if version_match:
14 version = version_match.group(1)
/external/python/pyopenssl/doc/
Dconf.py34 version_match = re.search(
37 if version_match:
38 return version_match.group(1)
/external/llvm-project/llvm/tools/xcode-toolchain/
DCMakeLists.txt52 string(REGEX MATCH "Xcode ([0-9][0-9]?([.][0-9])+)" version_match ${xcodebuild_version})
53 if(version_match)
/external/zstd/tests/fuzz/
Dfuzz.py191 version_match = re.search(version_regex, cc_version_bytes)
192 version = tuple(int(version_match.group(i)) for i in range(1, 4))