Home
last modified time | relevance | path

Searched refs:E_DECODE (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Include/
Derrcode.h28 #define E_DECODE 22 /* Error in decoding into Unicode */ macro
/external/python/cpython2/Include/
Derrcode.h28 #define E_DECODE 22 /* Error in decoding into Unicode */ macro
/external/python/cpython2/Parser/
Dparsetok.c55 err_ret->error = PyErr_Occurred() ? E_DECODE : E_NOMEM; in PyParser_ParseStringFlagsFilenameEx()
Dtokenizer.c173 tok->done = E_DECODE; in error_ret()
1691 tok->done = E_DECODE; in PyTokenizer_Get()
/external/python/cpython3/Parser/
Dtokenizer.c115 tok->done = E_DECODE; in error_ret()
867 tok->done = E_DECODE; in tok_nextc()
1105 tok->done = E_DECODE; in verify_identifier()
1842 tok->done = E_DECODE; in PyTokenizer_Get()
Dparsetok.c109 err_ret->error = PyErr_Occurred() ? E_DECODE : E_NOMEM; in PyParser_ParseStringObject()
/external/python/cpython2/Python/
Dpythonrun.c1641 case E_DECODE: { in err_input()
/external/python/cpython3/Python/
Dpythonrun.c1619 case E_DECODE: { in err_input()
/external/python/cpython3/Parser/pegen/
Dpegen.c665 if (p->tok->done == E_DECODE) { in _PyPegen_fill_token()