Home
last modified time | relevance | path

Searched refs:str_fields (Results 1 – 2 of 2) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dgitarchive.py215 str_fields = dict([(f, '*') for f in field_names])
216 str_fields.update(kwargs)
219 tag_pattern = tag_name.format(**str_fields)
224 str_fields = dict([(f, r'(?P<{}>[\w\-.()]+)'.format(f)) for f in field_names])
225 str_fields['branch'] = r'(?P<branch>[\w\-.()/]+)'
226 str_fields['commit'] = '(?P<commit>[0-9a-f]{7,40})'
227 str_fields['commit_number'] = '(?P<commit_number>[0-9]{1,7})'
228 str_fields['tag_number'] = '(?P<tag_number>[0-9]{1,5})'
231 str_fields.update(fixed_fields)
232 tag_re = re.compile(tag_name.format(**str_fields))
/openbmc/qemu/scripts/
H A Ddecodetree.py178 def str_fields(fields): function