Home | History | Annotate | Download | only in gendict

Lines Matching refs:lineLength

256     int32_t lineLength;
257 const UChar *line = ucbuf_readline(f, &lineLength, errorCode);
260 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
262 lineLength = (int32_t)(comment - line);
264 while(lineLength > 0 && (line[lineLength - 1] == CARRIAGE_RETURN_CHARACTER || line[lineLength - 1] == LINEFEED_CHARACTER)) { --lineLength; }
266 while(lineLength > 0 && u_isspace(line[lineLength - 1])) { --lineLength; }
267 fileLine.setTo(FALSE, line, lineLength);