Lines Matching refs:line
92 for line in lines:
93 if not line:
95 if not line[0].isspace():
96 cur_report_item = ReportItem(line)
101 for i in range(len(line)):
102 if line[i] == '|':
106 if not line.strip('| \t'):
108 if line.find('-') == -1:
109 line = line.strip('| \t')
110 function_name = line
113 pos = line.find('-')
120 line = line.strip('|- \t')
121 m = re.search(r'^([\d\.]+)%[-\s]+(.+)$', line)
127 function_name = line
151 for line in report_context:
152 label = Label(frame, text=line, font=font)