Searched refs:n_lineno (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Include/ |
D | node.h | 13 int n_lineno; member 34 #define LINENO(n) ((n)->n_lineno)
|
/external/python/cpython3/Parser/ |
D | node.c | 15 n->n_lineno = 0; in PyNode_New() 108 n->n_lineno = lineno; in PyNode_AddChild()
|
/external/python/cpython2/Parser/ |
D | node.c | 15 n->n_lineno = 0; in PyNode_New() 108 n->n_lineno = lineno; in PyNode_AddChild()
|
/external/python/cpython2/Include/ |
D | node.h | 13 int n_lineno; member
|
/external/python/cpython3/Python/ |
D | ast.c | 832 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/ |
D | parsermodule.c | 139 w = PyLong_FromLong(n->n_lineno); in node2tuple()
|
/external/python/cpython2/Python/ |
D | ast.c | 44 #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/ |
D | parsermodule.c | 125 (void) addelem(result, 2, PyInt_FromLong(n->n_lineno)); in node2tuple()
|