Lines Matching refs:line
1572 the start of each executed line of code.
1591 return itself and isn't called for "line" events */
5640 /* line-by-line tracing support */
6910 /* If the last instruction falls at the start of a line or if it
6911 represents a jump backwards, update the frame's line number and
6924 int line = _PyCode_LineNumberFromArray(frame->f_code, _PyInterpreterFrame_LASTI(frame));
6929 if (line != -1 && f->f_trace_lines) {
6930 /* Trace backward edges (except in 'yield from') or if line number has changed */
6931 int trace = line != lastline ||
7926 int line = _PyCode_CheckLineNumber(addr, &trace_info->bounds);
7927 if (line != -1) {
7928 /* Trace backward edges or first instruction of a new line */
7930 (line != lastline && addr == trace_info->bounds.ar_start))
7940 PyDTrace_LINE(co_filename, co_name, line);