Searched defs:keywordValue (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4c/source/common/
H A Dlocdispnames.cpp807 char keywordValue[ULOC_FULLNAME_CAPACITY*4]; local
822 keywordValue[0]=0;
823 keywordValueLen = uloc_getKeywordValue(locale, keyword, keywordValue, capacity, status);
836 UResourceBundle *currency = ures_getByKeyWithFallback(currencies, keywordValue, NULL, status);
866 u_charsToUChars(keywordValue, dest, keywordValueLen);
879 keywordValue,
880 keywordValue,
H A Dlocid.cpp1041 Locale::setKeywordValue(const char* keywordName, const char* keywordValue, UErrorCode &status) argument
1043 uloc_setKeywordValue(keywordName, keywordValue, fullName, ULOC_FULLNAME_CAPACITY, &status);
H A Duloc.cpp930 const char* keywordValue,
964 if(keywordValue && !*keywordValue) {
965 keywordValue = NULL;
967 if(keywordValue) {
968 keywordValueLen = (int32_t)uprv_strlen(keywordValue);
978 if(!keywordValue) { /* no keywords = nothing to remove */
999 uprv_strcpy(startSearchHere, keywordValue);
1047 if(keywordValue) { /* adding a value - not removing */
1049 uprv_strncpy(nextEqualsign, keywordValue, keywordValueLe
929 uloc_setKeywordValue(const char* keywordName, const char* keywordValue, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcallcoll.c1320 const char *keywordValue = NULL; local
1323 while ((keywordValue = uenum_next(values, NULL, &status)) != NULL) {
1324 if (strncmp(keywordValue, "private-", 8) == 0) {
1325 log_err("ucol_getKeywordValues() returns private collation keyword: %s\n", keywordValue);
1330 while ((keywordValue = uenum_next(values, NULL, &status)) != NULL) {
1332 if (strcmp(keywordValue, "standard") != 0) {
1334 strcat(input, keywordValue);

Completed in 123 milliseconds