Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/tool/
DChartGrammaticalForms.java125 Map<Rational, String> factorToUnit = _BASE_TO_BEST.get(baseOut.value);
126 if (factorToUnit == null) {
127 _BASE_TO_BEST.put(baseOut.value, factorToUnit = new TreeMap<>()); in _BASE_TO_BEST.put() argument
128 factorToUnit.put(Rational.ONE, baseOut.value); in factorToUnit.put()
135 String old = factorToUnit.get(info.factor);
137 factorToUnit.put(info.factor, shortUnit); in factorToUnit.put()
496 Map<Rational, String> factorToUnit = BASE_TO_FACTOR_TO_UNIT.get(baseUnit.value); in getBestBaseUnit() local
497 if (factorToUnit == null) { in getBestBaseUnit()
503 for (Entry<Rational, String> entry : factorToUnit.entrySet()) { in getBestBaseUnit()