Home
last modified time | relevance | path

Searched refs:n_nchildren (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Parser/
Dnode.c16 n->n_nchildren = 0; in PyNode_New()
81 const int nch = n1->n_nchildren; in PyNode_AddChild()
105 n = &n1->n_child[n1->n_nchildren++]; in PyNode_AddChild()
110 n->n_nchildren = 0; in PyNode_AddChild()
Dpgen.c171 i = n->n_nchildren - 1; /* Last child is ENDMARKER */ in metacompile()
186 REQN(n->n_nchildren, 4); in compile_rule()
206 i = n->n_nchildren; in compile_rhs()
239 i = n->n_nchildren; in compile_alt()
261 i = n->n_nchildren; in compile_item()
297 i = n->n_nchildren; in compile_atom()
Dparsetok.c263 r->n_nchildren = 1; in parsetok()
/external/python/cpython3/Parser/
Dnode.c19 n->n_nchildren = 0; in PyNode_New()
99 const int nch = n1->n_nchildren; in PyNode_AddChild()
128 n = &n1->n_child[n1->n_nchildren++]; in PyNode_AddChild()
135 n->n_nchildren = 0; in PyNode_AddChild()
Dparsetok.c451 r->n_nchildren = 1; in parsetok()
/external/python/cpython2/Include/
Dnode.h15 int n_nchildren; member
26 #define NCH(n) ((n)->n_nchildren)
/external/python/cpython3/Include/
Dnode.h15 int n_nchildren; member
31 #define NCH(n) ((n)->n_nchildren)