Searched refs:re (Results 1 - 25 of 77) sorted by relevance

1234

/build/make/tools/
H A Dcheckowners.py6 import re namespace
50 patterns = re.compile(pats)
54 address_pattern = re.compile(email_address)
62 stripped_line = re.sub('#.*$', '', line).strip()
H A Dfilter-product-graph.py4 import re namespace
32 (dependency, re.compile(r'"(.*)"\s*->\s*"(.*)"')),
33 (info, re.compile(r'"(.*)"(\s*\[.*\])')),
H A Devent_log_tags.py17 import re namespace
68 parts = re.split(r"\s+", line, 2)
97 if not re.match(r"\(.*\)\s*$", description):
H A Dproduct_debug.py18 import re namespace
53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
H A Dgenerate-notice-files.py32 import re namespace
79 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
137 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
152 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
H A Djava-layers.py4 import re namespace
184 COMMENTS = re.compile("//.*?\n|/\*.*?\*/", re.S)
185 PACKAGE = re.compile("package\s+(.*)")
186 IMPORT = re.compile("import\s+(.*)")
H A Djava-event-log-tags.py30 import re namespace
74 # We're building something that's not being included in the
134 out = name[0].lower() + re.sub(r"[^A-Za-z0-9]", "", name.title())[1:]
/build/tools/
H A Dcheckowners.py6 import re namespace
50 patterns = re.compile(pats)
54 address_pattern = re.compile(email_address)
62 stripped_line = re.sub('#.*$', '', line).strip()
H A Dfilter-product-graph.py4 import re namespace
32 (dependency, re.compile(r'"(.*)"\s*->\s*"(.*)"')),
33 (info, re.compile(r'"(.*)"(\s*\[.*\])')),
H A Devent_log_tags.py17 import re namespace
68 parts = re.split(r"\s+", line, 2)
97 if not re.match(r"\(.*\)\s*$", description):
H A Dproduct_debug.py18 import re namespace
53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
H A Dgenerate-notice-files.py32 import re namespace
79 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
137 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
152 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
H A Djava-layers.py4 import re namespace
184 COMMENTS = re.compile("//.*?\n|/\*.*?\*/", re.S)
185 PACKAGE = re.compile("package\s+(.*)")
186 IMPORT = re.compile("import\s+(.*)")
H A Djava-event-log-tags.py30 import re namespace
74 # We're building something that's not being included in the
134 out = name[0].lower() + re.sub(r"[^A-Za-z0-9]", "", name.title())[1:]
/build/core/tasks/check_boot_jars/
H A Dcheck_boot_jars.py10 import re namespace
32 whitelist_re = re.compile(combined_re)
33 except re.error:
/build/make/core/tasks/check_boot_jars/
H A Dcheck_boot_jars.py10 import re namespace
32 whitelist_re = re.compile(combined_re)
33 except re.error:
/build/core/
H A Dchecktree3 import sys, os, re namespace
14 excludes_compiled = map(re.compile, excludes)
59 regex_compiled = re.compile(regex)
60 filt_compiled = re.compile(filt)
H A Dlocal_vndk.mk33 # If we're not using the VNDK, drop all restrictions
/build/make/core/
H A Dchecktree3 import sys, os, re namespace
14 excludes_compiled = map(re.compile, excludes)
59 regex_compiled = re.compile(regex)
60 filt_compiled = re.compile(filt)
H A Dlocal_vndk.mk33 # If we're not using the VNDK, drop all restrictions
/build/make/tools/releasetools/
H A Dvalidate_target_files.py28 import re namespace
150 check_cmd = re.search(r'if ! applypatch -c \w+:.+:\w+:(\w+);',
153 patch_cmd = re.search(r'(applypatch.+)&&', lines[2].strip())
166 # We're patching boot.img to get recovery.img where bonus_args is optional
H A Dcheck_ota_package_signature.py24 import re namespace
43 algorithm = re.search(r'Signature Algorithm: ([a-zA-Z0-9]+)', cert_dump)
/build/tools/releasetools/
H A Dvalidate_target_files.py28 import re namespace
150 check_cmd = re.search(r'if ! applypatch -c \w+:.+:\w+:(\w+);',
153 patch_cmd = re.search(r'(applypatch.+)&&', lines[2].strip())
166 # We're patching boot.img to get recovery.img where bonus_args is optional
H A Dcheck_ota_package_signature.py24 import re namespace
43 algorithm = re.search(r'Signature Algorithm: ([a-zA-Z0-9]+)', cert_dump)
/build/core/tasks/
H A Dapicheck.mk44 # Check that the API we're building hasn't broken the last-released
60 # Check that the API we're building hasn't changed from the not-yet-released
90 # Check that the System API we're building hasn't broken the last-released
106 # Check that the System API we're building hasn't changed from the not-yet-released
136 # Check that the Test API we're building hasn't changed from the not-yet-released

Completed in 216 milliseconds

1234