Home
last modified time | relevance | path

Searched refs:finditer (Results 1 – 19 of 19) sorted by relevance

/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dtest_regexps.py235 print(repr(list(m.groupdict() for m in InitialIncludes.finditer(c))))
250 print(repr(list(m.groupdict() for m in InitialIncludes.finditer(c))))
277 print(repr(list(m.groupdict() for m in InitialIncludes.finditer(c))))
H A Dpatching.py171 def finditer(klass, content: str, pos=0, endpos=-1) -> Iterable[Match]: member in FileMatch
175 return klass.compiled_re().finditer(content, pos)
187 for m in klass.finditer(self.file.original_content,
331 matches = [klass(self, m) for m in klass.finditer(self.original_content)]
/openbmc/linux/scripts/dtc/
H A Ddt-extract-compatibles14 for m in re.finditer(r'(?<!CPU_METHOD_)(IRQCHIP|OF)_(DECLARE|MATCH)(_DRIVER)?\(.*?\)', data):
28 for m in re.finditer(r'of_device_id(\s+\S+)?\s+\S+\[\](\s+\S+)?\s*=\s*({.*?);', data):
/openbmc/openbmc-test-automation/lib/external_intf/
H A Dmanagement_console_utils.py171 for match in re.finditer(bmc_rec_pattern, bmc_records, re.MULTILINE):
/openbmc/openbmc-build-scripts/scripts/
H A Dunit-test.py675 for match in re.compile(pattern).finditer(stdout.decode("utf-8")):
834 for match in re.finditer(pattern, build_contents):
1112 for match in re.finditer(pattern, build_contents):
1120 for match in re.finditer(pattern, build_contents):
1133 for match in re.finditer(pattern, build_contents):
/openbmc/openbmc/poky/meta/lib/oe/
H A Dtypes.py57 def finditer(self, string, flags=0): member in NoMatch
H A Dcve_check.py122 for match in cve_match.finditer(patch_text):
H A Dpackage.py1667 … for m in re.finditer(r"DLL Name: (.*?\.dll)$", out.decode(), re.MULTILINE | re.IGNORECASE):
/openbmc/qemu/target/hexagon/
H A Dgen_printinsn.py71 for m in equals.finditer(s):
H A Ddectree.py366 for m in reversed(list(re.finditer(imm_letter + "+", enc))):
/openbmc/linux/Documentation/sphinx/
H A Dcdomain.py113 match_iterators = [regex.finditer(n) for regex in markup_func]
H A Dautomarkup.py100 match_iterators = [regex.finditer(t) for regex in markup_func]
/openbmc/qemu/scripts/
H A Dblock-coroutine-wrapper.py136 for m in func_decl_re.finditer(text):
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dgitarchive.py211 field_names = [m.group(1) for m in re.finditer(r'{(\w+)}', tag_name)]
/openbmc/openbmc/poky/meta/classes-global/
H A Ddebian.bbclass77 for m in re.finditer(r"\s+SONAME\s+([^\s]+)", output):
H A Dinsane.bbclass620 syms = re.finditer(ptrn, phdrs)
/openbmc/qemu/tests/avocado/
H A Dacpi-bits.py338 matchiter = re.finditer(r'(.*Summary: )(\d+ passed), (\d+ failed).*',
/openbmc/openbmc/poky/meta/classes/
H A Dbuildhistory.bbclass216 pkgiter = re.finditer(r'[a-zA-Z0-9.+-]+( \([><=]+[^)]+\))?', string, 0)
/openbmc/linux/tools/power/pm-graph/
H A Dsleepgraph.py6255 list = re.finditer(start, html)