Home | History | Annotate | Download | only in i18n

Lines Matching defs:subtag

1509 void appendSubtag(CharString &s, char letter, const char *subtag, int32_t length,
1517 s.append(uprv_toupper(subtag[i]), errorCode);
1560 char subtag[ULOC_KEYWORD_AND_VALUES_CAPACITY];
1580 length = uloc_getKeywordValue(resultLocale, "collation", subtag, LENGTHOF(subtag), &errorCode);
1581 appendSubtag(result, 'K', subtag, length, errorCode);
1582 length = uloc_getLanguage(resultLocale, subtag, LENGTHOF(subtag), &errorCode);
1583 appendSubtag(result, 'L', subtag, length, errorCode);
1587 length = uloc_getCountry(resultLocale, subtag, LENGTHOF(subtag), &errorCode);
1588 appendSubtag(result, 'R', subtag, length, errorCode);
1592 length = uloc_getVariant(resultLocale, subtag, LENGTHOF(subtag), &errorCode);
1593 appendSubtag(result, 'V', subtag, length, errorCode);
1594 length = uloc_getScript(resultLocale, subtag, LENGTHOF(subtag), &errorCode);
1595 appendSubtag(result, 'Z', subtag, length, errorCode);