Lines Matching defs:in_str
353 const void *in_str;
359 in_str = PyUnicode_DATA(output);
370 only_lf = (memchr(in_str, '\r', kind * len) == NULL);
378 memchr(in_str, '\n', kind * len) != NULL) {
386 while (PyUnicode_READ(kind, in_str, i) > '\n')
388 c = PyUnicode_READ(kind, in_str, i++);
409 while (PyUnicode_READ(kind, in_str, i) > '\r')
411 c = PyUnicode_READ(kind, in_str, i++);
415 if (PyUnicode_READ(kind, in_str, i) == '\n') {
433 const void *in_str = PyUnicode_DATA(output);
450 while ((c = PyUnicode_READ(kind, in_str, in++)) > '\r')
458 if (PyUnicode_READ(kind, in_str, in) == '\n') {