Searched defs:draw_rc (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/pdf/
H A Dbutton.cc50 pp::Rect draw_rc = rc.Intersect(rect());
51 if (draw_rc.IsEmpty())
54 pp::Point origin = draw_rc.point();
55 draw_rc.Offset(-rect().x(), -rect().y());
57 AlphaBlend(GetCurrentImage(), draw_rc, image_data, origin, transparency()); local
H A Dcontrol.cc55 pp::Rect draw_rc = pp::Rect(image_data->size()).Intersect(rect());
56 pp::Rect ctrl_rc = pp::Rect(draw_rc.point() - rect().point(), draw_rc.size());
57 CopyImage(*image_data, draw_rc, &buffer, ctrl_rc, false);
69 pp::Rect draw_rc = rect().Intersect(*iter); local
70 if (!draw_rc.IsEmpty()) {
72 pp::Rect src_rc = draw_rc;
74 CopyImage(buffer, src_rc, image_data, draw_rc, false);
H A Dthumbnail_control.cc148 pp::Rect draw_rc = rc.Intersect(control_rc); local
149 if (draw_rc.IsEmpty())
152 pp::Rect gradient_rc(control_rc.x(), draw_rc.y(),
153 control_rc.width(), draw_rc.height());
156 draw_rc,
173 draw_rc,
181 pp::Rect draw_page_rc = page_rc.Intersect(draw_rc);
H A Ddraw_utils.cc142 pp::Rect draw_rc = gradient_rc.Intersect(dirty_rc); local
143 if (draw_rc.IsEmpty())
152 pp::Rect copy_rc(draw_rc);
154 AlphaBlend(gradient, copy_rc, image, draw_rc.point(), transparency);
285 pp::Rect draw_rc = shadow_rc.Intersect(clip_rc); local
286 if (draw_rc.IsEmpty())
290 for (int32_t y = draw_rc.y(); y < draw_rc.bottom(); y++) {
291 for (int32_t x = draw_rc.x(); x < draw_rc
[all...]
H A Dinstance.cc882 pp::Rect draw_rc = pp::Rect( local
887 AlphaBlend(autoscroll_anchor_, draw_rc,

Completed in 89 milliseconds