Lines Matching refs:match
25 match = re.match(r'^(.+)[|](.+)$', condition)
26 if match:
27 (a_sql, a_values) = me(match.group(1), valid_field_dict)
28 (b_sql, b_values) = me(match.group(2), valid_field_dict)
33 match = re.match(r'^(.+)[&](.+)$', condition)
34 if match:
35 (a_sql, a_values) = me(match.group(1), valid_field_dict)
36 (b_sql, b_values) = me(match.group(2), valid_field_dict)
46 match = re.match(regex, condition)
47 if match:
48 field = valid_field_dict[match.group(1)]
49 op = compare_ops[match.group(2)]
50 if match.group(5):
51 val = match.group(4).replace("''", "'")
52 elif match.group(7):
53 val = match.group(6).replace('""', '"')
54 elif match.group(8):
55 val = match.group(8)