Lines Matching refs:newline
64 * such as custom memory managers and non-standard newline definitions. *
86 uint32_t newline;
321 * newline convention is such that CRLF is a valid newline, we must *
322 * advance by two characters rather than one. The newline convention can *
333 /* Before running the loop, check for UTF-8 and whether CRLF is a valid newline
340 /* Now find the newline convention and see whether CRLF is a valid newline
343 (void)pcre2_pattern_info(re, PCRE2_INFO_NEWLINE, &newline);
344 crlf_is_newline = newline == PCRE2_NEWLINE_ANY ||
345 newline == PCRE2_NEWLINE_CRLF ||
346 newline == PCRE2_NEWLINE_ANYCRLF;
407 There are two complications: (a) When CRLF is a valid newline sequence, and
416 if (crlf_is_newline && /* If CRLF is a newline & */