Searched refs:shapers (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-shaper.cc39 /* 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[
[all...]
H A Dhb-shape-plan.cc45 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local
63 else if (shapers[i].func == _hb_##shaper##_shape) \
H A Dhb-shape.cc258 const hb_shaper_pair_t *shapers = _hb_shapers_get ();
261 shaper_list[i] = shapers[i].name;
H A Dhb-ot-shape.cc677 const char *shapers[] = {"ot", NULL}; local
679 features, num_features, shapers);
/external/harfbuzz_ng/src/
H A Dhb-shaper.cc39 /* 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[
[all...]
H A Dhb-shape-plan.cc45 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local
63 else if (shapers[i].func == _hb_##shaper##_shape) \
H A Dhb-shape.cc227 const hb_shaper_pair_t *shapers = _hb_shapers_get ();
230 shaper_list[i] = shapers[i].name;
H A Dhb-ot-shape.cc630 const char *shapers[] = {"ot", NULL}; local
632 features, num_features, shapers);
/external/harfbuzz_ng/test/api/
H A Dtest-shape.c144 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/
H A Doptions.cc56 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...]
H A Doptions.hh150 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

Completed in 178 milliseconds