Lines Matching full:matches
87 matches = re.findall(include_regex, xml_str)
88 for group_inc, group_xml in matches:
97 matches = re.findall(envvar_regex, xml_str)
98 for group_env, group_var in matches:
104 matches = re.findall(sysvar_regex, xml_str)
105 for group_sys, group_var in matches:
111 matches = re.findall(define_regex, xml_str)
112 for group_def, group_name, group_var in matches:
118 matches = re.findall(cusvar_regex, xml_str)
119 for group_cus, group_var in matches:
128 matches = re.findall(foreach_regex, xml_str)
129 for group_for, group_name, group_vars, group_text in matches:
139 matches = re.findall(error_regex, xml_str)
140 for group_var in matches:
143 matches = re.findall(warning_regex, xml_str)
144 for group_wrn, group_var in matches:
153 matches = re.findall(ifelif_regex, xml_str)
154 for ifelif, tag, left, operator, right in matches:
164 matches = re.findall(ifndef_regex, xml_str)
165 for group_ifndef, group_tag, group_var in matches:
191 matches = re.findall(if_elif_else_regex, xml_str, re.DOTALL)
193 group_elif_else, group_else) in matches:
202 matches = re.findall(if_else_regex, xml_str, re.DOTALL)
203 for group_full, group_if, group_if_else, group_else in matches:
210 matches = re.findall(if_regex, xml_str, re.DOTALL)
211 for group_full, group_if, group_text in matches:
220 matches = re.findall(cmd_regex, xml_str)
221 for group_cmd, group_exec in matches: