Lines Matching refs:country
1454 << " <cmap> country map, from tzdata archive," << endl
1583 // Create the country map
1584 map<string, set<string> > countryMap; // country -> set of zones
1585 map<string, string> reverseCountryMap; // zone -> country
1599 string country, coord, zone;
1601 is >> country >> coord >> zone;
1602 if (country.size() == 0) continue;
1603 if (country.size() != 2 || zone.size() < 1) {
1608 cerr << "Error: Country maps to invalid zone " << zone
1612 countryMap[country].insert(zone);
1613 reverseCountryMap[zone] = country;
1614 //cerr << (n+1) << ": " << country << " <=> " << zone << endl;
1618 << " country entries from " << zonetab << endl;
1624 // Merge ICU aliases into country map. Don't merge any alias
1625 // that already has a country map, since that doesn't make sense.
1641 //cerr << "Aliased country: " << c << " <=> " << *j << endl;
1646 // Create a pseudo-country containing all zones belonging to no country
1707 // Emit country (region) map.
1726 string country = i->first;
1729 if(country[0]==0) {
1732 file << country << ":intvector { ";
1739 cerr << "Error: Nonexistent zone in country map: " << *j << endl;