Lines Matching refs:match
309 match = Whitespace._lead.search(line)
310 if match and match.group(1).find('\t') != -1:
313 match = Whitespace._trail.search(line)
314 if match:
407 match = ControlSpace._any_control.search(line)
408 return not (match and match.group(2) != " ")
454 match = self.regex.search(line)
455 if match:
456 if match.group(1) in ('true', 'True'):