Searched refs:draw_rc (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/pdf/ |
D | control.cc | 55 pp::Rect draw_rc = pp::Rect(image_data->size()).Intersect(rect()); in PaintMultipleRects() local 56 pp::Rect ctrl_rc = pp::Rect(draw_rc.point() - rect().point(), draw_rc.size()); in PaintMultipleRects() 57 CopyImage(*image_data, draw_rc, &buffer, ctrl_rc, false); in PaintMultipleRects() 69 pp::Rect draw_rc = rect().Intersect(*iter); in PaintMultipleRects() local 70 if (!draw_rc.IsEmpty()) { in PaintMultipleRects() 72 pp::Rect src_rc = draw_rc; in PaintMultipleRects() 74 CopyImage(buffer, src_rc, image_data, draw_rc, false); in PaintMultipleRects()
|
D | page_indicator.cc | 59 pp::Rect draw_rc = rc.Intersect(rect()); in Paint() local 60 if (draw_rc.IsEmpty()) in Paint() 87 pp::Point origin = draw_rc.point(); in Paint() 88 draw_rc.Offset(-rect().x(), -rect().y()); in Paint() 89 AlphaBlend(buffer, draw_rc, image_data, origin, transparency()); in Paint()
|
D | button.cc | 50 pp::Rect draw_rc = rc.Intersect(rect()); in Paint() local 51 if (draw_rc.IsEmpty()) in Paint() 54 pp::Point origin = draw_rc.point(); in Paint() 55 draw_rc.Offset(-rect().x(), -rect().y()); in Paint() 57 AlphaBlend(GetCurrentImage(), draw_rc, image_data, origin, transparency()); in Paint()
|
D | draw_utils.cc | 142 pp::Rect draw_rc = gradient_rc.Intersect(dirty_rc); in GradientFill() local 143 if (draw_rc.IsEmpty()) in GradientFill() 152 pp::Rect copy_rc(draw_rc); in GradientFill() 154 AlphaBlend(gradient, copy_rc, image, draw_rc.point(), transparency); in GradientFill() 285 pp::Rect draw_rc = shadow_rc.Intersect(clip_rc); in PaintShadow() local 286 if (draw_rc.IsEmpty()) in PaintShadow() 290 for (int32_t y = draw_rc.y(); y < draw_rc.bottom(); y++) { in PaintShadow() 291 for (int32_t x = draw_rc.x(); x < draw_rc.right(); x++) { in PaintShadow()
|
D | thumbnail_control.cc | 148 pp::Rect draw_rc = rc.Intersect(control_rc); in Paint() local 149 if (draw_rc.IsEmpty()) in Paint() 152 pp::Rect gradient_rc(control_rc.x(), draw_rc.y(), in Paint() 153 control_rc.width(), draw_rc.height()); in Paint() 156 draw_rc, in Paint() 173 draw_rc, in Paint() 181 pp::Rect draw_page_rc = page_rc.Intersect(draw_rc); in Paint()
|
D | progress_control.cc | 142 pp::Rect draw_rc = rect().Intersect(rc); in Paint() local 143 if (draw_rc.IsEmpty()) in Paint() 161 pp::Rect image_draw_rc(draw_rc); in Paint() 166 draw_rc.point(), in Paint()
|
D | instance.cc | 882 pp::Rect draw_rc = pp::Rect( in OnPaint() local 887 AlphaBlend(autoscroll_anchor_, draw_rc, in OnPaint()
|