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

  /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 56 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local
74 else if (shapers[i].func == _hb_##shaper##_shape) \
hb-ot-shape.cc 778 const char *shapers[] = {"ot", NULL}; local
780 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 774 const char *shapers[] = {"ot", NULL}; local
776 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 72 GString *shapers = g_string_new (NULL); local
76 g_string_append (shapers, *shaper_list);
77 g_string_append_c (shapers, ',');
79 g_string_truncate (shapers, MAX (0, (gint)shapers->len - 1));
81 return g_string_free (shapers, false);
92 char *shapers = shapers_to_string (); local
93 g_printf ("Available shapers: %s\n", shapers);
94 g_free (shapers);
    [all...]
options.hh 182 shapers = NULL;
192 g_strfreev (shapers);
239 hb_bool_t res = hb_shape_full (font, buffer, features, num_features, shapers);
267 char **shapers; member in struct:shape_options_t

Completed in 158 milliseconds