Searched refs:fileLine (Results 1 - 7 of 7) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DDataDrivenNumberFormatTestUtility.java99 private String fileLine = null; field in class:DataDrivenNumberFormatTestUtility
145 if (fileLine != null && fileLine.charAt(0) == '\uFEFF') {
146 fileLine = fileLine.substring(1);
153 if (fileLine == null || fileLine.length() == 0) {
157 if (fileLine.length() == 0 && state == 2) {
162 if (fileLine.startsWith("//")) {
163 fileLine
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDataDrivenNumberFormatTestUtility.java98 private String fileLine = null; field in class:DataDrivenNumberFormatTestUtility
144 if (fileLine != null && fileLine.charAt(0) == '\uFEFF') {
145 fileLine = fileLine.substring(1);
152 if (fileLine == null || fileLine.length() == 0) {
156 if (fileLine.length() == 0 && state == 2) {
161 if (fileLine.startsWith("//")) {
162 fileLine
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationTest.java61 String fileLine; field in class:CollationTest
1017 while (isSpace(fileLine.charAt(i))) {
1050 fileLine = null;
1066 fileLine = idx < line.length() ? line.substring(0, idx) : line;
1074 int length = fileLine.length();
1076 for (i = start; i < length && !isSpace(fileLine.charAt(i)); ++i) {
1078 int pipeIndex = fileLine.indexOf('|', start);
1080 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));
1083 logln(fileLine);
1092 String tmp = Utility.unescape(fileLine
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationTest.java60 String fileLine; field in class:CollationTest
1016 while (isSpace(fileLine.charAt(i))) {
1049 fileLine = null;
1065 fileLine = idx < line.length() ? line.substring(0, idx) : line;
1073 int length = fileLine.length();
1075 for (i = start; i < length && !isSpace(fileLine.charAt(i)); ++i) {
1077 int pipeIndex = fileLine.indexOf('|', start);
1079 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));
1082 logln(fileLine);
1091 String tmp = Utility.unescape(fileLine
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp95 while(isSpace(fileLine[i])) { ++i; }
125 UnicodeString fileLine; member in class:CollationTest
976 fileLine.remove();
989 fileLine.setTo(FALSE, line, lineLength);
998 int32_t length = fileLine.length();
1000 for(i = start; i < length && !isSpace(fileLine[i]); ++i) {}
1001 int32_t pipeIndex = fileLine.indexOf((UChar)0x7c, start, i - start); // '|'
1003 prefix = fileLine.tempSubStringBetween(start, pipeIndex).unescape();
1006 infoln(fileLine);
1014 s = fileLine
[all...]
H A Dnumfmtst.cpp7293 UnicodeString fileLine = UnicodeString(file)+UnicodeString(":")+line+UnicodeString(": "); local
7302 logln(fileLine + toString(f));
7349 exactMatch = assertEquals(fileLine + " array count", count, count2);
7401 if( assertEquals(fileLine + " isNumeric()", f.isNumeric(), ufmt_isNumeric(u))
7406 assertTrue(fileLine + " as doubles ==", f.getDouble(convStatus)==ufmt_getDouble(u, &convStatus));
7409 if( assertSuccess(fileLine + " (numeric conversion status)", convStatus) ) {
7420 if( assertSuccess(fileLine + " (decNumbers conversion)", convStatus) ) {
7421 logln(fileLine + decNumChars);
7422 assertEquals(fileLine + " decNumChars length==", len, fDecNum.length());
7423 assertEquals(fileLine
[all...]
/external/icu/icu4c/source/tools/gendict/
H A Dgendict.cpp222 static UBool readLine(UCHARBUF *f, UnicodeString &fileLine, IcuToolErrorCode &errorCode) { argument
234 fileLine.setTo(FALSE, line, lineLength);
331 UnicodeString fileLine;
340 while (readLine(f, fileLine, status)) {
342 if (fileLine.isEmpty()) continue;
346 for (keyLen = 0; keyLen < fileLine.length() && !u_isspace(fileLine[keyLen]); ++keyLen) {}
354 valueStart < fileLine.length() && u_isspace(fileLine[valueStart]);
358 int32_t valueLength = fileLine
[all...]

Completed in 226 milliseconds