Home
last modified time | relevance | path

Searched refs:PyCodeAddressRange (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/cpython/
Dcode.h149 } PyCodeAddressRange; typedef
154 PyAPI_FUNC(int) _PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds);
175 int _PyCode_InitAddressRange(PyCodeObject* co, PyCodeAddressRange *bounds);
178 …AddressRange(const char *linetable, Py_ssize_t length, int firstlineno, PyCodeAddressRange *range);
181 int PyLineTable_NextAddressRange(PyCodeAddressRange *range);
182 int PyLineTable_PreviousAddressRange(PyCodeAddressRange *range);
/third_party/python/Objects/
Dcodeobject.c448 PyCodeAddressRange bounds; in code_getlnotab()
1017 PyCodeAddressRange li_line;
1032 PyCodeAddressRange *bounds = &li->li_line; in lineiter_next()
1121 retreat(PyCodeAddressRange *bounds) in retreat()
1141 advance(PyCodeAddressRange *bounds) in advance()
1158 at_end(PyCodeAddressRange *bounds) { in at_end()
1163 PyLineTable_PreviousAddressRange(PyCodeAddressRange *range) in PyLineTable_PreviousAddressRange()
1177 PyLineTable_NextAddressRange(PyCodeAddressRange *range) in PyLineTable_NextAddressRange()
1252 PyCodeAddressRange bounds; in PyCode_Addr2Line()
1258 …tAddressRange(const char *linetable, Py_ssize_t length, int firstlineno, PyCodeAddressRange *range) in PyLineTable_InitAddressRange()
[all …]
Dframeobject.c265 PyCodeAddressRange bounds; in marklines()
/third_party/python/Python/
Dceval.c38 PyCodeAddressRange bounds; // Only valid if code != NULL.