Lines Matching refs:col_offset
68 Py_ssize_t col_offset = -1;
100 col_offset = p->tok->cur - p->tok->buf - 1;
109 col_offset >= 0 ? col_offset : 0,
220 Py_ssize_t col_offset;
222 if (t->col_offset == -1) {
224 col_offset = 0;
227 col_offset = Py_SAFE_DOWNCAST(p->tok->cur - start, intptr_t, int);
230 col_offset = t->col_offset + 1;
239 _PyPegen_raise_error_known_location(p, errtype, t->lineno, col_offset, t->end_lineno, end_col_offset, errmsg, va);
286 Py_ssize_t lineno, Py_ssize_t col_offset,
357 col_offset -= p->starting_col_offset;
361 Py_ssize_t col_number = col_offset;
365 col_number = _PyPegen_byte_offset_to_character_offset(error_line, col_offset);