Searched refs:fillRect (Results 1 - 25 of 107) sorted by relevance

12345

/external/chromium/chrome/browser/resources/gpu_internals/
H A Dfast_rect_renderer.js12 * we never issue a canvas fillRect for them. It turns out Javascript can
63 * Changes the y position and height for subsequent fillRect
64 * calls. x and width are specifieid on the fillRect calls.
79 fillRect: function(x, w, colorId) {
98 this.ctx_.fillRect(x, this.y_, w, this.h_);
103 * Commits any pending fillRect operations to the underlying graphics
109 this.ctx_.fillRect(this.mergeStartX_, this.y_,
/external/chromium-trace/trace-viewer/src/
H A Dfast_rect_renderer.js12 * we never issue a canvas fillRect for them. It turns out Javascript can
58 * Changes the y position and height for subsequent fillRect
59 * calls. x and width are specifieid on the fillRect calls.
74 fillRect: function(x, w, colorId) {
92 this.ctx_.fillRect(x, this.y_, w, this.h_);
97 * Commits any pending fillRect operations to the underlying graphics
103 this.ctx_.fillRect(this.mergeStartX_, this.y_,
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGradientWinCE.cpp49 c->fillRect(r, this);
/external/webkit/Source/WebKit/android/jni/
H A DWebFrameView.cpp64 gc->fillRect(rect);
/external/webkit/Source/WebCore/platform/graphics/
H A DGeneratedImage.cpp46 context->fillRect(FloatRect(FloatPoint(), m_size), *m_generator.get());
65 graphicsContext->fillRect(FloatRect(FloatPoint(), adjustedSize), *m_generator.get());
/external/proguard/src/proguard/gui/splash/
H A DBufferedSprite.java117 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null));
123 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null));
H A DClipSprite.java66 graphics.fillRect(0, 0, clip.width, clip.height);
/external/webkit/Source/WebKit/chromium/tests/
H A DTransparencyWinTest.cpp315 src->context()->fillRect(fullRect, red, ColorSpaceDeviceRGB);
318 src->context()->fillRect(rightHalf, green, ColorSpaceDeviceRGB);
330 helper.context()->fillRect(inner, Color(0x7f000000), ColorSpaceDeviceRGB);
368 src->context()->fillRect(fullRect, white, ColorSpaceDeviceRGB);
388 helper.context()->fillRect(bottomRight, green, ColorSpaceDeviceRGB);
407 src->context()->fillRect(fullRect, white, ColorSpaceDeviceRGB);
425 src->context()->fillRect(blackRect, black, ColorSpaceDeviceRGB);
439 helper.context()->fillRect(helper.drawRect(), Color(0x7f7f0000), ColorSpaceDeviceRGB);
486 src->context()->fillRect(topRect, white, ColorSpaceDeviceRGB);
489 src->context()->fillRect(bottomRec
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DSummaryBar.js101 ctx.fillRect(0, 0, 13, 13);
108 ctx.fillRect(0, 0, 13, 13);
115 ctx.fillRect(0, 0, 13, 13);
251 ctx.fillRect(x + previousSegmentsWidth, y, segmentWidth, h);
287 ctx.fillRect(x, y, w, h);
290 ctx.fillRect(x, y, w, h);
324 ctx.fillRect(x, y, w, h);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGLES2Canvas.h62 void fillRect(const FloatRect&, const Color&, ColorSpace);
63 void fillRect(const FloatRect&);
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContext.h126 virtual void fillRect(const FloatRect& rect) = 0;
127 void fillRect(const FloatRect& rect, const Color& color, ColorSpace) { function in class:WebCore::PlatformGraphicsContext
128 fillRect(rect, color);
130 virtual void fillRect(const FloatRect& rect, const Color& color) = 0;
H A DPlatformGraphicsContextSkia.h94 virtual void fillRect(const FloatRect& rect);
95 virtual void fillRect(const FloatRect& rect, const Color& color);
H A DPlatformGraphicsContextSkia.cpp345 fillRect(rect, backgroundColor);
350 fillRect(IntRect(x, y, w, t), backgroundColor);
351 fillRect(IntRect(x, y+h-t, w, t), backgroundColor);
352 fillRect(IntRect(x, y+t, t, h-t2), backgroundColor);
353 fillRect(IntRect(x+w-t, y+t, t, h-t2), backgroundColor);
500 void PlatformGraphicsContextSkia::fillRect(const FloatRect& rect) function in class:WebCore::PlatformGraphicsContextSkia
507 void PlatformGraphicsContextSkia::fillRect(const FloatRect& rect, function in class:WebCore::PlatformGraphicsContextSkia
531 // though perhaps we'll find we need to do this as well in fillRect(r)
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEFlood.cpp82 resultImage->context()->fillRect(FloatRect(FloatPoint(), absolutePaintRect().size()), color, ColorSpaceDeviceRGB);
H A DSourceAlpha.cpp70 filterContext->fillRect(imageRect, Color::black, ColorSpaceDeviceRGB);
H A DFETile.cpp89 filterContext->fillRect(FloatRect(FloatPoint(), absolutePaintRect().size()));
/external/webkit/Source/WebKit/qt/examples/platformplugin/
H A DWebNotificationPresenter.cpp36 painter.fillRect(0, 0, 300, 100, Qt::lightGray);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
H A DWebPopupMenuWin.cpp103 notSelectedBackingStoreContext->fillRect(itemRect, optionBackgroundColor, ColorSpaceDeviceRGB);
104 selectedBackingStoreContext->fillRect(itemRect, activeOptionBackgroundColor, ColorSpaceDeviceRGB);
110 notSelectedBackingStoreContext->fillRect(separatorRect, optionTextColor, ColorSpaceDeviceRGB);
111 selectedBackingStoreContext->fillRect(separatorRect, activeOptionTextColor, ColorSpaceDeviceRGB);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebThemeControlDRTWin.h139 void drawProgressBar(const SkIRect& fillRect);
/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
H A Dloupe.js105 targetContext.fillRect(0, 0, targetCanvas.width, targetCanvas.height);
131 targetContext.fillRect(
/external/webkit/Source/WebCore/platform/
H A DScrollbarTheme.h80 static void defaultPaintScrollCorner(GraphicsContext* context, const IntRect& cornerRect) { context->fillRect(cornerRect, Color::white, ColorSpaceDeviceRGB); }
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGradientQt.cpp116 context->platformContext()->fillRect(rect, *platformGradient());
H A DGraphicsContextQt.cpp320 // This is only used to draw borders (real fill is done via fillRect), and
378 p->fillRect(FloatRect(p1.x() - width / 2, p1.y() - width, width, width), QColor(color));
379 p->fillRect(FloatRect(p2.x() - width / 2, p2.y(), width, width), QColor(color));
381 p->fillRect(FloatRect(p1.x() - width, p1.y() - width / 2, width, width), QColor(color));
382 p->fillRect(FloatRect(p2.x(), p2.y() - width / 2, width, width), QColor(color));
666 void GraphicsContext::fillRect(const FloatRect& rect) function in class:WebCore::GraphicsContext
681 shadowPainter->fillRect(normalizedRect, shadow->m_color);
690 shadowPainter->fillRect(normalizedRect, brush);
692 shadowPainter->fillRect(normalizedRect, shadow->m_color);
695 p->fillRect(normalizedRec
719 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) function in class:WebCore::GraphicsContext
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk.cpp487 context->fillRect(FloatRect(rect), m_panelColor, ColorSpaceDeviceRGB);
530 context->fillRect(FloatRect(r), m_panelColor, ColorSpaceDeviceRGB);
531 context->fillRect(FloatRect(IntRect(r.x(), r.y() + (r.height() - m_mediaSliderHeight) / 2,
579 context->fillRect(rangeRect);
596 context->fillRect(FloatRect(rect), m_panelColor, ColorSpaceDeviceRGB);
619 context->fillRect(FloatRect(rect), m_panelColor, ColorSpaceDeviceRGB);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DFindController.cpp300 graphicsContext.fillRect(dirtyRect, overlayBackgroundColor(fractionFadedIn), ColorSpaceSRGB);
312 graphicsContext.fillRect(whiteFrameRect);
321 graphicsContext.fillRect(rects[i]);

Completed in 1049 milliseconds

12345