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);
195 hb_font_funcs_set_font_h_extents_func (hb_font_funcs_t *ffuncs,
211 hb_font_funcs_set_font_v_extents_func (hb_font_funcs_t *ffuncs,
227 hb_font_funcs_set_nominal_glyph_func (hb_font_funcs_t *ffuncs,
243 hb_font_funcs_set_nominal_glyphs_func (hb_font_funcs_t *ffuncs,
[all …]
Dhb-font.cc528 hb_font_funcs_t *ffuncs; in hb_font_funcs_create() local
530 if (!(ffuncs = hb_object_create<hb_font_funcs_t> ())) in hb_font_funcs_create()
533 ffuncs->get = _hb_font_funcs_default.get; in hb_font_funcs_create()
535 return ffuncs; in hb_font_funcs_create()
564 hb_font_funcs_reference (hb_font_funcs_t *ffuncs) in hb_font_funcs_reference() argument
566 return hb_object_reference (ffuncs); in hb_font_funcs_reference()
578 hb_font_funcs_destroy (hb_font_funcs_t *ffuncs) in hb_font_funcs_destroy() argument
580 if (!hb_object_destroy (ffuncs)) return; in hb_font_funcs_destroy()
582 #define HB_FONT_FUNC_IMPLEMENT(name) if (ffuncs->destroy.name) \ in hb_font_funcs_destroy()
583 ffuncs->destroy.name (ffuncs->user_data.name); in hb_font_funcs_destroy()
[all …]
Dhb-deprecated.h67 hb_font_funcs_set_glyph_func (hb_font_funcs_t *ffuncs,
187 hb_font_funcs_set_glyph_h_kerning_func (hb_font_funcs_t *ffuncs,
204 hb_font_funcs_set_glyph_v_kerning_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_nominal_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.c155 _test_fontfuncs_nil (hb_font_funcs_t *ffuncs) in _test_fontfuncs_nil() argument
173 hb_font_set_funcs (font, ffuncs, &freed, free_up); in _test_fontfuncs_nil()
202 hb_font_funcs_t *ffuncs; in test_fontfuncs_nil() local
204 ffuncs = hb_font_funcs_create (); in test_fontfuncs_nil()
206 g_assert (!hb_font_funcs_is_immutable (ffuncs)); in test_fontfuncs_nil()
209 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()