Lines Matching refs:match
25 match = hexcolonrule.match(t[0])
26 if match:
28 curraddress = int(match.group(1), 16)
32 match = symbolrule.match(t[1]) variable
33 if match:
40 currsymbol = str(match.group(1))
46 match = hex2byterule.match(t[1]) variable
47 if not match:
49 match = hex2byterule.match(t[2]) variable
50 if match:
57 insmatch = insrule.match(t[iindex])