HomeSort by relevance Sort by last modified time
    Searched defs:DrawRect (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/printing/
printed_document_win.cc 28 void DrawRect(HDC context, gfx::Rect rect) {
  /external/chromium_org/gpu/command_buffer/tests/
occlusion_query_unittest.cc 27 void DrawRect(float x, float z, float scale, float* color);
58 void OcclusionQueryTest::DrawRect(float x, float z, float scale, float* color) {
115 DrawRect(0, 0.0f, 0.50f, red);
119 DrawRect(-0.125f, 0.1f, 0.25f, blue);
132 DrawRect(1, 0.0f, 0.50f, red);
135 DrawRect(-0.125f, 0.1f, 0.25f, blue);
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContextTest.cpp 34 DrawRect,
45 virtual void drawRect(const SkRect& rect, const SkPaint& paint) OVERRIDE
48 Operation operation = { DrawRect, rect };
127 EXPECT_EQ(MockCanvas::DrawRect, operations[firstIndex].type);
133 EXPECT_EQ(MockCanvas::DrawRect, operations[secondIndex].type);
151 EXPECT_EQ(MockCanvas::DrawRect, operations[firstIndex].type);
  /external/chromium_org/ui/gfx/
canvas.cc 174 DrawRect(Rect(rect.x(), rect.y(), rect.width(), 1), paint);
175 DrawRect(Rect(rect.x(), rect.y() + rect.height() - 1, rect.width(), 1),
177 DrawRect(Rect(rect.x(), rect.y(), 1, rect.height()), paint);
178 DrawRect(Rect(rect.x() + rect.width() - 1, rect.y(), 1, rect.height()),
248 DrawRect(rect, paint);
251 void Canvas::DrawRect(const Rect& rect, SkColor color) {
252 DrawRect(rect, color, SkXfermode::kSrcOver_Mode);
255 void Canvas::DrawRect(const Rect& rect,
267 DrawRect(rect, paint);
270 void Canvas::DrawRect(const Rect& rect, const SkPaint& paint)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkCanvas.cpp     [all...]

Completed in 639 milliseconds