Lines Matching defs:end_line
58 if (option_arg.getAsInteger(0, end_line))
97 end_line = 0;
112 uint32_t end_line;
135 // If the end_line option was specified, don't print lines greater than
136 // end_line. If the num_lines option was specified, dont print more than
143 uint32_t end_line = m_options.end_line;
165 if (end_line > 0 && line_entry.line > end_line)
192 // don't print lines less than start_line. If the end_line option was
193 // specified, don't print lines greater than end_line. If the num_lines
198 uint32_t end_line = m_options.end_line;
232 if (end_line > 0 && line_entry.line > end_line)
273 // lines less than start_line. If the end_line option was specified, don't
274 // print lines greater than end_line. If the num_lines option was specified,
782 uint32_t end_line;
794 sc.function->GetEndLineSourceInfo(end_file, end_line);
799 end_line = start_line + m_options.num_lines;
819 if (end_line != 0) {
820 if (m_options.num_lines > end_line - line_no)
821 m_options.num_lines = end_line - line_no + extra_lines;