/external/harfbuzz_ng/test/api/ |
D | test-unicode.c | 789 hb_codepoint_t decomposed[HB_UNICODE_MAX_DECOMPOSITION_LEN]; in test_unicode_normalization() local 857 g_assert (hb_unicode_decompose_compatibility (uf, 0x0041, decomposed) == 0); in test_unicode_normalization() 858 g_assert (hb_unicode_decompose_compatibility (uf, 0x1F632, decomposed) == 0); in test_unicode_normalization() 861 …g_assert (hb_unicode_decompose_compatibility (uf, 0x00B5, decomposed) == 1 && decomposed[0] == 0x0… in test_unicode_normalization() 862 …g_assert (hb_unicode_decompose_compatibility (uf, 0x03D6, decomposed) == 1 && decomposed[0] == 0x0… in test_unicode_normalization() 865 …g_assert (hb_unicode_decompose_compatibility (uf, 0xFB54, decomposed) == 1 && decomposed[0] == 0x0… in test_unicode_normalization() 869 …g_assert (hb_unicode_decompose_compatibility (uf, 0xFDFA, decomposed) == 18 && decomposed[17] == 0… in test_unicode_normalization() 876 …g_assert (hb_unicode_decompose_compatibility (uf, 0x2002, decomposed) == 1 && decomposed[0] == 0x0… in test_unicode_normalization() 877 …g_assert (hb_unicode_decompose_compatibility (uf, 0x2003, decomposed) == 1 && decomposed[0] == 0x0… in test_unicode_normalization() 878 …g_assert (hb_unicode_decompose_compatibility (uf, 0x2004, decomposed) == 1 && decomposed[0] == 0x0… in test_unicode_normalization() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-icu.cc | 224 UChar decomposed[4]; in hb_icu_unicode_decompose() local 227 len = unorm2_getRawDecomposition (normalizer, ab, decomposed, in hb_icu_unicode_decompose() 228 ARRAY_LENGTH (decomposed), &icu_err); in hb_icu_unicode_decompose() 231 len = u_countChar32 (decomposed, len); in hb_icu_unicode_decompose() 233 U16_GET_UNSAFE (decomposed, 0, *a); in hb_icu_unicode_decompose() 238 U16_NEXT_UNSAFE (decomposed, len, *a); in hb_icu_unicode_decompose() 239 U16_NEXT_UNSAFE (decomposed, len, *b); in hb_icu_unicode_decompose() 315 hb_codepoint_t *decomposed, in hb_icu_unicode_decompose_compatibility() argument 339 …u_strToUTF32 ((UChar32*) decomposed, HB_UNICODE_MAX_DECOMPOSITION_LEN, &utf32_len, normalized, len… in hb_icu_unicode_decompose_compatibility()
|
D | hb-unicode-private.hh | 93 hb_codepoint_t *decomposed) in decompose_compatibility() 95 …unsigned int ret = func.decompose_compatibility (this, u, decomposed, user_data.decompose_compatib… in decompose_compatibility() 96 if (ret == 1 && u == decomposed[0]) { in decompose_compatibility() 97 decomposed[0] = 0; in decompose_compatibility() 100 decomposed[ret] = 0; in decompose_compatibility()
|
D | hb-ot-shape-complex-hangul.cc | 339 hb_codepoint_t decomposed[3] = {LBase + lindex, in preprocess_text_hangul() local 342 if (font->has_glyph (decomposed[0]) && in preprocess_text_hangul() 343 font->has_glyph (decomposed[1]) && in preprocess_text_hangul() 344 (!tindex || font->has_glyph (decomposed[2]))) in preprocess_text_hangul() 347 buffer->replace_glyphs (1, s_len, decomposed); in preprocess_text_hangul()
|
D | hb-ot-shape-normalize.cc | 179 hb_codepoint_t decomposed[HB_UNICODE_MAX_DECOMPOSITION_LEN]; in decompose_compatibility() local 182 len = c->buffer->unicode->decompose_compatibility (u, decomposed); in decompose_compatibility() 187 if (!c->font->get_glyph (decomposed[i], 0, &glyphs[i])) in decompose_compatibility() 191 output_char (c->buffer, decomposed[i], glyphs[i]); in decompose_compatibility()
|
D | hb-unicode.cc | 105 hb_codepoint_t *decomposed HB_UNUSED, in hb_unicode_decompose_compatibility_nil() 451 hb_codepoint_t *decomposed) in hb_unicode_decompose_compatibility() argument 453 return ufuncs->decompose_compatibility (u, decomposed); in hb_unicode_decompose_compatibility()
|
D | hb-glib.cc | 339 hb_codepoint_t *decomposed, in hb_glib_unicode_decompose_compatibility() argument 343 return g_unichar_fully_decompose (u, true, decomposed, HB_UNICODE_MAX_DECOMPOSITION_LEN); in hb_glib_unicode_decompose_compatibility() 360 *decomposed++ = g_utf8_get_char (c); in hb_glib_unicode_decompose_compatibility()
|
D | hb-ucdn.cc | 207 hb_codepoint_t u, hb_codepoint_t *decomposed, in hb_ucdn_decompose_compatibility() argument 210 return ucdn_compat_decompose(u, decomposed); in hb_ucdn_decompose_compatibility()
|
D | hb-unicode.h | 269 hb_codepoint_t *decomposed, 441 hb_codepoint_t *decomposed);
|
D | hb-ot-shape-complex-thai.cc | 327 hb_codepoint_t decomposed[2] = {hb_codepoint_t (NIKHAHIT_FROM_SARA_AM (u)), in preprocess_text_thai() local 329 buffer->replace_glyphs (1, 2, decomposed); in preprocess_text_thai()
|
/external/icu/icu4c/source/tools/gennorm2/ |
D | n2builder.cpp | 452 UnicodeString *decomposed=NULL; in decompose() local 503 if(decomposed==NULL) { in decompose() 504 decomposed=new UnicodeString(m, 0, prev); in decompose() 506 decomposed->append(*cNorm.mapping); in decompose() 519 if(decomposed==NULL) { in decompose() 520 decomposed=new UnicodeString(m, 0, prev); in decompose() 522 decomposed->append(buffer, hangulLength); in decompose() 523 } else if(decomposed!=NULL) { in decompose() 524 decomposed->append(m, prev, i-prev); in decompose() 527 if(decomposed!=NULL) { in decompose() [all …]
|
/external/harfbuzz_ng/src/hb-ucdn/ |
D | ucdn.c | 267 int ucdn_compat_decompose(uint32_t code, uint32_t *decomposed) in ucdn_compat_decompose() argument 278 decomposed[i] = decode_utf16(&rec); in ucdn_compat_decompose()
|
D | ucdn.h | 338 int ucdn_compat_decompose(uint32_t code, uint32_t *decomposed);
|
/external/eigen/doc/ |
D | ClassHierarchy.dox | 34 …added, matrix-multiplied, LU-decomposed, QR-decomposed... All matrix expression classes, including
|
D | SparseLinearSystems.dox | 88 …h the same sparsity pattern have to be solved, then the "compute" step can be decomposed as follow:
|
/external/llvm/test/Transforms/InstCombine/ |
D | select-extractelement.ll | 73 ; All the vector selects should be decomposed into scalar selects
|
/external/icu/icu4c/source/data/translit/ |
D | IPA_XSampa.txt | 107 c\u0327 ↔ C; # LATIN SMALL LETTER C WITH CEDILLA (decomposed)
|
/external/clang/docs/ |
D | DriverInternals.rst | 113 The command line argument strings are decomposed into arguments
|
/external/e2fsprogs/lib/et/ |
D | com_err.texinfo | 176 the table. An error code may thus be easily decomposed into its component
|
/external/llvm/docs/ |
D | DeveloperPolicy.rst | 447 * The remaining inter-related work should be decomposed into unrelated sets of
|
/external/llvm/test/CodeGen/X86/ |
D | vector-shuffle-combining.ll | 2624 ; and thus are decomposed into multiple smaller operations.
|
/external/libvncserver/x11vnc/ |
D | README | 1515 pixel tile model (the desktop is decomposed into roughly 1000 such
|