/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-shaper.cc | 39 /* Thread-safe, lock-free, shapers */ 54 hb_shaper_pair_t *shapers = (hb_shaper_pair_t *) hb_atomic_ptr_get (&static_shapers); local 56 if (unlikely (!shapers)) 65 shapers = (hb_shaper_pair_t *) malloc (sizeof (all_shapers)); 66 if (unlikely (!shapers)) { 71 memcpy (shapers, all_shapers, sizeof (all_shapers)); 73 /* Reorder shaper list to prefer requested shapers. */ 82 if (end - p == (int) strlen (shapers[j].name) && 83 0 == strncmp (shapers[j].name, p, end - p)) 86 struct hb_shaper_pair_t t = shapers[j] [all...] |
hb-shape-plan.cc | 45 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local 63 else if (shapers[i].func == _hb_##shaper##_shape) \
|
hb-ot-shape.cc | 677 const char *shapers[] = {"ot", NULL}; local 679 features, num_features, shapers);
|
/external/harfbuzz_ng/src/ |
hb-shaper.cc | 39 /* Thread-safe, lock-free, shapers */ 54 hb_shaper_pair_t *shapers = (hb_shaper_pair_t *) hb_atomic_ptr_get (&static_shapers); local 56 if (unlikely (!shapers)) 65 shapers = (hb_shaper_pair_t *) malloc (sizeof (all_shapers)); 66 if (unlikely (!shapers)) { 71 memcpy (shapers, all_shapers, sizeof (all_shapers)); 73 /* Reorder shaper list to prefer requested shapers. */ 82 if (end - p == (int) strlen (shapers[j].name) && 83 0 == strncmp (shapers[j].name, p, end - p)) 86 struct hb_shaper_pair_t t = shapers[j] [all...] |
hb-shape-plan.cc | 45 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local 63 else if (shapers[i].func == _hb_##shaper##_shape) \
|
hb-ot-shape.cc | 630 const char *shapers[] = {"ot", NULL}; local 632 features, num_features, shapers);
|
/external/harfbuzz_ng/test/api/ |
test-shape.c | 144 const char **shapers = hb_shape_list_shapers (); local 147 for (i = 0; shapers[i]; i++) 151 g_assert (!strcmp (shapers[i - 1], "fallback"));
|
/external/harfbuzz_ng/util/ |
options.cc | 56 GString *shapers = g_string_new (NULL); local 60 g_string_append (shapers, *shaper_list); 61 g_string_append_c (shapers, ','); 63 g_string_truncate (shapers, MAX (0, (gint)shapers->len - 1)); 65 return g_string_free (shapers, false); 76 char *shapers = shapers_to_string (); local 77 g_printf ("Available shapers: %s\n", shapers); 78 g_free (shapers); [all...] |
options.hh | 150 shapers = NULL; 159 g_strfreev (shapers); 206 hb_bool_t res = hb_shape_full (font, buffer, features, num_features, shapers); 234 char **shapers; member in struct:shape_options_t
|