Home
last modified time | relevance | path

Searched refs:match_obj (Results 1 – 4 of 4) sorted by relevance

/external/pcre/maint/
DGenerateCommon.py171 match_obj = names_re.match(line)
173 if match_obj == None or match_obj.group(1) == last_script_name:
176 last_script_name = match_obj.group(1)
185 match_obj = value_alias_re.match(line)
187 if match_obj == None:
190 if match_obj.group(1) == "sc":
191 if match_obj.group(2) == match_obj.group(3):
192 abbreviations[match_obj.group(3)] = ()
193 elif match_obj.group(4) == None:
194 abbreviations[match_obj.group(3)] = (match_obj.group(2),)
[all …]
DGenerateTest26.py64 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:
[all …]
/external/cronet/build/win/
Dgn_meta_sln.py89 match_obj = re.match(project_pattern, sln_line) variable
90 if match_obj:
91 proj_name = match_obj.group(1)
94 all_projects[proj_name].append((config[0], match_obj.group(2),
95 match_obj.group(3)))
/external/angle/build/win/
Dgn_meta_sln.py89 match_obj = re.match(project_pattern, sln_line) variable
90 if match_obj:
91 proj_name = match_obj.group(1)
94 all_projects[proj_name].append((config[0], match_obj.group(2),
95 match_obj.group(3)))