Lines Matching full:match
126 match = self.includes.search(header)
127 includes = list(map(lambda e: e.strip(), match.group(
128 'includes').split(','))) if match else []
130 match = self.includes2.search(header)
131 includes += list(map(lambda e: e.strip(), match.group(
132 'includes').split('-')))[1:] if match else []
136 match = self.flags.search(header)
138 match.group('flags').split(','))) if match else []
143 match = self.negative.search(header)
144 negative_phase = match.group('phase') if match else 'pass'
145 negative_type = match.group('type') if match else ''
180 passed = passed and bool(self.async_ok.match(out))