Lines Matching refs:m
39 m = re.match(r"(\d+\.\d+).+\.cil", fn)
40 if m:
41 self.apiLevel = m.group(1)
93 m = re.match(r"type\s+(.+)", stmt)
94 self.types.add(m.group(1))
98 m = re.match(r"expandtypeattribute\s+\((.+)\)\s+(true|false)", stmt)
99 self.expandtypeattributes[m.group(1)] = m.group(2)
103 m = re.match(r"typeattribute\s+(.+)", stmt)
104 self.typeattributes.add(m.group(1))
108 m = re.match(r"typeattributeset\s+(.+?)\s+\((.+?)\)", stmt, flags = re.M |re.S)
109 ta = m.group(1)
112 tas = m.group(2).split()