OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
145
_test_fontfuncs_nil (hb_font_funcs_t *
ffuncs
)
163
hb_font_set_funcs (font,
ffuncs
, &freed, free_up);
192
hb_font_funcs_t *
ffuncs
;
local
194
ffuncs
= hb_font_funcs_create ();
196
g_assert (!hb_font_funcs_is_immutable (
ffuncs
));
199
hb_font_funcs_destroy (
ffuncs
);
/external/harfbuzz_ng/src/
hb-font.cc
237
hb_font_funcs_t *
ffuncs
;
local
239
if (!(
ffuncs
= hb_object_create<hb_font_funcs_t> ()))
242
ffuncs
->get = _hb_font_funcs_nil.get;
244
return
ffuncs
;
254
hb_font_funcs_reference (hb_font_funcs_t *
ffuncs
)
256
return hb_object_reference (
ffuncs
);
260
hb_font_funcs_destroy (hb_font_funcs_t *
ffuncs
)
262
if (!hb_object_destroy (
ffuncs
)) return;
264
#define HB_FONT_FUNC_IMPLEMENT(name) if (
ffuncs
->destroy.name) \
265
ffuncs
->destroy.name (ffuncs->user_data.name)
[
all
...]
Completed in 44 milliseconds