Home
last modified time | relevance | path

Searched refs:ste_children (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dsymtable.h31 PyObject *ste_children; /* list of child ids */ member
/external/python/cpython2/Python/
Dsymtable.c43 ste->ste_children = NULL; in ste_new()
53 ste->ste_children = PyList_New(0); in ste_new()
54 if (ste->ste_children == NULL) in ste_new()
104 Py_XDECREF(ste->ste_children); in ste_dealloc()
115 {"children", T_OBJECT, OFF(ste_children), READONLY},
698 for (i = 0; i < PyList_GET_SIZE(ste->ste_children); ++i) { in analyze_block()
699 PyObject *c = PyList_GET_ITEM(ste->ste_children, i); in analyze_block()
862 if (PyList_Append(prev->ste_children, in symtable_enter_block()
/external/python/cpython3/Include/
Dsymtable.h43 PyObject *ste_children; /* list of child blocks */ member
/external/python/cpython3/Python/
Dsymtable.c61 ste->ste_children = NULL; in ste_new()
87 ste->ste_children = PyList_New(0); in ste_new()
90 || ste->ste_children == NULL) in ste_new()
118 Py_XDECREF(ste->ste_children); in ste_dealloc()
130 {"children", T_OBJECT, OFF(ste_children), READONLY},
810 for (i = 0; i < PyList_GET_SIZE(ste->ste_children); ++i) { in analyze_block()
811 PyObject *c = PyList_GET_ITEM(ste->ste_children, i); in analyze_block()
957 if (PyList_Append(prev->ste_children, (PyObject *)ste) < 0) { in symtable_enter_block()