Lines Matching refs:group
279 name = m.group('name')
280 addr = int(m.group('addr'), 16)
281 size = int(m.group('size'), 16)
328 if m.group('no') and not m.group('dir'):
330 dirs[int(m.group('no'))] = m.group('path')
331 elif m.group('no'):
333 dir = int(m.group('dir'))
335 files[int(m.group('no'))] = os.path.join(
337 m.group('path'))
339 files[int(m.group('no'))] = m.group('path')
342 if m.group('op_file'):
343 op_file = int(m.group('op_file'), 0)
344 if m.group('op_line'):
345 op_line = int(m.group('op_line'), 0)
346 if m.group('op_addr'):
347 op_addr = int(m.group('op_addr'), 0)
349 if (m.group('op_special')
350 or m.group('op_copy')
351 or m.group('op_end')):
356 if m.group('op_end'):
460 if m and m.group('event') in events:
462 last_event = m.group('event')
463 last_period = int(m.group('period'), 0)
471 m.group('sym').startswith('__')
472 or m.group('sym').startswith('0')
473 or m.group('sym').startswith('-')
474 or m.group('sym').startswith('[')
475 or m.group('dso').startswith('/usr/lib')):
478 dso = m.group('dso')
479 sym = m.group('sym')
480 off = int(m.group('off'), 0) if m.group('off') else 0
481 addr_ = int(m.group('addr'), 16)