Lines Matching refs:match_obj
64 match_obj = property_re.match(line)
66 if match_obj == None:
69 name = match_obj.group(3)
74 low = int(match_obj.group(1), 16)
78 if match_obj.group(2) != None:
79 high = int(match_obj.group(2), 16)
91 match_obj = property_re.match(line)
93 if match_obj == None:
96 low = int(match_obj.group(1), 16)
98 if match_obj.group(2) != None:
99 high = int(match_obj.group(2), 16)
101 for abbrev in match_obj.group(3).split(" "):