Searched refs:co_lnotab (Results 1 – 19 of 19) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | lnotab_notes.txt | 1 All about co_lnotab, the line number table. 3 Code objects store a field named co_lnotab. This is an array of unsigned bytes 33 part. A user of co_lnotab desiring to find the source line number 37 for addr_incr, line_incr in co_lnotab: 105 and the co_lnotab will claim that execution has moved to line 4, which is wrong. 110 co_lnotab indicates we have jumped to the *start* of a line, i.e. if the current 112 co_lnotab. For backward jumps, however, we always call the line trace function,
|
D | codeobject.c | 104 co->co_lnotab = lnotab; in PyCode_New() 174 {"co_lnotab", T_OBJECT, OFF(co_lnotab), READONLY}, 315 Py_XDECREF(co->co_lnotab); in code_dealloc() 520 int size = PyString_Size(co->co_lnotab) / 2; in PyCode_Addr2Line() 521 unsigned char *p = (unsigned char*)PyString_AsString(co->co_lnotab); in PyCode_Addr2Line() 541 p = (unsigned char*)PyString_AS_STRING(co->co_lnotab); in _PyCode_CheckLineNumber() 542 size = PyString_GET_SIZE(co->co_lnotab) / 2; in _PyCode_CheckLineNumber()
|
D | frameobject.c | 151 PyString_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | lnotab_notes.txt | 1 All about co_lnotab, the line number table. 3 Code objects store a field named co_lnotab. This is an array of unsigned bytes 33 part. A user of co_lnotab desiring to find the source line number 37 for addr_incr, line_incr in co_lnotab: 105 and the co_lnotab will claim that execution has moved to line 4, which is wrong. 110 co_lnotab indicates we have jumped to the *start* of a line, i.e. if the current 112 co_lnotab. For backward jumps, however, we always call the line trace function,
|
D | codeobject.c | 104 co->co_lnotab = lnotab; in PyCode_New() 174 {"co_lnotab", T_OBJECT, OFF(co_lnotab), READONLY}, 315 Py_XDECREF(co->co_lnotab); in code_dealloc() 520 int size = PyString_Size(co->co_lnotab) / 2; in PyCode_Addr2Line() 521 unsigned char *p = (unsigned char*)PyString_AsString(co->co_lnotab); in PyCode_Addr2Line() 541 p = (unsigned char*)PyString_AS_STRING(co->co_lnotab); in _PyCode_CheckLineNumber() 542 size = PyString_GET_SIZE(co->co_lnotab) / 2; in _PyCode_CheckLineNumber()
|
D | frameobject.c | 151 PyString_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | code.h | 26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | code.h | 26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | dis.py | 184 byte_increments = [ord(c) for c in code.co_lnotab[0::2]] 185 line_increments = [ord(c) for c in code.co_lnotab[1::2]]
|
D | modulefinder.py | 604 co.co_firstlineno, co.co_lnotab,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | dis.py | 184 byte_increments = [ord(c) for c in code.co_lnotab[0::2]] 185 line_increments = [ord(c) for c in code.co_lnotab[1::2]]
|
D | modulefinder.py | 606 co.co_firstlineno, co.co_lnotab,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_new.py | 122 lnotab = c.co_lnotab
|
D | test_compile.py | 198 self.assertEqual(co.co_lnotab, '')
|
D | test_import.py | 350 code.co_name, code.co_firstlineno, code.co_lnotab,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/ |
D | libpython.py | 592 co_lnotab = self.pyop_field('co_lnotab').proxyval(set()) 599 for addr_incr, line_incr in zip(co_lnotab[::2], co_lnotab[1::2]):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
D | marshal.c | 439 w_object(co->co_lnotab, p); in w_object()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/ |
D | marshal.c | 450 w_object(co->co_lnotab, p); in w_object()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | marshal.c | 439 w_object(co->co_lnotab, p); in w_object()
|