HomeSort by relevance Sort by last modified time
    Searched refs:codepoints (Results 1 - 4 of 4) sorted by null

  /external/icu4c/test/cintltst/
citertst.c 1030 * Getting codepoints from a string
1031 * @param str character string contain codepoints seperated by space and ended
1033 * @param codepoints array for storage, assuming size > 5
1036 static char * getCodePoints(char *str, UChar *codepoints, UChar *contextCPs)
1272 UChar codepoints[10]; local
1658 UChar codepoints[10]; local
1856 UChar codepoints[10]; local
    [all...]
cucdapi.c 189 uint32_t codepoints[] = { local
244 for(i=0; i<LENGTHOF(codepoints); ++i){
245 code = uscript_getScript(codepoints[i],&status);
248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT)
250 log_err("uscript_getScript for codepoint \\U%08X failed\n",codepoints[i]);
255 codepoints[i],u_errorName(status));
285 log_err("uscript_getScript failed for %d codepoints\n", err);
  /external/sqlite/android/
PhoneticStringUtils.cpp 224 char32_t codepoints[MAX_CODEPOINTS]; // if array size is changed the for loop needs to be changed local
243 codepoints[j] = static_cast<char32_t>(ret);
253 // If all of codepoints are invalid, we place the string at the end of
255 codepoints[0] = 0x10000 + CODEPOINT_FOR_NULL_STR;
259 size_t new_len = utf8_length_from_utf32(codepoints, length);
265 if (utf32_to_utf8(codepoints, length, *dst, new_len + 1) != new_len) {
PhoneticStringUtilsTest.cpp 122 char32_t codepoints[1] = {codepoint}; \
123 status_t ret = string8.setTo(codepoints, 1); \

Completed in 116 milliseconds