Home
last modified time | relevance | path

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

/third_party/python/Lib/
H A 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/
H A Dpycore_symtable.h113 #define SCOPE_MASK (DEF_GLOBAL | DEF_LOCAL | DEF_PARAM | DEF_NONLOCAL) macro
/third_party/python/Modules/
H A Dsymtablemodule.c103 if (PyModule_AddIntMacro(m, SCOPE_MASK) < 0) return -1; in symtable_init_constants()
/third_party/python/Python/
H A Dsymtable.c408 return (symbol >> SCOPE_OFFSET) & SCOPE_MASK; in _PyST_GetScope()
H A Dcompile.c667 scope = (vi >> SCOPE_OFFSET) & SCOPE_MASK; in dictbytype()

Completed in 15 milliseconds