Home
last modified time | relevance | path

Searched refs:YIELD_VALUE (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dopcode.h89 #define YIELD_VALUE 86 macro
/external/python/cpython3/Include/
Dopcode.h64 #define YIELD_VALUE 86 macro
/external/python/cpython3/Objects/
Dframeobject.c192 if (code[f->f_lasti] == YIELD_VALUE || code[f->f_lasti] == YIELD_FROM) { in frame_setlineno()
/external/python/cpython2/Objects/
Dframeobject.c206 if (code[f->f_lasti] == YIELD_VALUE) { in frame_setlineno()
/external/python/cpython2/Python/
Dcompile.c808 case YIELD_VALUE: in opcode_stack_effect()
2713 ADDOP(c, YIELD_VALUE); in compiler_comprehension_generator()
3018 ADDOP(c, YIELD_VALUE); in compiler_visit_expr()
Dceval.c2103 TARGET_NOARG(YIELD_VALUE) in PyEval_EvalFrameEx()
/external/python/cpython3/Python/
Dcompile.c969 case YIELD_VALUE: in stack_effect()
3874 ADDOP(c, YIELD_VALUE); in compiler_sync_comprehension_generator()
3992 ADDOP(c, YIELD_VALUE); in compiler_async_comprehension_generator()
4438 ADDOP(c, YIELD_VALUE); in compiler_visit_expr()
Dceval.c1817 TARGET(YIELD_VALUE) { in _PyEval_EvalFrameDefault()
/external/python/cpython2/Doc/library/
Ddis.rst507 .. opcode:: YIELD_VALUE ()
/external/python/cpython3/Doc/library/
Ddis.rst647 .. opcode:: YIELD_VALUE