Searched refs:lineEnd (Results 1 – 3 of 3) sorted by relevance
58 int lineEnd; // Index of char following the new line sequence for the current line variable136 for (nextLine(0); lineStart<fileLen; nextLine(lineEnd)) { in main()137 UnicodeString s(FALSE, ucharBuf+lineStart, lineEnd-lineStart); in main()380 lineStart = lineEnd = startPos; in nextLine()383 if (lineEnd >= fileLen) { in nextLine()386 UChar c = ucharBuf[lineEnd]; in nextLine()387 lineEnd++; in nextLine()400 if (lineEnd < fileLen && in nextLine()401 ucharBuf[lineEnd-1] == 0x0d && in nextLine()402 ucharBuf[lineEnd] == 0x0a) in nextLine()[all …]
107 const UChar* lineEnd = p + line.length(); in parseManifest() local110 while (p < lineEnd && *p != '\t' && *p != ' ') in parseManifest()137 const UChar* lineEnd = p + line.length(); in parseManifest() local140 while (p < lineEnd && *p != '\t' && *p != ' ') in parseManifest()143 if (p == lineEnd) { in parseManifest()158 while (p < lineEnd && (*p == '\t' || *p == ' ')) in parseManifest()163 while (p < lineEnd && *p != '\t' && *p != ' ') in parseManifest()
22398 An example would be when lineStart/lineEnd at different line than the input position.