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

/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DLocaleValidityChecker.java123 normal, anything, reorder, codepoints, subdivision, rgKey; enum constant in enum:LocaleValidityChecker.SpecialCase
128 return codepoints;
214 case codepoints:
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DLocaleValidityChecker.java121 normal, anything, reorder, codepoints, subdivision, rgKey; enum constant in enum:LocaleValidityChecker.SpecialCase
126 return codepoints;
212 case codepoints:
/external/noto-fonts/emoji-compat/src/java/androidx/text/emoji/flatbuffer/
H A DMetadataItem.java80 public int codepoints(int j) { method in class:MetadataItem
/external/harfbuzz_ng/test/api/
H A Dtest-buffer.c367 const uint32_t codepoints[8]; member in struct:__anon7820
398 for (chars = 0; test->codepoints[chars]; chars++)
407 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
711 const uint32_t codepoints[8]; member in struct:__anon7822
744 for (chars = 0; test->codepoints[chars]; chars++)
753 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
762 const uint32_t codepoints[8]; member in struct:__anon7823
798 for (chars = 0; test->codepoints[chars]; chars++)
807 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
/external/icu/icu4c/source/test/cintltst/
H A Dcucdapi.c266 uint32_t codepoints[] = { local
321 for(i=0; i<UPRV_LENGTHOF(codepoints); ++i){
322 code = uscript_getScript(codepoints[i],&status);
325 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT)
327 log_err("uscript_getScript for codepoint \\U%08X failed\n",codepoints[i]);
332 codepoints[i],u_errorName(status));
362 log_err("uscript_getScript failed for %d codepoints\n", err);
/external/harfbuzz_ng/test/shaping/
H A Dhb_test_tools.py10 def codepoints(s): function
49 def codepoints(s): function in function:codepoints
484 return u','.join ("U+%04X" % cp for cp in codepoints (tounicode (s, 'utf-8')))
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DUnicodeMap.java430 * Adds bunch o' codepoints; otherwise like put.
431 * @param codepoints
435 public UnicodeMap<T> putAll(UnicodeSet codepoints, T value) { argument
436 UnicodeSetIterator it = new UnicodeSetIterator(codepoints);
448 * Adds bunch o' codepoints; otherwise like add.
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeMap.java427 * Adds bunch o' codepoints; otherwise like put.
428 * @param codepoints
432 public UnicodeMap<T> putAll(UnicodeSet codepoints, T value) { argument
433 UnicodeSetIterator it = new UnicodeSetIterator(codepoints);
445 * Adds bunch o' codepoints; otherwise like add.
/external/libtextclassifier/
H A Dfeature-processor.cc557 void FindSubstrings(const UnicodeText& t, const std::set<char32>& codepoints, argument
563 if (codepoints.find(*curr) != codepoints.end()) {
581 const std::set<char32> codepoints{{'\n', '|'}};
582 FindSubstrings(context_unicode, codepoints, &lines);
780 TC_VLOG(1) << "Not enough supported codepoints in the context: "
/external/libvterm/src/
H A Dstate.c207 // We'll have at most len codepoints
208 uint32_t codepoints[len]; local
219 codepoints, &npoints, state->gsingle_set ? 1 : len,
229 if(vterm_unicode_is_combining(codepoints[i])) {
246 while(i < npoints && vterm_unicode_is_combining(codepoints[i])) {
249 state->combine_chars[saved_i++] = codepoints[i++];
274 if(!vterm_unicode_is_combining(codepoints[glyph_ends]))
282 chars[i - glyph_starts] = codepoints[i];
283 width += vterm_unicode_width(codepoints[i]);

Completed in 505 milliseconds