Home | History | Annotate | Download | only in intltest

Lines Matching refs:line

33             if (!reader->readLineSkippingComments(line, ec)) {
55 * Read the next token from 'this->line' and append it to 'token'.
58 * the opening quote. If a '#' is encountered, the rest of the line
63 * of the line is reached or an error occurs
66 ICU_Utility::skipWhitespace(line, pos, TRUE);
67 if (pos == line.length()) {
70 UChar c = line.charAt(pos++);
83 while (pos < line.length()) {
84 c = line.charAt(pos); // 16-bit ok
86 UChar32 c32 = line.unescapeAt(pos);