Lines Matching refs:to_y
30604 + float to_x HB_UNUSED, float to_y HB_UNUSED,
30610 + float to_x HB_UNUSED, float to_y HB_UNUSED,
30617 + float to_x, float to_y,
30626 + (to_y + 2.f * control_y) / 3.f,
30627 + to_x, to_y);
30635 + float to_x HB_UNUSED, float to_y HB_UNUSED,
30805 -_move_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSE…
30808 -_line_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSE…
30812 - hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED,
30818 - hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED,
30869 + * @to_y: Y component of target point
30883 + float to_x, float to_y)
30887 + to_x, to_y);
30898 + * @to_y: Y component of target point
30911 + float to_x, float to_y)
30917 + to_x, to_y);
30930 + * @to_y: Y component of target point
30943 + float to_x, float to_y)
30951 + to_x, to_y);
30966 + * @to_y: Y component of target point
30982 + float to_x, float to_y)
30988 + to_x, to_y);
31044 -typedef void (*hb_draw_move_to_func_t) (hb_position_t to_x, hb_position_t to_y, void *user_data);
31045 -typedef void (*hb_draw_line_to_func_t) (hb_position_t to_x, hb_position_t to_y, void *user_data);
31047 - hb_position_t to_x, hb_position_t to_y,
31051 - hb_position_t to_x, hb_position_t to_y,
31119 + * @to_y: Y component of target point
31130 + float to_x, float to_y,
31139 + * @to_y: Y component of target point
31150 + float to_x, float to_y,
31161 + * @to_y: Y component of target point
31173 + float to_x, float to_y,
31186 + * @to_y: Y component of target point
31199 + float to_x, float to_y,
31334 + float to_x, float to_y);
31339 + float to_x, float to_y);
31345 + float to_x, float to_y);
31352 + float to_x, float to_y);
31426 + float to_x, float to_y)
31428 + to_x, to_y,
31431 + float to_x, float to_y)
31433 + to_x, to_y,
31437 + float to_x, float to_y)
31440 + to_x, to_y,
31445 + float to_x, float to_y)
31449 + to_x, to_y,
31457 + float to_x, float to_y)
31464 + st.current_y = to_y;
31469 + float to_x, float to_y)
31477 + emit_line_to (draw_data, st, to_x, to_y);
31479 + st.current_y = to_y;
31484 - hb_position_t to_x, hb_position_t to_y)
31487 + float to_x, float to_y)
31489 - if (equal_to_current (control_x, control_y) && equal_to_current (to_x, to_y))
31493 - funcs->quadratic_to (control_x, control_y, to_x, to_y, user_data);
31498 - roundf ((to_y + 2.f * control_y) / 3.f),
31499 - to_x, to_y, user_data);
31501 - current_y = to_y;
31503 + emit_quadratic_to (draw_data, st, control_x, control_y, to_x, to_y);
31505 + st.current_y = to_y;
31511 - hb_position_t to_x, hb_position_t to_y)
31515 + float to_x, float to_y)
31519 - equal_to_current (to_x, to_y))
31522 - funcs->cubic_to (control1_x, control1_y, control2_x, control2_y, to_x, to_y, user_data);
31524 - current_y = to_y;
31526 + emit_cubic_to (draw_data, st, control1_x, control1_y, control2_x, control2_y, to_x, to_y);
31528 + st.current_y = to_y;
31586 + void move_to (float to_x, float to_y)
31590 + to_x, to_y);
31593 + to_x + to_y * slant, to_y);
31595 + void line_to (float to_x, float to_y)
31599 + to_x, to_y);
31602 + to_x + to_y * slant, to_y);
31606 + float to_x, float to_y)
31611 + to_x, to_y);
31615 + to_x + to_y * slant, to_y);
31620 + float to_x, float to_y)
31626 + to_x, to_y);
31631 + to_x + to_y * slant, to_y);
31686 + float to_x, float to_y,
31694 + x_scale * to_x, y_scale * to_y);
31700 + float to_x, float to_y,
31711 + x_scale * to_x, y_scale * to_y);
31718 + float to_x, float to_y,
31730 + x_scale * to_x, y_scale * to_y);
31738 + float to_x, float to_y,
31751 + x_scale * to_x, y_scale * to_y);
43678 -move_to (hb_position_t to_x, hb_position_t to_y, user_data_t &user_data)
43681 + float to_x, float to_y,
43684 - fprintf (user_data.f, "M%d,%d", to_x, user_data.ascender - to_y);
43685 + fprintf (draw_data->f, "M%g,%g", to_x, draw_data->ascender - to_y);
43689 -line_to (hb_position_t to_x, hb_position_t to_y, user_data_t &user_data)
43692 + float to_x, float to_y,
43695 - fprintf (user_data.f, "L%d,%d", to_x, user_data.ascender - to_y);
43696 + fprintf (draw_data->f, "L%g,%g", to_x, draw_data->ascender - to_y);
43701 - hb_position_t to_x, hb_position_t to_y,
43706 + float to_x, float to_y,
43710 - to_x, user_data.ascender - to_y);
43712 + to_x, draw_data->ascender - to_y);
43718 - hb_position_t to_x, hb_position_t to_y,
43724 + float to_x, float to_y,
43729 - to_x, user_data.ascender - to_y);
43732 + to_x, draw_data->ascender - to_y);
44633 -move_to (hb_position_t to_x, hb_position_t to_y, user_data_t *user_data)
44636 + float to_x, float to_y,
44644 - user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed);
44649 + draw_data->consumed += _hb_itoa (to_y, draw_data->str + draw_data->consumed);
44653 -line_to (hb_position_t to_x, hb_position_t to_y, user_data_t *user_data)
44656 + float to_x, float to_y,
44663 - user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed);
44668 + draw_data->consumed += _hb_itoa (to_y, draw_data->str + draw_data->consumed);
44673 - hb_position_t to_x, hb_position_t to_y,
44678 + float to_x, float to_y,
44690 - user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed);
44699 + draw_data->consumed += _hb_itoa (to_y, draw_data->str + draw_data->consumed);
44705 - hb_position_t to_x, hb_position_t to_y,
44711 + float to_x, float to_y,
44726 - user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed);
44739 + draw_data->consumed += _hb_itoa (to_y, draw_data->str + draw_data->consumed);
46423 -_move_to (hb_position_t to_x, hb_position_t to_y, void *user_data_)
46426 + float to_x, float to_y,
46433 - user_data->path_start_y = user_data->path_last_y = to_y;
46437 + draw_data->path_start_y = draw_data->path_last_y = to_y;
46441 -_line_to (hb_position_t to_x, hb_position_t to_y, void *user_data_)
46444 + float to_x, float to_y,
46449 - assert (user_data->path_last_x != to_x || user_data->path_last_y != to_y);
46452 - user_data->path_last_y = to_y;
46457 + draw_data->path_last_y = to_y;
46462 - hb_position_t to_x, hb_position_t to_y, void *user_data_)
46466 + float to_x, float to_y,
46472 - user_data->path_last_x != to_x || user_data->path_last_y != to_y);
46475 - user_data->path_last_y = to_y;
46480 + draw_data->path_last_y = to_y;
46486 - hb_position_t to_x, hb_position_t to_y, void *user_data_)
46491 + float to_x, float to_y,
46498 - user_data->path_last_x != to_x || user_data->path_last_y != to_y);
46501 - user_data->path_last_y = to_y;
46506 + draw_data->path_last_y = to_y;
72157 + float to_x, float to_y,
72161 + (double) to_x, (double) to_y);
72168 + float to_x, float to_y,
72172 + (double) to_x, (double) to_y);
72181 + float to_x, float to_y,
72187 + (double) to_x, (double) to_y);