Lines Matching refs:TestLineCount
722 static void TestLineCount(const char *prefixLine, const char *line, int32_t numRepititions) {
780 TestLineCount("\n", "\n", 1024); /* Unix newlines */
781 TestLineCount("\r\n", "\r\n", 1024);/* Windows newlines */
782 TestLineCount("a\r\n", "\r\n", 1024);/* Windows newlines offset by 1 byte */
783 TestLineCount("\r\n", "a\r\n", 1024);/* Windows newlines offset with data */
784 TestLineCount("\n", "a\n", 1024); /* Unix newlines offset with data */
785 TestLineCount("\n", "\r\n", 1024); /* a mixed number of lines. */