Lines Matching refs:hits
180 'calls', 'hits', 'funcs', 'lines', 'branches'])):
182 _fields = ['calls', 'hits', 'funcs', 'lines', 'branches']
183 _sort = ['funcs', 'lines', 'branches', 'hits', 'calls']
185 'calls': Int, 'hits': Int,
190 calls=0, hits=0, funcs=0, lines=0, branches=0):
192 Int(calls), Int(hits), Frac(funcs), Frac(lines), Frac(branches))
197 max(self.hits, other.hits),
270 # there are other hits on this line
286 # there are other hits on this line
526 if ((lines and int(r.hits) == 0)
565 line = '%-*s // %s hits%s' % (
568 r.hits,
573 if lines and int(r.hits) == 0:
586 hits=False,
686 else ['lines', 'branches'] if not hits
687 else ['calls', 'hits'],
782 '--hits',
784 help="Show total hits instead of coverage.")