Searched defs:codepoints (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdapi.c189 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);
H A Dcitertst.c1029 * Getting codepoints from a string
1030 * @param str character string contain codepoints seperated by space and ended
1032 * @param codepoints array for storage, assuming size > 5
1035 static char *getCodePoints(char *str, UChar *codepoints, UChar *contextCPs) { argument
1040 *codepoints = 0;
1055 /* prepend the precontext string to the codepoints */
1056 u_memcpy(codepoints, contextCPs, contextLength);
1057 codepoints += contextLength;
1063 u_parseString(s, codepoints, 99, NULL, &errorCode);
1270 UChar codepoints[1 local
1505 showCodepoints(const UChar *codepoints, int length, char * codepointText) argument
1522 checkCEValidity(const UCollator *coll, const UChar *codepoints, int length) argument
1703 UChar codepoints[11]; local
1851 printSortKeyError(const UChar *codepoints, int length, uint8_t *sortkey, int sklen) argument
1872 checkSortKeyValidity(UCollator *coll, const UChar *codepoints, int length) argument
1932 UChar codepoints[10]; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcucdapi.c189 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/harfbuzz_ng/test/api/
H A Dtest-buffer.c358 const uint32_t codepoints[8]; member in struct:__anon21685
389 for (chars = 0; test->codepoints[chars]; chars++)
398 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
702 const uint32_t codepoints[8]; member in struct:__anon21687
735 for (chars = 0; test->codepoints[chars]; chars++)
744 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
753 const uint32_t codepoints[8]; member in struct:__anon21688
789 for (chars = 0; test->codepoints[chars]; chars++)
798 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
/external/libvterm/src/
H A Dstate.c156 // We'll have at most len codepoints
157 uint32_t codepoints[len]; local
168 codepoints, &npoints, state->gsingle_set ? 1 : len,
178 if(vterm_unicode_is_combining(codepoints[i])) {
195 while(i < npoints && vterm_unicode_is_combining(codepoints[i])) {
198 state->combine_chars[saved_i++] = codepoints[i++];
223 if(!vterm_unicode_is_combining(codepoints[glyph_ends]))
231 chars[i - glyph_starts] = codepoints[i];
232 width += vterm_unicode_width(codepoints[i]);

Completed in 158 milliseconds