Searched refs:E_EOF (Results 1 - 8 of 8) sorted by relevance

/external/python/cpython2/Include/
H A Derrcode.h13 the parser only returns E_EOF when it hits EOF immediately, and it
17 #define E_EOF 11 /* End Of File */ macro
/external/python/cpython3/Include/
H A Derrcode.h13 the parser only returns E_EOF when it hits EOF immediately, and it
17 #define E_EOF 11 /* End Of File */ macro
/external/python/cpython2/Parser/
H A Dparsetok.c221 if (tok->lineno <= 1 && tok->done == E_EOF)
222 err_ret->error = E_EOF;
H A Dtokenizer.c872 tok->done = E_EOF;
891 tok->done = E_EOF;
948 tok->done = E_EOF;
960 tok->done = E_EOF;
1364 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN;
/external/python/cpython3/Parser/
H A Dparsetok.c317 if (tok->done == E_EOF)
318 err_ret->error = E_EOF;
H A Dtokenizer.c925 tok->done = E_EOF;
969 tok->done = E_EOF;
1022 tok->done = E_EOF;
1034 tok->done = E_EOF;
1505 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN;
/external/python/cpython2/Python/
H A Dpythonrun.c779 if (ret == E_EOF)
844 if (errcode == E_EOF) {
846 return E_EOF;
1614 case E_EOF:
/external/python/cpython3/Python/
H A Dpythonrun.c114 if (ret == E_EOF) {
220 if (errcode == E_EOF) {
222 return E_EOF;
1312 case E_EOF:

Completed in 115 milliseconds