Home
last modified time | relevance | path

Searched refs:lastline (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Lib/idlelib/
Dcalltip_w.py31 self.parenline = self.parencol = self.lastline = None
53 if curline == self.lastline:
55 self.lastline = curline
134 self.parenline = self.parencol = self.lastline = None
Dhelp.py86 lastline = self.text.get('end-1c linestart', 'end-1c')
87 s = '\n\n' if lastline and not lastline.isspace() else '\n'
/third_party/python/Lib/idlelib/idle_test/
Dmock_tk.py142 lastline = len(self.data) - 1 # same as number of text lines
144 return lastline, len(self.data[lastline]) - 1
154 elif line > lastline:
/third_party/mesa3d/src/freedreno/decode/
Dcrashdec.c98 static char *lastline; variable
111 free(lastline); in popline()
121 lastline = r; in popline()
129 pushedline = lastline; in pushline()
/third_party/python/Lib/email/
Dfeedparser.py361 lastline = preamble[-1]
362 eolmo = NLCRE_eol.search(lastline)
364 preamble[-1] = lastline[:-len(eolmo.group(0))]
/third_party/FreeBSD/sys/sys/
Dqueue.h121 unsigned long lastline; member
133 (head)->trace.prevline = (head)->trace.lastline; \
135 (head)->trace.lastline = __LINE__; \
140 (elem)->trace.prevline = (elem)->trace.lastline; \
142 (elem)->trace.lastline = __LINE__; \
/third_party/python/Lib/
Ddis.py458 lastline = None
460 if line is not None and line != lastline:
461 lastline = line
Dmailbox.py243 lastline = None
257 lastline = line
258 if self._append_newline and lastline and not lastline.endswith(linesep):
/third_party/python/Lib/test/
Dtest_compile.py857 for func, lastline in zip(funcs, lastlines, strict=True):
860 self.assertEqual(frame.f_lineno-frame.f_code.co_firstlineno, lastline)
/third_party/python/Python/
Dceval.c5504 int lastline = _PyCode_CheckLineNumber(instr_prev*sizeof(_Py_CODEUNIT), &trace_info->bounds); in maybe_call_line_trace() local
5508 if (frame->f_lasti < instr_prev || line != lastline) { in maybe_call_line_trace()