Lines Matching refs:line
110 line = lines[line_id]
111 if not line or line.find('Event:') == 0:
113 common_report_context.append(line)
126 for line in lines[line_id:]:
127 if not line:
134 cur_event_report.context.append(line)
135 if line.find('Event:') == 0:
140 cur_event_report.title_line = line
141 elif not line[0].isspace():
142 cur_report_item = ReportItem(line)
147 for i in range(len(line)):
148 if line[i] == '|':
152 if not line.strip('| \t'):
154 if 'skipped in brief callgraph mode' in line:
158 if line.find('-') == -1:
159 line = line.strip('| \t')
160 function_name = line
163 pos = line.find('-')
170 line = line.strip('|- \t')
171 m = re.search(r'^([\d\.]+)%[-\s]+(.+)$', line)
177 function_name = line
204 for line in report_context:
205 label = Label(frame, text=line, font=font)