Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dsymtable.py6 SCOPE_OFF, SCOPE_MASK, FREE, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL, LOCAL)
144 glob = (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)
190 return bool(self.__scope in (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT))
/external/python/cpython3/Lib/
Dsymtable.py6 LOCAL, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL)
138 glob = (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)
192 return bool(self.__scope in (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)
/external/python/cpython2/Include/
Dsymtable.h82 #define GLOBAL_IMPLICIT 3 macro
/external/python/cpython3/Include/
Dsymtable.h112 #define GLOBAL_IMPLICIT 3 macro
/external/python/cpython2/Modules/
Dsymtablemodule.c80 PyModule_AddIntConstant(m, "GLOBAL_IMPLICIT", GLOBAL_IMPLICIT); in init_symtable()
/external/python/cpython3/Modules/
Dsymtablemodule.c114 PyModule_AddIntMacro(m, GLOBAL_IMPLICIT); in PyInit__symtable()
/external/python/cpython2/Python/
Dsymtable.c424 SET_SCOPE(dict, name, GLOBAL_IMPLICIT); in analyze_name()
430 SET_SCOPE(dict, name, GLOBAL_IMPLICIT); in analyze_name()
Dcompile.c2344 case GLOBAL_IMPLICIT: in compiler_nameop()
/external/python/cpython3/Python/
Dsymtable.c554 SET_SCOPE(scopes, name, GLOBAL_IMPLICIT); in analyze_name()
559 SET_SCOPE(scopes, name, GLOBAL_IMPLICIT); in analyze_name()
Dcompile.c712 assert(scope != GLOBAL_IMPLICIT); in compiler_set_qualname()
3589 case GLOBAL_IMPLICIT: in compiler_nameop()