Home
last modified time | relevance | path

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

/external/cldr/docs/site/development/updating-codes/
Dun-literacy.md13 5. Now you can run `AddPopulationData`
15 > Note: If the format changes, you'll have to modify the `AddPopulationData.loadUnLiteracy()` metho…
Dupdating-population-gdp-literacy.md51 - If the format changes, you'll have to modify WBLine in AddPopulationData.java to have the right o…
67 …u'll have to modify the loadUnLiteracy() method in **org/unicode/cldr/tool/AddPopulationData.java**
94 …ve to modify the loadFactbookLiteracy()) method in **org/unicode/cldr/tool/AddPopulationData.java**
103 1. Run "AddPopulationData *\-DADD\_POP*\=**true"** and look for errors.
104 …\-DADD\_POP\=true \-DCLDR\_DIR\=${HOME}/src/cldr cldr.jar org.unicode.cldr.tool.AddPopulationData**
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/tool/
DTestAddPopulationData.java16 List<Pair<String, Double>> unLiteracy = AddPopulationData.getUnLiteracy(err); in TestParseUnStats()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DConvertLanguageData.java696 countryGdp = roundToPartsPer(AddPopulationData.getGdp(countryCode).doubleValue(), 1000); in RowData()
697 countryLiteracy = AddPopulationData.getLiteracy(countryCode).doubleValue() / 100.0d; in RowData()
698 countryPopulation = AddPopulationData.getPopulation(countryCode).doubleValue(); in RowData()
713 countryGdp = roundToPartsPer(AddPopulationData.getGdp(countryCode).doubleValue(), 1000); in RowData()
714 countryLiteracy = AddPopulationData.getLiteracy(countryCode).doubleValue() / 100.0d; in RowData()
715 countryPopulation = AddPopulationData.getPopulation(countryCode).doubleValue(); in RowData()
DAddPopulationData.java27 public class AddPopulationData { class