Home
last modified time | relevance | path

Searched refs:SCOPE_MASK (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Dsymtable.py5 DEF_IMPORT, DEF_BOUND, DEF_ANNOT, SCOPE_OFF, SCOPE_MASK, FREE,
175 test = lambda x: ((x >> SCOPE_OFF) & SCOPE_MASK) in locs
184 test = lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) in glob
199 is_free = lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) == FREE
224 self.__scope = (flags >> SCOPE_OFF) & SCOPE_MASK # like PyST_GetScope()
/third_party/python/Include/internal/
Dpycore_symtable.h112 #define SCOPE_MASK (DEF_GLOBAL | DEF_LOCAL | DEF_PARAM | DEF_NONLOCAL) macro
/third_party/python/Modules/
Dsymtablemodule.c103 if (PyModule_AddIntMacro(m, SCOPE_MASK) < 0) return -1; in symtable_init_constants()
/third_party/python/Python/
Dsymtable.c415 return (symbol >> SCOPE_OFFSET) & SCOPE_MASK; in _PyST_GetScope()
Dcompile.c540 scope = (vi >> SCOPE_OFFSET) & SCOPE_MASK; in dictbytype()