Lines Matching refs:match
236 match = re.match(r'init_([\w_]+)', cfg_assign_xml.attrib['configuration_step'])
237 periph_name = match.group(1)
241 … match = re.match(re.escape(periph_name) + r'_(\w+)', cfg_assign_xml.attrib['register'])
242 reg_name = match.group(1)
243 match = re.match(r'SW_PAD_CTL_PAD_(\w+)', reg_name)
244 pad_name = match.group(1)
411 match = re.search(r'GPIO(\d+)', peripheral)
412 gpio_port = match.group(1)
420 match = re.match(r'init_([\w_]+)', assignment.attrib['configuration_step'])
421 periph_name = match.group(1)
422 match = re.match(re.escape(periph_name) + r'_(\w+)', assignment.attrib['register'])
423 reg_name = match.group(1)
882 self._soc = re.match(r'MIMXR?T?[0-9]+(M\w\d)*', self._soc_sku).group(0)
1022 soc_rt11xx = re.match(r'MIMXRT11\d+', self._soc) is not None