Home
last modified time | relevance | path

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

/external/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DTerritoryContainmentTest.java7 import static org.unicode.icu.tool.cldrtoicu.localedistance.TestData.territoryGroup;
20 territoryGroup("001", "002", "003"), in testSimple()
21 territoryGroup("002", "GB", "FR"), in testSimple()
22 territoryGroup("003", "US", "CA")); in testSimple()
33 territoryGroup("001", "002", "003", "004"), in testOverlappingContainment()
34 territoryGroup("002", "GB", "FR"), in testOverlappingContainment()
35 territoryGroup("003", "US", "CA"), in testOverlappingContainment()
36 territoryGroup("004", "CA", "GB")); in testOverlappingContainment()
46 territoryGroup("001", "002"), in testMultipleRootsFails()
47 territoryGroup("002", "GB", "FR"), in testMultipleRootsFails()
[all …]
DLocaleDistanceMapperTest.java19 import static org.unicode.icu.tool.cldrtoicu.localedistance.TestData.territoryGroup;
114 territoryGroup("001", "019", "142", "150"), // World in testEndToEnd()
116 territoryGroup("019", "021", "419"), // Americas in testEndToEnd()
117 territoryGroup("142", "030", "035"), // Asia in testEndToEnd()
118 territoryGroup("150", "154", "155"), // Europe in testEndToEnd()
120 territoryGroup("021", "CA", "PM", "US"), // Northern America in testEndToEnd()
121territoryGroup("419", "013", "029"), // Latin America and the Caribbean in testEndToEnd()
122 territoryGroup("030", "CN", "HK", "MO", "TW"), // Eastern Asia in testEndToEnd()
123 territoryGroup("035", "PH", "SG", "TH", "VN"), // South-Eastern Asia in testEndToEnd()
124 territoryGroup("154", "GB", "IE"), // Northern Europe in testEndToEnd()
[all …]
DPartitionInfoTest.java18 TestData.territoryGroup("001", "019", "150"), in testPartitionInfo()
20 TestData.territoryGroup("019", "003", "029"), in testPartitionInfo()
21 TestData.territoryGroup("003", "CA", "US"), in testPartitionInfo()
22 TestData.territoryGroup("029", "PR", "VI"), in testPartitionInfo()
24 TestData.territoryGroup("150", "DE", "FR", "GB")); in testPartitionInfo()
DTestData.java88 static CldrValue territoryGroup(String region, String... subregions) { in territoryGroup() method in TestData