Lines Matching refs:lineEnd
65 int lineEnd; // Index of char following the new line sequence for the current line variable
143 for (nextLine(0); lineStart<fileLen; nextLine(lineEnd)) { in main()
144 UnicodeString s(false, ucharBuf+lineStart, lineEnd-lineStart); in main()
387 lineStart = lineEnd = startPos; in nextLine()
390 if (lineEnd >= fileLen) { in nextLine()
393 UChar c = ucharBuf[lineEnd]; in nextLine()
394 lineEnd++; in nextLine()
407 if (lineEnd < fileLen && in nextLine()
408 ucharBuf[lineEnd-1] == 0x0d && in nextLine()
409 ucharBuf[lineEnd] == 0x0a) in nextLine()
411 lineEnd++; in nextLine()
443 lineEnd-lineStart, // number of UChars to convert in printMatch()