Home
last modified time | relevance | path

Searched refs:lineEnd (Results 1 – 3 of 3) sorted by relevance

/external/icu4c/samples/ugrep/
Dugrep.cpp58 int lineEnd; // Index of char following the new line sequence for the current line variable
136 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 …]
/external/webkit/WebCore/loader/appcache/
DManifestParser.cpp107 const UChar* lineEnd = p + line.length(); in parseManifest() local
110 while (p < lineEnd && *p != '\t' && *p != ' ') in parseManifest()
137 const UChar* lineEnd = p + line.length(); in parseManifest() local
140 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()
/external/webkit/WebCore/
DChangeLog-2007-10-1422398 An example would be when lineStart/lineEnd at different line than the input position.