Home
last modified time | relevance | path

Searched refs:co_lnotab (Results 1 – 19 of 19) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlnotab_notes.txt1 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,
Dcodeobject.c104 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()
Dframeobject.c151 PyString_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dlnotab_notes.txt1 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,
Dcodeobject.c104 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()
Dframeobject.c151 PyString_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dcode.h26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dcode.h26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddis.py184 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]]
Dmodulefinder.py604 co.co_firstlineno, co.co_lnotab,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Ddis.py184 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]]
Dmodulefinder.py606 co.co_firstlineno, co.co_lnotab,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_new.py122 lnotab = c.co_lnotab
Dtest_compile.py198 self.assertEqual(co.co_lnotab, '')
Dtest_import.py350 code.co_name, code.co_firstlineno, code.co_lnotab,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
Dlibpython.py592 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/
Dmarshal.c439 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/
Dmarshal.c450 w_object(co->co_lnotab, p); in w_object()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dmarshal.c439 w_object(co->co_lnotab, p); in w_object()