/openbmc/qemu/scripts/ |
H A D | xml-preprocess.py | 87 matches = re.findall(include_regex, xml_str) 97 matches = re.findall(envvar_regex, xml_str) 104 matches = re.findall(sysvar_regex, xml_str) 111 matches = re.findall(define_regex, xml_str) 118 matches = re.findall(cusvar_regex, xml_str) 128 matches = re.findall(foreach_regex, xml_str) 139 matches = re.findall(error_regex, xml_str) 143 matches = re.findall(warning_regex, xml_str) 153 matches = re.findall(ifelif_regex, xml_str) 164 matches = re.findall(ifndef_regex, xml_str) [all …]
|
H A D | qom-cast-macro-clean-cocci-gen.py | 48 for match in re.findall(pattern, content):
|
/openbmc/bmcweb/scripts/ |
H A D | generate_schema_collections.py | 57 for ref in root.findall(EDMX + "Reference"): 62 for inc in ref.findall(EDMX + "Include"): 80 for schema in ds.findall(EDM + "Schema"): 81 for entity_type in schema.findall(EDM + "EntityType"): 85 for nav_prop in entity_type.findall(EDM + "NavigationProperty"): 98 for complex_type in schema.findall(EDM + "ComplexType"): 102 for nav_prop in complex_type.findall(EDM + "NavigationProperty"): 123 for annotation in element.findall(EDM + "Annotation"):
|
H A D | generate_schema_enums.py | 41 for member in schema_element.findall(EDM + "Member"): 52 data_services = root.findall(EDMX + "DataServices")
|
/openbmc/openbmc-test-automation/lib/ |
H A D | pldm_utils.py | 100 attr_handle = re.findall( 123 attr_handle = re.findall(r"\(.*?\)", item["AttributeNameHandle"]) 206 attr_handle = re.findall(r"\(.*?\)", item["AttributeNameHandle"]) 242 attr_handle = re.findall(r"\(.*?\)", item["AttributeNameHandle"]) 255 attr_default_value = re.findall(r"\(.*?\)", item["StringHandle"])
|
H A D | ipmi_utils.py | 400 count = re.findall("-(\\d{1,4})-", version_id) 403 release = re.findall("-r(\\d{1,4})", version_id)
|
H A D | var_funcs.py | 660 map(str.strip, re.findall(field_desc_regex, header_line)[0]) 671 map(str.strip, re.findall(field_desc_regex, report_line)[0])
|
/openbmc/u-boot/test/py/tests/ |
H A D | test_tpm2.py | 193 str = re.findall(r'\d+ known updates', read_pcr)[0] 195 updates = int(re.findall(r'\d+', str)[0]) 225 str = re.findall(r'\d+ known updates', read_pcr)[0] 226 new_updates = int(re.findall(r'\d+', str)[0])
|
/openbmc/openbmc/poky/documentation/tools/ |
H A D | update-documentation-conf | 54 for glossary in root.findall('glossary'): 55 for glossdiv in glossary.findall('glossdiv'): 56 for glossentry in glossdiv.findall('glossentry'): 64 flags = flag_re.findall(infolinesplit[0])
|
/openbmc/qemu/target/hexagon/ |
H A D | gen_trans_funcs.py | 51 imm = immre.findall(hex_common.semdict[tag]) 80 regs = ordered_unique(regre.findall(iset.iset[tag]["syntax"])) 81 imms = ordered_unique(immre.findall(iset.iset[tag]["syntax"]))
|
H A D | gen_decodetree.py | 118 regs = ordered_unique(regre.findall(iset.iset[tag]["syntax"])) 119 imms = ordered_unique(immre.findall(iset.iset[tag]["syntax"])) 128 reg_enc_fields = re.findall(reg_letter + "+", enc)
|
/openbmc/openbmc/poky/meta/recipes-kernel/perf/perf/ |
H A D | sort-pmuevents.py | 47 for struct in re.findall( struct_block_regex, data ): 53 for entry in re.findall( field_regex, struct[3] ):
|
/openbmc/openbmc/meta-ibm/recipes-phosphor/ipmi/ |
H A D | phosphor-ipmi-config.bbappend | 26 count = re.findall("-(\d{1,4})-", version_id) 32 release = re.findall("-r(\d{1,4})", version_id)
|
/openbmc/qemu/tests/tcg/multiarch/gdbstub/ |
H A D | registers.py | 40 for f in tree.findall("feature"): 42 regs = f.findall("reg")
|
/openbmc/pyphosphor/obmc/dbuslib/ |
H A D | introspection.py | 29 return [x.attrib for x in self.data.findall('arg')] 32 return [x.attrib['name'] for x in self.data.findall('node')]
|
/openbmc/linux/scripts/ |
H A D | checkkconfigsymbols.py | 249 if re.findall(r"[URMADC]{1}", line[:2]): 399 symbols = REGEX_SOURCE_SYMBOL.findall(line) 410 return REGEX_SYMBOL.findall(line) 450 symbol_def = REGEX_KCONFIG_DEF.findall(line)
|
/openbmc/openbmc-tools/pretty-journal/ |
H A D | pretty-journal.py | 18 for entry in re.findall("^{$(.+?)^}$", buf, re.DOTALL | re.MULTILINE):
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | bbtests.py | 255 tasks = re.findall(r'task\s+(do_\S+):', ret.output) 268 tasks = re.findall(r'task\s+(do_\S+):', ret.output) 276 tasks = re.findall(r'task\s+(do_\S+):', ret.output) 285 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
|
/openbmc/openbmc/poky/scripts/ |
H A D | patchtest-get-branch | 46 mprefix = re.findall(r'\[.*?\]', subject)
|
/openbmc/qemu/tests/tcg/aarch64/gdbstub/ |
H A D | test-mte.py | 32 tags_match = re.findall(PATTERN_0, co, re.MULTILINE)
|
/openbmc/linux/scripts/dtc/ |
H A D | dt-extract-compatibles | 29 compat_list += re.findall(r'\.compatible\s+=\s+"(\S+)"', m[3])
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | progress.py | 122 percs = self._regex.findall(filter_color(string)) 137 nums = self._regex.findall(filter_color(string))
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | s3.py | 47 …percs = re.findall(r'^Completed (\d+.{0,1}\d*) (\w+)\/(\d+.{0,1}\d*) (\w+) (\(.+\)) with\s+', line)
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_buildsys.py | 194 res = dep_re.findall(res.group(2)) 201 res = dep_re.findall(res.group(2)) 486 res = dep_re.findall(res.group(1)) 493 res = dep_re.findall(res.group(1))
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | types.py | 54 def findall(self, string, flags=0): member in NoMatch
|