Lines Matching refs:m
27 m = re.match(r"(\d+\.\d+).+\.cil", fn)
28 if m:
29 self.apiLevel = m.group(1)
81 m = re.match(r"type\s+(.+)", stmt)
82 self.types.add(m.group(1))
86 m = re.match(r"expandtypeattribute\s+\((.+)\)\s+(true|false)", stmt)
87 self.expandtypeattributes[m.group(1)] = m.group(2)
91 m = re.match(r"typeattribute\s+(.+)", stmt)
92 self.typeattributes.add(m.group(1))
96 m = re.match(r"typeattributeset\s+(.+?)\s+\((.+?)\)", stmt, flags = re.M |re.S)
97 ta = m.group(1)
100 tas = m.group(2).split()