Home
last modified time | relevance | path

Searched refs:n_lineno (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Include/
Dnode.h13 int n_lineno; member
34 #define LINENO(n) ((n)->n_lineno)
/external/python/cpython3/Parser/
Dnode.c15 n->n_lineno = 0; in PyNode_New()
108 n->n_lineno = lineno; in PyNode_AddChild()
/external/python/cpython2/Parser/
Dnode.c15 n->n_lineno = 0; in PyNode_New()
108 n->n_lineno = lineno; in PyNode_AddChild()
/external/python/cpython2/Include/
Dnode.h13 int n_lineno; member
/external/python/cpython3/Python/
Dast.c832 asdl_seq_SET(stmts, 0, Pass(n->n_lineno, n->n_col_offset, in PyAST_FromNodeObject()
4251 if (n->n_lineno && n->n_lineno < CHILD(n, i)->n_lineno) { in fstring_shift_node_locations()
4257 n->n_lineno = n->n_lineno + lineno; in fstring_shift_node_locations()
/external/python/cpython3/Modules/
Dparsermodule.c139 w = PyLong_FromLong(n->n_lineno); in node2tuple()
/external/python/cpython2/Python/
Dast.c44 #define LINENO(n) ((n)->n_lineno)
285 asdl_seq_SET(stmts, 0, Pass(n->n_lineno, n->n_col_offset, in PyAST_FromNode()
/external/python/cpython2/Modules/
Dparsermodule.c125 (void) addelem(result, 2, PyInt_FromLong(n->n_lineno)); in node2tuple()