Lines Matching refs:m
64 m = re.match(r'^(\d+)e(\d+)$', value.lower())
65 if m:
66 _min = int(m.group(1)) * 10**int(m.group(2))
71 m = re.match(r'^(\d+)e(\d+)$', value.lower())
72 if m:
73 _max = int(m.group(1)) * 10**int(m.group(2))
80 m = re.match(r'^(\d+)e(\d+)$', value.lower())
81 if m:
82 _default = int(m.group(1)) * 10**int(m.group(2))
140 m = BUILD_DEFINE_RE.match(line) variable
141 if not m:
147 config_name = m.group(1)
148 config_description = m.group(2)
149 _attrs = m.group(3)
151 … _attrs = re.sub(r'(\(.+\))', lambda m: m.group(1).replace(',', '\0'), _attrs)