HomeSort by relevance Sort by last modified time
    Searched defs:ffuncs (Results 1 - 3 of 3) sorted by null

  /external/harfbuzz_ng/test/api/
test-shape.c 88 hb_font_funcs_t *ffuncs; local
102 ffuncs = hb_font_funcs_create ();
103 hb_font_funcs_set_glyph_h_advance_func (ffuncs, glyph_h_advance_func, NULL, NULL);
104 hb_font_funcs_set_glyph_func (ffuncs, glyph_func, NULL, NULL);
105 hb_font_funcs_set_glyph_h_kerning_func (ffuncs, glyph_h_kerning_func, NULL, NULL);
106 hb_font_set_funcs (font, ffuncs, NULL, NULL);
107 hb_font_funcs_destroy (ffuncs);
test-font.c 144 _test_fontfuncs_nil (hb_font_funcs_t *ffuncs)
162 hb_font_set_funcs (font, ffuncs, &freed, free_up);
191 hb_font_funcs_t *ffuncs; local
193 ffuncs = hb_font_funcs_create ();
195 g_assert (!hb_font_funcs_is_immutable (ffuncs));
198 hb_font_funcs_destroy (ffuncs);
  /external/harfbuzz_ng/src/
hb-font.cc 244 hb_font_funcs_t *ffuncs; local
246 if (!(ffuncs = hb_object_create<hb_font_funcs_t> ()))
249 ffuncs->get = _hb_font_funcs_nil.get;
251 return ffuncs;
271 * @ffuncs: font functions.
280 hb_font_funcs_reference (hb_font_funcs_t *ffuncs)
282 return hb_object_reference (ffuncs);
287 * @ffuncs: font functions.
294 hb_font_funcs_destroy (hb_font_funcs_t *ffuncs)
296 if (!hb_object_destroy (ffuncs)) return
    [all...]

Completed in 215 milliseconds