Home
last modified time | relevance | path

Searched refs:regex (Results 1 – 21 of 21) sorted by relevance

/build/make/tools/aconfig/printflags/
DCargo.toml14 regex = "1.10.3" qkey
/build/make/tools/aconfig/aflags/
DCargo.toml10 regex = "1.10.3" qkey
/build/make/tools/product_config/src/com/android/build/config/
DPosition.java19 import java.util.regex.Matcher;
20 import java.util.regex.Pattern;
DRegexSet.java19 import java.util.regex.Pattern;
DValue.java21 import java.util.regex.Pattern;
22 import java.util.regex.Matcher;
DDumpConfigParser.java29 import java.util.regex.Pattern;
DFlattenConfig.java27 import java.util.regex.Pattern;
/build/bazel/scripts/incremental_build/
Dpretty.py102 def summarize_helper(metrics: TextIO, regex: str, agg: Aggregation) -> dict[str, str]:
112 p = re.compile(regex)
172 regex: str,
183 summary_data = summarize_helper(input_file, regex, agg)
238 regex=options.properties,
/build/soong/scripts/
Dcheck_prebuilt_presigned_apk.py12 regex = re.compile(r"targetSdkVersion: *'([0-9]+)'")
16 match = regex.fullmatch(line.strip())
/build/make/tools/aconfig/printflags/src/
Dmain.rs22 use regex::Regex;
30 let regex = Regex::new(r"(?m)^([[[:alnum:]]_]+/[[[:alnum:]]_\.]+)=(true|false)$").unwrap(); in parse_device_config() localVariable
31 for capture in regex.captures_iter(raw) { in parse_device_config()
/build/make/tools/aconfig/aflags/src/
Ddevice_config_source.rs21 use regex::Regex;
30 let regex = Regex::new(r"(?m)^([[[:alnum:]]_]+/[[[:alnum:]]_\.]+)=(true|false)$")?; in parse_device_config() localVariable
31 for capture in regex.captures_iter(raw) { in parse_device_config()
/build/make/core/
Dchecktree40 def run(command, regex, filt): argument
59 regex_compiled = re.compile(regex)
Dproduct_config.rbc568 pattern: string or list of words. '%' stands for wildcard (in regex terms, '.*')
746 $1 in regex terms).
/build/make/tests/
Dconversion_error.rbc21 # * all runtime functions (wildcard, regex, etc.) work
Drun.rbc21 # * all runtime functions (wildcard, regex, etc.) work
/build/soong/cmd/pom2mk/
Dpom2mk.go50 regex, err := regexp.Compile(split[0])
55 regexp: regex,
355 Usage: %s [--rewrite <regex>=<replace>] [-exclude <module>] [--extra-deps <module>=<module>[,<modul…
357 -rewrite <regex>=<replace>
360 project, mappings are searched in the order they were specified. The first <regex> matching
/build/soong/ui/build/sandbox/darwin/
Dglobal.sb35 (global-name-regex #"^com\.apple\.distributed_notifications") ; xcodebuild in Soong
/build/soong/cmd/pom2bp/
Dpom2bp.go54 regex, err := regexp.Compile(split[0])
59 regexp: regex,
807 Usage: %s [--rewrite <regex>=<replace>] [--exclude <module>] [--extra-static-libs <module>=<module>…
809 -rewrite <regex>=<replace>
812 project, mappings are searched in the order they were specified. The first <regex> matching
/build/soong/docs/
Dnative_code_coverage.md197 * The `-ignore-filename-regex=<regex>` option can be used to ignore files that
198 are not of interest. E.g: `-ignore-filename-regex="external/*"`
/build/soong/scripts/check_boot_jars/
Dpackage_allowed_list.txt48 java\.util\.regex
/build/make/tools/signapk/src/com/android/signapk/
DSignApk.java94 import java.util.regex.Pattern;