OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ffuncs
(Results
1 - 4
of
4
) sorted by null
/external/harfbuzz_ng/util/
hb-fc.cc
79
const hb_font_funcs_t *
ffuncs
;
local
81
if (!(
ffuncs
= fc_ffuncs))
91
fc_ffuncs =
ffuncs
= newfuncs;
/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, malloc (10), free);
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
412
hb_font_funcs_t *
ffuncs
;
local
414
if (!(
ffuncs
= hb_object_create<hb_font_funcs_t> ()))
417
ffuncs
->get = _hb_font_funcs_parent.get;
419
return
ffuncs
;
439
* @
ffuncs
: font functions.
448
hb_font_funcs_reference (hb_font_funcs_t *
ffuncs
)
450
return hb_object_reference (
ffuncs
);
455
* @
ffuncs
: font functions.
462
hb_font_funcs_destroy (hb_font_funcs_t *
ffuncs
)
464
if (!hb_object_destroy (
ffuncs
)) return
[
all
...]
Completed in 3922 milliseconds