Lines Matching defs:rc
1509 U_RECT16 rc; // any rectangle, usually a bounding rectangle
2022 U_RECT16 rc;
2023 nSize = U_WMREXCLUDECLIPRECT_get(contents, &rc);
2034 tmp_path << "M " << pix_to_xy( d, rc.left , rc.top ) << " ";
2035 tmp_path << "L " << pix_to_xy( d, rc.right, rc.top ) << " ";
2036 tmp_path << "L " << pix_to_xy( d, rc.right, rc.bottom ) << " ";
2037 tmp_path << "L " << pix_to_xy( d, rc.left, rc.bottom ) << " ";
2050 nSize = U_WMRINTERSECTCLIPRECT_get(contents, &rc);
2053 tmp_path << "M " << pix_to_xy( d, rc.left , rc.top ) << " ";
2054 tmp_path << "L " << pix_to_xy( d, rc.right, rc.top ) << " ";
2055 tmp_path << "L " << pix_to_xy( d, rc.right, rc.bottom ) << " ";
2056 tmp_path << "L " << pix_to_xy( d, rc.left, rc.bottom ) << " ";
2069 nSize = U_WMRARC_get(contents, &ArcStart, &ArcEnd, &rc);
2074 int stat = wmr_arc_points(rc, ArcStart, ArcEnd,&f1, f2, ¢er, &start, &end, &size);
2094 nSize = U_WMRELLIPSE_get(contents, &rc);
2096 double cx = pix_to_x_point( d, (rc.left + rc.right)/2.0, (rc.bottom + rc.top)/2.0 );
2097 double cy = pix_to_y_point( d, (rc.left + rc.right)/2.0, (rc.bottom + rc.top)/2.0 );
2098 double rx = pix_to_abs_size( d, std::abs(rc.right - rc.left )/2.0 );
2099 double ry = pix_to_abs_size( d, std::abs(rc.top - rc.bottom)/2.0 );
2122 nSize = U_WMRPIE_get(contents, &ArcStart, &ArcEnd, &rc);
2126 if(!wmr_arc_points(rc, ArcStart, ArcEnd, &f1, f2, ¢er, &start, &end, &size)){
2147 nSize = U_WMRRECTANGLE_get(contents, &rc);
2148 U_sanerect16(rc, &left, &top, &right, &bottom);
2167 nSize = U_WMRROUNDRECT_get(contents, &Width, &Height, &rc);
2168 U_sanerect16(rc, &left, &top, &right, &bottom);
2491 nSize = U_WMRCHORD_get(contents, &ArcStart, &ArcEnd, &rc);
2495 if(!wmr_arc_points(rc, ArcStart, ArcEnd, &f1, f2, ¢er, &start, &end, &size)){
2522 nSize = U_WMREXTTEXTOUT_get(contents, &Dst, &tlen, &Opts, &text, &dx, &rc );