Lines Matching refs:col_offset
86 int col_offset) /* include column offsets? */ in node2tuple() argument
107 w = node2tuple(CHILD(n, i), mkseq, addelem, lineno, col_offset); in node2tuple()
120 PyObject *result = mkseq(2 + lineno + col_offset); in node2tuple()
126 if (col_offset == 1) in node2tuple()
351 int col_offset = 0; in parser_st2tuple() local
358 col_offset = PyObject_IsTrue(col_option); in parser_st2tuple()
359 if (col_offset < 0) in parser_st2tuple()
367 PyTuple_New, PyTuple_SetItem, lineno, col_offset); in parser_st2tuple()
406 int col_offset = 0; in parser_st2list() local
413 col_offset = PyObject_IsTrue(col_option); in parser_st2list()
414 if (col_offset < 0) in parser_st2list()
422 PyList_New, PyList_SetItem, lineno, col_offset); in parser_st2list()