Searched refs:f_lineno (Results 1 - 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_hotshot.py92 f_lineno = f.func_code.co_firstlineno
96 (ENTER, ("test_hotshot", f_lineno, "f")),
97 (LINE, ("test_hotshot", f_lineno+1, "f")),
98 (LINE, ("test_hotshot", f_lineno+2, "f")),
99 (EXIT, ("test_hotshot", f_lineno, "f")),
H A Dtest_sys_settrace.py240 self.events.append((frame.f_lineno, event))
244 self.events.append((frame.f_lineno, event))
441 frame.f_lineno == f.func_code.co_firstlineno + 2):
456 # 'Jump' tests: assigning to frame.f_lineno within a trace function
474 if event == 'line' and frame.f_lineno == firstLine + self.jumpFrom:
478 frame.f_lineno = firstLine + self.jumpTo
480 frame.f_lineno = self.jumpTo
673 # This verifies that you can't set f_lineno via _getframe or similar
678 previous_frame.f_lineno = previous_frame.f_lineno
[all...]
H A Dtest_struct.py41 lineno = inspect.currentframe().f_lineno - 1
330 lineno = inspect.currentframe().f_lineno - 1
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dframeobject.h42 directly. As of 2.3 f_lineno is only valid when tracing is
46 int f_lineno; /* Current line number */ member in struct:_frame
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dframeobject.h42 directly. As of 2.3 f_lineno is only valid when tracing is
46 int f_lineno; /* Current line number */ member in struct:_frame
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dbdb.py114 return frame.f_lineno >= self.stoplineno
125 lineno = frame.f_lineno
185 self._set_stopinfo(frame, frame, frame.f_lineno+1)
333 stack.append((f, f.f_lineno))
524 if b.line != frame.f_lineno:
539 b.func_first_executable_line = frame.f_lineno
541 if b.func_first_executable_line != frame.f_lineno:
611 line = linecache.getline(fn, frame.f_lineno, frame.f_globals)
612 print '+++', fn, frame.f_lineno, name, ':', line.strip()
H A Dtrace.py625 lineno = frame.f_lineno
640 lineno = frame.f_lineno
652 lineno = frame.f_lineno
H A Dtraceback.py300 lineno = f.f_lineno
H A Dpdb.py154 or frame.f_lineno<= 0):
705 self.curframe.f_lineno = arg
801 first = max(1, self.curframe.f_lineno - 5)
820 if lineno == self.curframe.f_lineno:
H A Dwarnings.py192 lineno = caller.f_lineno
H A Dinspect.py203 f_lineno current line number in Python source code
997 lineno = frame.f_lineno
1020 # FrameType.f_lineno is now a descriptor that grovels co_lnotab
1021 return frame.f_lineno
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dtraceback.py301 lineno = f.f_lineno
H A Dwarnings.py196 lineno = caller.f_lineno
H A Dinspect.py203 f_lineno current line number in Python source code
1000 lineno = frame.f_lineno
1023 # FrameType.f_lineno is now a descriptor that grovels co_lnotab
1024 return frame.f_lineno
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dframeobject.c67 return f->f_lineno;
78 /* Setter for f_lineno - you can set f_lineno from within a trace function in
96 int new_lineno = 0; /* The new value of f_lineno */
118 /* f_lineno must be an integer. */
130 "f_lineno can only be set by a"
345 /* Finally set the new f_lineno and f_lasti and return OK. */
346 f->f_lineno = new_lineno;
369 /* We rely on f_lineno being accurate when f_trace is set. */
370 f->f_lineno
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dframeobject.c67 return f->f_lineno;
78 /* Setter for f_lineno - you can set f_lineno from within a trace function in
96 int new_lineno = 0; /* The new value of f_lineno */
118 /* f_lineno must be an integer. */
130 "f_lineno can only be set by a"
343 /* Finally set the new f_lineno and f_lasti and return OK. */
344 f->f_lineno = new_lineno;
367 /* We rely on f_lineno being accurate when f_trace is set. */
368 f->f_lineno
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
H A Dlibpython.py797 self.f_lineno = int_from_int(self.field('f_lineno'))
875 return self.f_lineno
880 # return self.f_lineno
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_hotshot.c878 return pack_lineno_tdelta(self, frame->f_lineno,
881 return pack_lineno(self, frame->f_lineno);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
H A D__init__.py1214 rv = (co.co_filename, f.f_lineno, co.co_name)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dceval.c3738 int line = frame->f_lineno;
3754 frame->f_lineno = line;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dceval.c3716 int line = frame->f_lineno;
3732 frame->f_lineno = line;

Completed in 100 milliseconds