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

  /external/harfbuzz_ng/src/
hb-shaper.cc 39 /* Thread-safe, lock-free, shapers */
56 hb_shaper_pair_t *shapers = (hb_shaper_pair_t *) hb_atomic_ptr_get (&static_shapers); local
58 if (unlikely (!shapers))
67 shapers = (hb_shaper_pair_t *) calloc (1, sizeof (all_shapers));
68 if (unlikely (!shapers)) {
73 memcpy (shapers, all_shapers, sizeof (all_shapers));
75 /* Reorder shaper list to prefer requested shapers. */
84 if (end - p == (int) strlen (shapers[j].name) &&
85 0 == strncmp (shapers[j].name, p, end - p))
88 struct hb_shaper_pair_t t = shapers[j]
    [all...]
hb-shape-plan.cc 56 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local
74 else if (shapers[i].func == _hb_##shaper##_shape) \
hb-ot-shape.cc 847 const char *shapers[] = {"ot", NULL}; local
849 features, num_features, shapers);
  /external/harfbuzz_ng/test/api/
test-shape.c 186 const char **shapers = hb_shape_list_shapers (); local
189 for (i = 0; shapers[i]; i++)
193 g_assert (!strcmp (shapers[i - 1], "fallback"));
  /external/harfbuzz_ng/util/
options.cc 73 GString *shapers = g_string_new (NULL); local
77 g_string_append (shapers, *shaper_list);
78 g_string_append_c (shapers, ',');
80 g_string_truncate (shapers, MAX (0, (gint)shapers->len - 1));
82 return g_string_free (shapers, false);
93 char *shapers = shapers_to_string (); local
94 g_printf ("Available shapers: %s\n", shapers);
95 g_free (shapers);
    [all...]
options.hh 186 shapers = NULL;
200 g_strfreev (shapers);
248 hb_bool_t res = hb_shape_full (font, buffer, features, num_features, shapers);
276 char **shapers; member in struct:shape_options_t

Completed in 2847 milliseconds