Lines Matching refs:match
43 match = re.match(r'^(.+)[|](.+)$', condition)
44 if match:
46 (a_sql, a_values) = me(match.group(1), valid_field_dict)
47 (b_sql, b_values) = me(match.group(2), valid_field_dict)
52 match = re.match(r'^(.+)[&](.+)$', condition)
53 if match:
55 (a_sql, a_values) = me(match.group(1), valid_field_dict)
56 (b_sql, b_values) = me(match.group(2), valid_field_dict)
73 match = re.match(regex, condition)
74 if match:
75 field = valid_field_dict[match.group(1)]
76 op = compare_ops[match.group(2)]
77 if match.group(5):
78 val = match.group(4).replace("''", "'")
79 elif match.group(7):
80 val = match.group(6).replace('""', '"')
81 elif match.group(8):
82 val = match.group(8)