Home
last modified time | relevance | path

Searched refs:ffuncs (Results 1 – 6 of 6) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-font.h56 hb_font_funcs_reference (hb_font_funcs_t *ffuncs);
59 hb_font_funcs_destroy (hb_font_funcs_t *ffuncs);
62 hb_font_funcs_set_user_data (hb_font_funcs_t *ffuncs,
70 hb_font_funcs_get_user_data (hb_font_funcs_t *ffuncs,
75 hb_font_funcs_make_immutable (hb_font_funcs_t *ffuncs);
78 hb_font_funcs_is_immutable (hb_font_funcs_t *ffuncs);
183 hb_font_funcs_set_font_h_extents_func (hb_font_funcs_t *ffuncs,
199 hb_font_funcs_set_font_v_extents_func (hb_font_funcs_t *ffuncs,
215 hb_font_funcs_set_nominal_glyph_func (hb_font_funcs_t *ffuncs,
231 hb_font_funcs_set_variation_glyph_func (hb_font_funcs_t *ffuncs,
[all …]
Dhb-font.cc412 hb_font_funcs_t *ffuncs; in hb_font_funcs_create() local
414 if (!(ffuncs = hb_object_create<hb_font_funcs_t> ())) in hb_font_funcs_create()
417 ffuncs->get = _hb_font_funcs_parent.get; in hb_font_funcs_create()
419 return ffuncs; in hb_font_funcs_create()
448 hb_font_funcs_reference (hb_font_funcs_t *ffuncs) in hb_font_funcs_reference() argument
450 return hb_object_reference (ffuncs); in hb_font_funcs_reference()
462 hb_font_funcs_destroy (hb_font_funcs_t *ffuncs) in hb_font_funcs_destroy() argument
464 if (!hb_object_destroy (ffuncs)) return; in hb_font_funcs_destroy()
466 #define HB_FONT_FUNC_IMPLEMENT(name) if (ffuncs->destroy.name) \ in hb_font_funcs_destroy()
467 ffuncs->destroy.name (ffuncs->user_data.name); in hb_font_funcs_destroy()
[all …]
Dhb-deprecated.h53 hb_font_funcs_set_glyph_func (hb_font_funcs_t *ffuncs,
/external/harfbuzz_ng/test/api/
Dtest-shape.c88 hb_font_funcs_t *ffuncs; in test_shape() local
102 ffuncs = hb_font_funcs_create (); in test_shape()
103 hb_font_funcs_set_glyph_h_advance_func (ffuncs, glyph_h_advance_func, NULL, NULL); in test_shape()
104 hb_font_funcs_set_glyph_func (ffuncs, glyph_func, malloc (10), free); in test_shape()
105 hb_font_funcs_set_glyph_h_kerning_func (ffuncs, glyph_h_kerning_func, NULL, NULL); in test_shape()
106 hb_font_set_funcs (font, ffuncs, NULL, NULL); in test_shape()
107 hb_font_funcs_destroy (ffuncs); in test_shape()
Dtest-font.c145 _test_fontfuncs_nil (hb_font_funcs_t *ffuncs) in _test_fontfuncs_nil() argument
163 hb_font_set_funcs (font, ffuncs, &freed, free_up); in _test_fontfuncs_nil()
192 hb_font_funcs_t *ffuncs; in test_fontfuncs_nil() local
194 ffuncs = hb_font_funcs_create (); in test_fontfuncs_nil()
196 g_assert (!hb_font_funcs_is_immutable (ffuncs)); in test_fontfuncs_nil()
199 hb_font_funcs_destroy (ffuncs); in test_fontfuncs_nil()
/external/harfbuzz_ng/util/
Dhb-fc.cc79 const hb_font_funcs_t *ffuncs; in _hb_fc_get_font_funcs() local
81 if (!(ffuncs = fc_ffuncs)) in _hb_fc_get_font_funcs()
91 fc_ffuncs = ffuncs = newfuncs; in _hb_fc_get_font_funcs()