Home | History | Annotate | Download | only in scripts

Lines Matching refs:match

42           match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE)
43 if match:
44 load_addr = int(match.group(1), 16)
64 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE)
65 if match:
66 frameno = match.group(2)
67 binary = match.group(4)
68 addr = match.group(5)
107 print "%s%d" % (match.group(1).encode('utf-8'), inline_frameno), \
108 match.group(3).encode('utf-8'), "in", frame[0], frame[1]