Lines Matching refs:row
66 def _failures_from_fail_row(self, row):
67 # Look at all anchors in this row, and guess what type
71 for anchor in row.findAll("a"):
82 # FIXME: Its possible the row contained no links due to ORWT brokeness.
87 def _failures_from_row(cls, row, table_title):
89 return cls._failures_from_fail_row(row)
101 def _test_result_from_row(cls, row, table_title):
102 test_name = unicode(row.find("a").string)
103 failures = cls._failures_from_row(row, table_title)
118 # FIXME: We might end with two TestResults object for the same test if it appears in more than one row.
119 return [cls._test_result_from_row(row, table_title) for row in table.findAll("tr")]