Home
last modified time | relevance | path

Searched refs:line_regex (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/system/sepolicy/tests/
H A Dcheck_prop_prefix.py23 line_regex = re.compile(r'^(\S+)\s+u:object_r:([^:]+):s0.*$') variable
28 matched = line_regex.match(line)
/aosp_15_r20/external/fonttools/MetaTools/
H A DbuildUCD.py74 line_regex = re.compile(
82 match = line_regex.match(line)
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_performance_test_utils/
Dqcom_utils.py269 line_regex = re.compile(template_regex.format(field_name))
270 if re.match(line_regex, line):
/aosp_15_r20/external/vulkan-validation-layers/layers/
H A Dgpu_validation.cpp921 static const std::regex line_regex( // matches #line directives in GetLineAndFilename() local
935 bool found_line = std::regex_match(string, captures, line_regex); in GetLineAndFilename()