Lines Matching defs:u_cellvars
313 PyObject *u_cellvars; /* cell variables */
729 Py_CLEAR(u->u_cellvars);
1739 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0);
1740 if (!u->u_varnames || !u->u_cellvars) {
1748 assert(PyDict_GET_SIZE(u->u_cellvars) == 0);
1749 res = PyDict_SetItem(u->u_cellvars, &_Py_ID(__class__),
1758 PyDict_GET_SIZE(u->u_cellvars));
2283 arg = compiler_lookup_arg(c->u->u_cellvars, name);
2753 i = compiler_lookup_arg(c->u->u_cellvars, &_Py_ID(__class__));
2769 assert(PyDict_GET_SIZE(c->u->u_cellvars) == 0);
4277 dict = c->u->u_cellvars;
7946 if (PyDict_GetItem(c->u->u_cellvars, k) != NULL) {
7956 while (PyDict_Next(c->u->u_cellvars, &pos, &k, &v)) {
8131 int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);
8146 while (PyDict_Next(c->u->u_cellvars, &pos, &varname, &cellindex)) {
8212 const int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);
8214 // c->u->u_cellvars has the cells out of order so we sort them
8300 int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);
8384 assert(PyDict_GET_SIZE(c->u->u_cellvars) < INT_MAX);
8387 int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);