Home | History | Annotate | Download | only in common

Lines Matching refs:localeID

994 _appendLanguageToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) {
1004 len = uloc_getLanguage(localeID, buf, sizeof(buf), &tmpStatus);
1049 _appendScriptToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) {
1059 len = uloc_getScript(localeID, buf, sizeof(buf), &tmpStatus);
1091 _appendRegionToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) {
1101 len = uloc_getCountry(localeID, buf, sizeof(buf), &tmpStatus);
1133 _appendVariantsToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool *hadPosix, UErrorCode* status) {
1143 len = uloc_getVariant(localeID, buf, sizeof(buf), &tmpStatus);
1257 _appendKeywordsToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool hadPosix, UErrorCode* status) {
1265 keywordEnum = uloc_openKeywords(localeID, status);
1293 len = uloc_getKeywordValue(localeID, key, buf, sizeof(buf), &tmpStatus);
1942 _appendPrivateuseToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool hadPosix, UErrorCode* status) {
1953 len = uloc_getVariant(localeID, buf, sizeof(buf), &tmpStatus);
2618 uloc_toLanguageTag(const char* localeID,
2632 if (uprv_strlen(localeID) > 0) {
2633 uloc_canonicalize(localeID, canonical, sizeof(canonical), &tmpStatus);
2659 len = uloc_getKeywordValue(localeID, key, &buf[2], sizeof(buf) - 2, &tmpStatus);
2698 char* localeID,
2720 uprv_memcpy(localeID, subtag, uprv_min(len, localeIDCapacity - reslen));
2731 localeID + reslen) = LOCALE_SEP;
2740 *(localeID + reslen) = uprv_toupper(*p);
2742 *(localeID + reslen) = *p;
2755 *(localeID + reslen) = LOCALE_SEP;
2762 *(localeID + reslen) = uprv_toupper(*p);
2775 *(localeID + reslen) = LOCALE_SEP;
2783 *(localeID + reslen) = LOCALE_SEP;
2790 *(localeID + reslen) = uprv_toupper(*p);
2805 uprv_memcpy(localeID + reslen, LANG_UND, uprv_min(LANG_UND_LEN, localeIDCapacity - reslen));
2809 len = _appendKeywords(lt, localeID + reslen, localeIDCapacity - reslen, status);
2814 return u_terminateChars(localeID, localeIDCapacity, reslen, status);