Home | History | Annotate | Download | only in i18n

Lines Matching refs:variant

72 // Variant for legacy pre-euro mapping in CurrencyMap
75 // Variant for legacy euro mapping in CurrencyMap
78 // Variant delimiter
82 // Variant for legacy euro mapping in CurrencyMap
216 // Extract the country name and variant name. We only
217 // recognize two variant names, EURO and PREEURO.
218 char variant[ULOC_FULLNAME_CAPACITY];
220 uloc_getVariant(locale, variant, sizeof(variant), ec);
221 if (variant[0] != 0) {
222 variantType = (uint32_t)(0 == uprv_strcmp(variant, VAR_EURO))
223 | ((uint32_t)(0 == uprv_strcmp(variant, VAR_PRE_EURO)) << 1);
227 uprv_strcat(countryAndVariant, variant);
440 If the requested variant is PREEURO, and this isn't a Euro country, assume
459 // We don't know about it. Check to see if we support the variant.
1164 // It is a variant of binary search.