Home
last modified time | relevance | path

Searched refs:debugCreationErrors (Results 1 – 3 of 3) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DVerifyCompactNumbers.java127 Set<String> debugCreationErrors = new LinkedHashSet<String>(); in showNumbers() local
162 … CompactDecimalFormat cdf = BuildIcuCompactDecimalFormat.build(cldrFile, debugCreationErrors, in showNumbers()
164 captureErrors(debugCreationErrors, errors, locale, "short"); in showNumbers()
165 … CompactDecimalFormat cdfs = BuildIcuCompactDecimalFormat.build(cldrFile, debugCreationErrors, in showNumbers()
167 captureErrors(debugCreationErrors, errors, locale, "long"); in showNumbers()
169 … CompactDecimalFormat cdfCurr = BuildIcuCompactDecimalFormat.build(cldrFile, debugCreationErrors, in showNumbers()
171 captureErrors(debugCreationErrors, errors, locale, "short-curr"); in showNumbers()
288 showErrors(debugCreationErrors, out); in showNumbers()
322 …private static void captureErrors(Set<String> debugCreationErrors, Set<String> errors, String loca… in captureErrors() argument
323 if (debugCreationErrors.size() != 0) { in captureErrors()
[all …]
DVerifyZones.java511 …private static void captureErrors(Set<String> debugCreationErrors, Set<String> errors, String loca… in captureErrors() argument
512 if (debugCreationErrors.size() != 0) { in captureErrors()
513 for (String s : debugCreationErrors) { in captureErrors()
516 debugCreationErrors.clear(); in captureErrors()
/external/cldr/tools/java/org/unicode/cldr/test/
DBuildIcuCompactDecimalFormat.java42 Set<String> debugCreationErrors, String[] debugOriginals, in build() argument