Home | History | Annotate | Download | only in intltest

Lines Matching full:line

76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) {
102 // Remove BOM in first line, if present
107 line = str.unescape();
111 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec,
114 if (!readLine(line, ec)) return FALSE;
117 ICU_Utility::skipWhitespace(line, pos, TRUE);
119 if (pos == line.length() || line.charAt(pos) == 0x23/*'#'*/) {
122 // Process line
123 if (trim) line.remove(0, pos);