Lines Matching refs:m
45 m = decl_pattern.match(line)
46 if m:
47 decls[int(m.group('no'))] = m.group('file')
72 m = struct_pattern.match(line)
73 if m:
74 if m.group('tag'):
80 found = (m.group('tag') == 'structure_type')
84 elif found and m.group('name'):
85 name = m.group('name')
86 elif found and name and m.group('decl'):
87 decl = int(m.group('decl'))
88 elif found and name and m.group('size'):
89 size = int(m.group('size'))