Lines Matching full:lineno
227 self.counter = self.counts.copy() # map (filename, lineno) to count
296 # turn the counts data ("(filename, lineno) = count") into something
299 for filename, lineno in self.counts.keys():
301 lines_hit[lineno] = self.counts[(filename, lineno)]
370 lineno = i + 1
373 if lineno in lines_hit:
374 outfile.write("%5d: " % lines_hit[lineno])
383 if lineno in lnotab and not PRAGMA_NOCOVER in lines[i]:
397 for _, lineno in dis.findlinestarts(code):
398 if lineno not in strs:
399 linenos[lineno] = 1
404 """Return lineno dict for all code objects reachable from code."""
405 # get all of the lineno information from the code of this scope level
617 lineno = frame.f_lineno
618 key = filename, lineno
624 print "%s(%d): %s" % (bname, lineno,
625 linecache.getline(filename, lineno)),
632 lineno = frame.f_lineno
637 print "%s(%d): %s" % (bname, lineno,
638 linecache.getline(filename, lineno)),
644 lineno = frame.f_lineno
645 key = filename, lineno