Lines Matching refs:r
148 m = re.match(r'([^:]*): (.*)\Z', line)
278 m = re.match(r'([^ ]+) ([^ ]+) ([^: ][^ ]* [^:]*) : (.*)\Z', line)
291 if re.match(r'-?0x[0-9a-f.]*p[-+][0-9]+f\Z', arg):
293 if re.search(r'[0-9]L\Z', arg):
312 sign_re = r'[+-]?'
313 exp_re = r'([+-])?[0-9]+'
314 suffix_re = r'[lLfF]?'
315 dec_exp_re = r'[eE]' + exp_re
316 hex_exp_re = r'[pP]' + exp_re
317 dec_frac_re = r'(?:[0-9]*\.[0-9]+|[0-9]+\.)'
318 hex_frac_re = r'(?:[0-9a-fA-F]*\.[0-9a-fA-F]+|[0-9a-fA-F]+\.)'
319 dec_int_re = r'[0-9]+'
320 hex_int_re = r'[0-9a-fA-F]+'
321 dec_cst_re = r'(?:%s(?:%s)?|%s%s)' % (dec_frac_re, dec_exp_re,
323 hex_cst_re = r'0[xX](?:%s|%s)%s' % (hex_frac_re, hex_int_re, hex_exp_re)
324 fp_cst_re = r'(%s(?:%s|%s))%s\Z' % (sign_re, dec_cst_re, hex_cst_re,
344 for r in res_rm:
345 all_args_res.extend(r[:len(r)-1])
477 m = re.match(r'([^:]*):(.*)\Z', flag)
577 m = re.match(r'AUTO_TESTS_([^_]*)_([^_ ]*) *\(([^)]*)\),\Z',
584 m = re.match(r'TEST_([^_]*)_([^_ ]*) *\((.*)\),\Z', line_strip)