Lines Matching refs:matched
1979 matched = thread_line_pattern.match(line)
1980 if matched:
1981 self.runCmd('thread select %s' % matched.group(1))
2078 matched = bool(match_object)
2081 print("Matched" if matched else "Not matched", file=sbuf)
2082 if matched:
2085 self.assertTrue(matched if matching else not matched,
2352 def found_str(matched): argument
2353 return "was found" if matched else "was not found"
2369 matched = matching
2373 matched = output.startswith(startstr)
2375 expecting_str, startstr, found_str(matched)))
2377 if endstr and matched == matching:
2378 matched = output.endswith(endstr)
2380 expecting_str, endstr, found_str(matched)))
2382 if substrs and matched == matching:
2387 matched = index != -1
2389 expecting_str, substr, found_str(matched)))
2391 if matched != matching:
2394 if patterns and matched == matching:
2396 matched = re.search(pattern, output)
2399 expecting_str, pattern, found_str(matched))
2400 if matched:
2402 matched.group(0))
2408 matched = bool(matched)
2409 if matched != matching:
2413 if msg is not None and matched != matching:
2419 if matched != matching: