Home | History | Annotate | Download | only in intltest

Lines Matching refs:lineLength

945     int32_t lineLength;
946 const UChar *line = ucbuf_readline(f, &lineLength, errorCode);
953 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
955 lineLength = (int32_t)(comment - line);
957 while(lineLength > 0 && isCROrLF(line[lineLength - 1])) { --lineLength; }
959 while(lineLength > 0 && isSpace(line[lineLength - 1])) { --lineLength; }
960 fileLine.setTo(FALSE, line, lineLength);