Home
last modified time | relevance | path

Searched refs:resultLines (Results 1 – 5 of 5) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DNumberPermutationTest.java101 ArrayList<String> resultLines = new ArrayList<>(); in testPermutations() local
102 resultLines.add("# © 2019 and later: Unicode, Inc. and others."); in testPermutations()
103 resultLines.add("# License & terms of use: http://www.unicode.org/copyright.html"); in testPermutations()
104 resultLines.add(""); in testPermutations()
128 resultLines.add(skeleton); in testPermutations()
134 resultLines.add(" " + locale.toLanguageTag()); in testPermutations()
136 resultLines.add(" " + lnf.format(input).toString()); in testPermutations()
140 resultLines.add(""); in testPermutations()
148 logln("Quick mode: stopped after " + resultLines.size() + " lines"); in testPermutations()
158 for (String actualLine : resultLines) { in testPermutations()
/external/icu/icu4c/source/test/intltest/
Dnumbertest_permutation.cpp106 std::vector<UnicodeString> resultLines; in testPermutations() local
107 resultLines.push_back(u"# © 2019 and later: Unicode, Inc. and others."); in testPermutations()
108 resultLines.push_back(u"# License & terms of use: http://www.unicode.org/copyright.html"); in testPermutations()
109 resultLines.push_back(UnicodeString()); in testPermutations()
131 resultLines.push_back(skeleton); in testPermutations()
137 resultLines.push_back(UnicodeString(u" ").append(locData.ustring)); in testPermutations()
139 resultLines.push_back(UnicodeString(u" ").append( in testPermutations()
144 resultLines.push_back(UnicodeString()); in testPermutations()
152 infoln(u"Quick mode: stopped after " + Int64ToUnicodeString(resultLines.size()) + in testPermutations()
173 for (const auto& actualLine : resultLines) { in testPermutations()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DNumberPermutationTest.java98 ArrayList<String> resultLines = new ArrayList<>(); in testPermutations() local
99 resultLines.add("# © 2019 and later: Unicode, Inc. and others."); in testPermutations()
100 resultLines.add("# License & terms of use: http://www.unicode.org/copyright.html"); in testPermutations()
101 resultLines.add(""); in testPermutations()
125 resultLines.add(skeleton); in testPermutations()
131 resultLines.add(" " + locale.toLanguageTag()); in testPermutations()
133 resultLines.add(" " + lnf.format(input).toString()); in testPermutations()
137 resultLines.add(""); in testPermutations()
145 logln("Quick mode: stopped after " + resultLines.size() + " lines"); in testPermutations()
155 for (String actualLine : resultLines) { in testPermutations()
/external/testng/src/test/java/test/failedreporter/
DFailedReporterTest.java52 List<String> resultLines = Lists.newArrayList(); in testFailedReporter() local
53 grep(failed, expectedLine.format(s), resultLines); in testFailedReporter()
54 Assert.assertEquals(1, resultLines.size()); in testFailedReporter()
/external/testng/src/test/java/test/
DBaseTest.java398 public static List<Integer> grep(File fileName, String regexp, List<String> resultLines) { in grep() argument
410 resultLines.add(line); in grep()