Lines Matching defs:line_start
361 Py_ssize_t line_start = tok->start == NULL ? -1 : tok->line_start - tok->buf;
373 tok->line_start = line_start < 0 ? NULL : tok->buf + line_start;
873 tok->line_start = tok->cur;
950 tok->line_start = tok->buf;
1085 tok->line_start = tok->cur;
1087 if (contains_null_bytes(tok->line_start, tok->inp - tok->line_start)) {
1122 errtext = PyUnicode_DecodeUTF8(tok->line_start, tok->cur - tok->line_start,
1135 Py_ssize_t line_len = strcspn(tok->line_start, "\n");
1136 if (line_len != tok->cur - tok->line_start) {
1138 errtext = PyUnicode_DecodeUTF8(tok->line_start, line_len,
1893 tok, (int)(tok->start + 1 - tok->line_start),
1894 (int)(zeros_end - tok->line_start),
1981 tok->multi_line_start = tok->line_start;
2014 tok->line_start = tok->multi_line_start;
2089 tok->parencolstack[tok->level] = (int)(tok->start - tok->line_start);