Home
last modified time | relevance | path

Searched refs:STORE_NAME (Results 1 – 11 of 11) sorted by relevance

/external/python/setuptools/setuptools/
Ddepends.py153 STORE_NAME = 90
165 elif arg == name_idx and (op == STORE_NAME or op == STORE_GLOBAL):
/external/python/cpython2/Include/
Dopcode.h96 #define STORE_NAME 90 /* Index in name list */ macro
/external/python/cpython3/Include/
Dopcode.h69 #define STORE_NAME 90 macro
/external/python/cpython2/Lib/
Dmodulefinder.py20 STORE_NAME = dis.opmap['STORE_NAME'] variable
22 STORE_OPS = STORE_NAME, STORE_GLOBAL
/external/python/cpython3/Lib/
Dmodulefinder.py17 STORE_NAME = dis.opmap['STORE_NAME'] variable
19 STORE_OPS = STORE_NAME, STORE_GLOBAL
/external/python/cpython2/Doc/library/
Ddis.rst552 store it in (a) variable(s) (:opcode:`STORE_FAST`, :opcode:`STORE_NAME`, or
583 .. opcode:: STORE_NAME (namei)
621 Works as ``STORE_NAME``, but stores the name as a global.
/external/python/cpython3/Doc/library/
Ddis.rst711 store it in (a) variable(s) (:opcode:`STORE_FAST`, :opcode:`STORE_NAME`, or
747 .. opcode:: STORE_NAME (namei)
791 Works as :opcode:`STORE_NAME`, but stores the name as a global.
/external/python/cpython2/Python/
Dcompile.c819 case STORE_NAME: in opcode_stack_effect()
2416 case Store: op = STORE_NAME; break; in compiler_nameop()
Dceval.c2180 TARGET(STORE_NAME) in PyEval_EvalFrameEx()
5191 case STORE_NAME: in string_concatenate()
/external/python/cpython3/Python/
Dceval.c1923 TARGET(STORE_NAME) { in _PyEval_EvalFrameDefault()
5039 case STORE_NAME: in unicode_concatenate()
Dcompile.c981 case STORE_NAME: in stack_effect()
3262 case Store: op = STORE_NAME; break; in compiler_nameop()