Home | History | Annotate | Download | only in unicode

Lines Matching refs:keyword

299  * Invariant character for assigning value to a keyword
305 * Unicode code point for '=' for assigning value to a keyword.
648 * Gets the keyword name suitable for display for the specified locale.
650 * string for the keyword collation.
654 * const char* keyword =NULL;
666 * keyword = uenum_next(keywordEnum, &keywordLen, &status);
667 * displayKeywordLen = uloc_getDisplayKeyword(keyword, "en_US", displayKeyword, 256);
672 * @param keyword The keyword whose display string needs to be returned.
677 * @param dest the buffer to which the displayable keyword should be written.
688 uloc_getDisplayKeyword(const char* keyword,
694 * Gets the value of the keyword suitable for display for the specified locale.
696 * string for PHONEBOOK, in the display locale, when "collation" is specified as the keyword.
699 * @param keyword The keyword for whose value should be used.
704 * @param dest the buffer to which the displayable keyword should be written.
715 const char* keyword,
823 * This API strips off the keyword part, so "de_DE\@collation=phonebook"
855 * Get the value for a keyword. Locale name does not need to be normalized.
857 * @param localeID locale name containing the keyword ("de_DE@currency=EURO;collation=PHONEBOOK")
858 * @param keywordName name of the keyword for which we want the value; must not be
864 * @return the length of keyword value
875 * Sets or removes the value of the specified keyword.
888 * @param keywordName name of the keyword to be set; must not be
890 * @param keywordValue value of the keyword to be set. If 0-length or
891 * NULL, will result in the keyword being removed; no error is given if
892 * that keyword does not exist. Otherwise, must consist only of
1174 * Converts the specified keyword (legacy key, or BCP 47 Unicode locale
1177 * the input keyword "collation".
1179 * When the specified keyword is unknown, but satisfies the BCP syntax,
1180 * then the pointer to the input keyword itself will be returned.
1184 * @param keyword the input locale keyword (either legacy key
1188 * or NULL if the specified locale keyword cannot be
1195 uloc_toUnicodeLocaleKey(const char* keyword);
1198 * Converts the specified keyword value (legacy type, or BCP 47
1200 * extension type for the specified keyword (category). For example, BCP 47
1202 * keyword value "phonebook", with the keyword "collation" (or "co").
1204 * When the specified keyword is not recognized, but the specified value
1206 * or when the specified keyword allows 'variable' type and the specified
1213 * @param keyword the locale keyword
1216 * @param value the locale keyword value (either legacy type
1220 * or NULL if the locale keyword value cannot be mapped to
1226 uloc_toUnicodeLocaleType(const char* keyword, const char* value);
1229 * Converts the specified keyword (BCP 47 Unicode locale extension key, or
1233 * @param keyword the input locale keyword (either BCP 47 Unicode locale
1236 * keyword cannot be mapped to a well-formed legacy key.
1241 uloc_toLegacyKey(const char* keyword);
1244 * Converts the specified keyword value (BCP 47 Unicode locale extension type,
1247 * locale extension type "phonebk" with the keyword "collation" (or "co").
1249 * When the specified keyword is not recognized, but the specified value
1250 * satisfies the syntax of legacy key, or when the specified keyword
1257 * @param keyword the locale keyword (either legacy keyword such as
1260 * @param value the locale keyword value (either BCP 47 Unicode locale
1261 * extension type such as "phonebk" or legacy keyword value
1264 * keyword value cannot be mapped to a well-formed legacy
1270 uloc_toLegacyType(const char* keyword, const char* value);