Home
last modified time | relevance | path

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

/external/python/cpython2/Parser/
Dnode.c17 n->n_child = NULL; in PyNode_New()
97 n = n1->n_child; in PyNode_AddChild()
102 n1->n_child = n; in PyNode_AddChild()
105 n = &n1->n_child[n1->n_nchildren++]; in PyNode_AddChild()
111 n->n_child = NULL; in PyNode_AddChild()
145 if (n->n_child != NULL) in freechildren()
146 PyObject_FREE(n->n_child); in freechildren()
158 if (n->n_child != NULL) in sizeofchildren()
Dpgen.c161 n = n->n_child; in metacompile()
176 n = n->n_child; in compile_rule()
197 n = n->n_child; in compile_rhs()
230 n = n->n_child; in compile_alt()
252 n = n->n_child; in compile_item()
289 n = n->n_child; in compile_atom()
Dparsetok.c262 r->n_child = n; in parsetok()
/external/python/cpython2/Include/
Dnode.h16 struct _node *n_child; member
28 #define CHILD(n, i) (&(n)->n_child[i])