Home
last modified time | relevance | path

Searched refs:finditer (Results 1 - 25 of 42) sorted by relevance

12

/third_party/mbedtls/scripts/
H A Dgenerate_ssl_debug_helpers.py83 for match in pattern.finditer(source):
150 for match in enum_pattern.finditer(source_code, start, end):
237 matches = list(sig_alg_pattern.finditer(source_code, start, end))
296 matches = list(named_group_pattern.finditer(source_code, start, end))
H A Dassemble_changelog.py154 title_matches = list(re.finditer(cls._category_title_re, version_body))
/third_party/vixl/tools/
H A Dverify_assembler_traces.py361 for m in re.finditer(pattern, trace)
396 for match_object in re.finditer(".*@ encoding: \[(?P<encoding>.*)\]",
/third_party/node/deps/v8/tools/testrunner/objects/
H A Dtestcase.py464 for match in RESOURCES_PATTERN.finditer(source):
471 for match in LOAD_PATTERN.finditer(source):
475 for match in MODULE_FROM_RESOURCES_PATTERN.finditer(source):
477 for match in MODULE_IMPORT_RESOURCES_PATTERN.finditer(source):
/third_party/python/Lib/
H A Dstring.py145 for mo in self.pattern.finditer(self.template):
159 for mo in self.pattern.finditer(self.template):
/third_party/python/Lib/re/
H A D__init__.py95 finditer Return an iterator yielding a Match object for each match.
132 "findall", "finditer", "compile", "purge", "template", "escape",
218 def finditer(pattern, string, flags=0): function
223 return _compile(pattern, flags).finditer(string)
/third_party/mesa3d/src/compiler/glsl/tests/
H A Dsexps.py52 for match in sexp_token_regexp.finditer(sexp):
/third_party/vk-gl-cts/scripts/src_util/
H A Dpre_commit.py90 for m in guard_re.finditer(contents):
/third_party/python/Tools/scripts/
H A Dgenerate_global_objects.py118 for m in id_regex.finditer(line):
121 for m in str_regex.finditer(line):
/third_party/python/Lib/idlelib/
H A Dsqueezer.py41 for m in re.finditer(r"[\t\n]", s):
134 for line_match in re.finditer(r'[^\n]+', self.s)
H A Dcolorizer.py343 for m in self.prog.finditer(chars):
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dmacro_checker_file.py151 for m in REF_PAGE_ATTRIB.finditer(line)}
501 for match in ANCHOR.finditer(line):
512 for match in MEMBER_REFERENCE.finditer(line):
533 for match in self.suspected_missing_macro_re.finditer(line):
588 for match in self.checker.macro_re.finditer(line):
/third_party/python/Lib/test/
H A Dtest_re.py70 it = re.finditer(b'a', b)
1487 iter = re.finditer(r":+", "a:b::c:::d")
1492 iter = pat.finditer("a:b::c:::d", 1, 10)
1497 iter = pat.finditer("a:b::c:::d", pos=1, endpos=10)
1502 iter = pat.finditer("a:b::c:::d", endpos=10, pos=1)
1507 iter = pat.finditer("a:b::c:::d", pos=3, endpos=8)
1521 iter = re.finditer(r"\s", "a b")
1530 iter = re.finditer(r".*", "asdf")
1811 self.assertRaises(TypeError, re.finditer, "a", {})
1925 first, second = list(re.finditer("(a
[all...]
/third_party/icu/tools/scripts/
H A Duconfig_vars_test.py65 for uconfig_no_flag in re.finditer(uconfig_no_regex, uconfig_file):
/third_party/mbedtls/tests/scripts/
H A Dset_psa_test_dependencies.py211 content_matches = list(re.finditer(r'^[\t ]*([^\t #].*)$', stanza, re.M))
H A Dcheck_names.py389 for macro in macro_regex.finditer(line):
430 for name in mbed_regex.finditer(line):
H A Daudit-validity-dates.py295 for idx, m in enumerate(re.finditer(X509Parser.PEM_REGEX, data, flags=re.S), 1):
/third_party/EGL/sdk/docs/man/html/
H A Dmakeindex.py147 for m in re.finditer(r"<funcdef>.*<function>(.*)</function>.*</funcdef>", line):
/third_party/node/deps/v8/tools/
H A Dgen-keywords-gen-h.py58 for str_read in reads_re.finditer(out):
H A Dgen-postmortem-metadata.py467 for match in re.finditer(r'\nclass(?:\s+V8_EXPORT(?:_PRIVATE)?)?'
H A Davg.py238 for m in re.finditer(SCORE_REGEX, line.decode()):
H A Dstats-viewer.py111 for m in re.finditer(r"/dev/shm/\S*", maps_file.read()):
/third_party/python/Doc/tools/extensions/
H A Dsuspicious.py57 ''', re.VERBOSE).finditer
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/html/
H A Dmakeindex.py147 for m in re.finditer(r"<funcdef>.*<function>(.*)</function>.*</funcdef>", line):
/third_party/skia/third_party/externals/angle2/scripts/
H A Dexport_targets.py283 for m in INCLUDE_REGEX.finditer(text):

Completed in 19 milliseconds

12