• Home
  • Raw
  • Download

Lines Matching defs:HB_UNUSED

12 #define HB_UNUSED __attribute__((unused))  macro
15 _hb_move_to (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED)… in _hb_move_to()
18 _hb_line_to (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED)… in _hb_line_to()
21 _hb_quadratic_to (hb_position_t control_x HB_UNUSED, hb_position_t control_y HB_UNUSED, in _hb_quadratic_to()
22 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _hb_quadratic_to()
23 void *user_data HB_UNUSED) {} in _hb_quadratic_to()
26 _hb_cubic_to (hb_position_t control1_x HB_UNUSED, hb_position_t control1_y HB_UNUSED, in _hb_cubic_to()
27 hb_position_t control2_x HB_UNUSED, hb_position_t control2_y HB_UNUSED, in _hb_cubic_to()
28 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _hb_cubic_to()
29 void *user_data HB_UNUSED) {} in _hb_cubic_to()
32 _hb_close_path (void *user_data HB_UNUSED) {} in _hb_close_path()
35 _ft_move_to (const FT_Vector* to HB_UNUSED, void* user HB_UNUSED) {} in _ft_move_to()
38 _ft_line_to (const FT_Vector* to HB_UNUSED, void* user HB_UNUSED) {} in _ft_line_to()
41 _ft_conic_to (const FT_Vector* control HB_UNUSED, const FT_Vector* to HB_UNUSED, in _ft_conic_to()
42 void* user HB_UNUSED) {} in _ft_conic_to()
45 _ft_cubic_to (const FT_Vector* control1 HB_UNUSED, const FT_Vector* control2 HB_UNUSED, in _ft_cubic_to()
46 const FT_Vector* to HB_UNUSED, void* user HB_UNUSED) {} in _ft_cubic_to()
49 static void _tp_move_to (float x HB_UNUSED, float y HB_UNUSED, void *data HB_UNUSED) {} in _tp_move_to()