Searched refs:DEF_PARAM (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_symtable.h | 97 #define DEF_PARAM 2<<1 /* formal parameter */ macro 106 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT) 113 #define SCOPE_MASK (DEF_GLOBAL | DEF_LOCAL | DEF_PARAM | DEF_NONLOCAL)
|
/third_party/python/Lib/ |
H A D | symtable.py | 4 from _symtable import (USE, DEF_GLOBAL, DEF_NONLOCAL, DEF_LOCAL, DEF_PARAM, namespace 167 self.__params = self.__idents_matching(lambda x:x & DEF_PARAM) 245 return bool(self.__flags & DEF_PARAM)
|
/third_party/python/Python/ |
H A D | symtable.c | 1037 if ((flag & DEF_PARAM) && (val & DEF_PARAM)) { in symtable_add_def_helper() 1078 if (flag & DEF_PARAM) { in symtable_add_def_helper() 1361 if (cur & (DEF_PARAM | DEF_LOCAL | USE | DEF_ANNOT)) { in symtable_visit_stmt() 1363 if (cur & DEF_PARAM) { in symtable_visit_stmt() 1397 if (cur & (DEF_PARAM | DEF_LOCAL | USE | DEF_ANNOT)) { in symtable_visit_stmt() 1399 if (cur & DEF_PARAM) { in symtable_visit_stmt() 1790 if (!symtable_add_def(st, id, DEF_PARAM, ST_LOCATION(st->st_cur))) { in symtable_implicit_arg() 1808 if (!symtable_add_def(st, arg->arg, DEF_PARAM, LOCATION(arg))) in symtable_visit_params() 1892 if (!symtable_add_def(st, a->vararg->arg, DEF_PARAM, LOCATIO in symtable_visit_arguments() [all...] |
/third_party/python/Modules/ |
H A D | symtablemodule.c | 83 if (PyModule_AddIntMacro(m, DEF_PARAM) < 0) return -1; in symtable_init_constants()
|
Completed in 4 milliseconds