Lines Matching refs:matched
1633 matched = thread_line_pattern.match(line)
1634 if matched:
1635 self.runCmd('thread select %s' % matched.group(1))
1706 matched = bool(match_object)
1709 print >> sbuf, "Matched" if matched else "Not matched"
1710 if matched:
1713 self.assertTrue(matched if matching else not matched,
1770 matched = output.startswith(startstr) if startstr else (True if matching else False)
1775 print >> sbuf, "Matched" if matched else "Not matched"
1778 keepgoing = matched if matching else not matched
1780 matched = output.endswith(endstr)
1783 print >> sbuf, "Matched" if matched else "Not matched"
1786 keepgoing = matched if matching else not matched
1789 matched = output.find(str) != -1
1792 print >> sbuf, "Matched" if matched else "Not matched"
1793 keepgoing = matched if matching else not matched
1798 keepgoing = matched if matching else not matched
1802 matched = bool(re.search(pattern, output))
1805 print >> sbuf, "Matched" if matched else "Not matched"
1806 keepgoing = matched if matching else not matched
1810 self.assertTrue(matched if matching else not matched,