OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ffuncs
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/harfbuzz-ng/src/
hb-font.h
56
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
);
144
* @
ffuncs
: font functions.
154
hb_font_funcs_set_glyph_func (hb_font_funcs_t *
ffuncs
,
160
* @
ffuncs
: font functions.
170
hb_font_funcs_set_glyph_h_advance_func (hb_font_funcs_t *
ffuncs
,
[
all
...]
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
...]
/external/harfbuzz_ng/src/
hb-font.h
56
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
);
144
* @
ffuncs
: font functions.
154
hb_font_funcs_set_glyph_func (hb_font_funcs_t *
ffuncs
,
160
* @
ffuncs
: font functions.
170
hb_font_funcs_set_glyph_h_advance_func (hb_font_funcs_t *
ffuncs
,
[
all
...]
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
...]
/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
);
Completed in 1041 milliseconds