Home
last modified time | relevance | path

Searched refs:fillRect (Results 1 – 25 of 119) sorted by relevance

12345

/external/webkit/Source/WebKit/chromium/tests/
DTransparencyWinTest.cpp315 src->context()->fillRect(fullRect, red, ColorSpaceDeviceRGB); in TEST()
318 src->context()->fillRect(rightHalf, green, ColorSpaceDeviceRGB); in TEST()
330 helper.context()->fillRect(inner, Color(0x7f000000), ColorSpaceDeviceRGB); in TEST()
368 src->context()->fillRect(fullRect, white, ColorSpaceDeviceRGB); in TEST()
388 helper.context()->fillRect(bottomRight, green, ColorSpaceDeviceRGB); in TEST()
407 src->context()->fillRect(fullRect, white, ColorSpaceDeviceRGB); in TEST()
425 src->context()->fillRect(blackRect, black, ColorSpaceDeviceRGB); in TEST()
439 helper.context()->fillRect(helper.drawRect(), Color(0x7f7f0000), ColorSpaceDeviceRGB); in TEST()
486 src->context()->fillRect(topRect, white, ColorSpaceDeviceRGB); in TEST()
489 src->context()->fillRect(bottomRect, red, ColorSpaceDeviceRGB); in TEST()
[all …]
/external/chromium/chrome/browser/resources/gpu_internals/
Dfast_rect_renderer.js79 fillRect: function(x, w, colorId) { method in FastRectRenderer
98 this.ctx_.fillRect(x, this.y_, w, this.h_);
109 this.ctx_.fillRect(this.mergeStartX_, this.y_,
/external/chromium-trace/src/tracing/
Dfast_rect_renderer.js79 fillRect: function(x, w, colorId) { method in FastRectRenderer
98 this.ctx_.fillRect(x, this.y_, w, this.h_);
109 this.ctx_.fillRect(this.mergeStartX_, this.y_,
/external/webkit/Source/WebCore/inspector/front-end/
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/android/context/
DPlatformGraphicsContextRecording.cpp295 fillRect(rect, backgroundColor); in drawHighlightForText()
300 fillRect(IntRect(x, y, w, t), backgroundColor); in drawHighlightForText()
301 fillRect(IntRect(x, y+h-t, w, t), backgroundColor); in drawHighlightForText()
302 fillRect(IntRect(x, y+t, t, h-t2), backgroundColor); in drawHighlightForText()
303 fillRect(IntRect(x+w-t, y+t, t, h-t2), backgroundColor); in drawHighlightForText()
334 void PlatformGraphicsContextRecording::fillRect(const FloatRect& rect) in fillRect() function in WebCore::PlatformGraphicsContextRecording
339 void PlatformGraphicsContextRecording::fillRect(const FloatRect& rect, in fillRect() function in WebCore::PlatformGraphicsContextRecording
DPlatformGraphicsContext.h123 virtual void fillRect(const FloatRect& rect) = 0;
124 void fillRect(const FloatRect& rect, const Color& color, ColorSpace) { in fillRect() function
125 fillRect(rect, color); in fillRect()
127 virtual void fillRect(const FloatRect& rect, const Color& color) = 0;
DPlatformGraphicsContextSkia.cpp343 fillRect(rect, backgroundColor); in drawHighlightForText()
348 fillRect(IntRect(x, y, w, t), backgroundColor); in drawHighlightForText()
349 fillRect(IntRect(x, y+h-t, w, t), backgroundColor); in drawHighlightForText()
350 fillRect(IntRect(x, y+t, t, h-t2), backgroundColor); in drawHighlightForText()
351 fillRect(IntRect(x+w-t, y+t, t, h-t2), backgroundColor); in drawHighlightForText()
498 void PlatformGraphicsContextSkia::fillRect(const FloatRect& rect) in fillRect() function in WebCore::PlatformGraphicsContextSkia
505 void PlatformGraphicsContextSkia::fillRect(const FloatRect& rect, in fillRect() function in WebCore::PlatformGraphicsContextSkia
DGraphicsContextAndroid.cpp232 void GraphicsContext::fillRect(const FloatRect& rect) in fillRect() function in WebCore::GraphicsContext
238 platformContext()->fillRect(rect); in fillRect()
241 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) in fillRect() function in WebCore::GraphicsContext
247 platformContext()->fillRect(rect, color, colorSpace); in fillRect()
DPlatformGraphicsContextSkia.h93 virtual void fillRect(const FloatRect& rect);
94 virtual void fillRect(const FloatRect& rect, const Color& color);
DPlatformGraphicsContextRecording.h109 virtual void fillRect(const FloatRect& rect);
110 virtual void fillRect(const FloatRect& rect, const Color& color);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
DWebPopupMenuWin.cpp103 … notSelectedBackingStoreContext->fillRect(itemRect, optionBackgroundColor, ColorSpaceDeviceRGB); in setUpPlatformData()
104 … selectedBackingStoreContext->fillRect(itemRect, activeOptionBackgroundColor, ColorSpaceDeviceRGB); in setUpPlatformData()
110 … notSelectedBackingStoreContext->fillRect(separatorRect, optionTextColor, ColorSpaceDeviceRGB); in setUpPlatformData()
111 … selectedBackingStoreContext->fillRect(separatorRect, activeOptionTextColor, ColorSpaceDeviceRGB); in setUpPlatformData()
/external/webkit/Source/WebCore/platform/graphics/
DGeneratedImage.cpp46 context->fillRect(FloatRect(FloatPoint(), m_size), *m_generator.get()); in draw()
65 graphicsContext->fillRect(FloatRect(FloatPoint(), adjustedSize), *m_generator.get()); in drawPattern()
DGraphicsContext.h328 void fillRect(const FloatRect&);
329 void fillRect(const FloatRect&, const Color&, ColorSpace);
330 void fillRect(const FloatRect&, Generator&);
457 void fillRect(const FloatRect&, const Gradient*);
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsContextQt.cpp378 p->fillRect(FloatRect(p1.x() - width / 2, p1.y() - width, width, width), QColor(color)); in drawLine()
379 p->fillRect(FloatRect(p2.x() - width / 2, p2.y(), width, width), QColor(color)); in drawLine()
381 p->fillRect(FloatRect(p1.x() - width, p1.y() - width / 2, width, width), QColor(color)); in drawLine()
382 p->fillRect(FloatRect(p2.x(), p2.y() - width / 2, width, width), QColor(color)); in drawLine()
666 void GraphicsContext::fillRect(const FloatRect& rect) in fillRect() function in WebCore::GraphicsContext
681 shadowPainter->fillRect(normalizedRect, shadow->m_color); in fillRect()
690 shadowPainter->fillRect(normalizedRect, brush); in fillRect()
692 shadowPainter->fillRect(normalizedRect, shadow->m_color); in fillRect()
695 p->fillRect(normalizedRect, brush); in fillRect()
702 shadowPainter->fillRect(normalizedRect, p->brush()); in fillRect()
[all …]
/external/proguard/src/proguard/gui/splash/
DBufferedSprite.java117 … bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null)); in paint()
123 … bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null)); in paint()
/external/webkit/Source/WebCore/platform/graphics/chromium/
DGLES2Canvas.h62 void fillRect(const FloatRect&, const Color&, ColorSpace);
63 void fillRect(const FloatRect&);
/external/webkit/Source/WebCore/platform/gtk/
DRenderThemeGtk.cpp487 context->fillRect(FloatRect(rect), m_panelColor, ColorSpaceDeviceRGB); in paintMediaButton()
530 context->fillRect(FloatRect(r), m_panelColor, ColorSpaceDeviceRGB); in paintMediaSliderTrack()
531 context->fillRect(FloatRect(IntRect(r.x(), r.y() + (r.height() - m_mediaSliderHeight) / 2, in paintMediaSliderTrack()
579 context->fillRect(rangeRect); in paintMediaSliderTrack()
596 context->fillRect(FloatRect(rect), m_panelColor, ColorSpaceDeviceRGB); in paintMediaVolumeSliderContainer()
619 context->fillRect(FloatRect(rect), m_panelColor, ColorSpaceDeviceRGB); in paintMediaCurrentTime()
/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
Dloupe.js105 targetContext.fillRect(0, 0, targetCanvas.width, targetCanvas.height);
131 targetContext.fillRect(
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DFindController.cpp300 graphicsContext.fillRect(dirtyRect, overlayBackgroundColor(fractionFadedIn), ColorSpaceSRGB); in drawRect()
312 graphicsContext.fillRect(whiteFrameRect); in drawRect()
321 graphicsContext.fillRect(rects[i]); in drawRect()
/external/webkit/Source/WebCore/platform/graphics/wince/
DGradientWinCE.cpp49 c->fillRect(r, this); in fill()
/external/webkit/Source/WebKit/android/jni/
DWebFrameView.cpp65 gc->fillRect(rect); in draw()
/external/webkit/Source/WebCore/rendering/
DRenderThemeWinCE.cpp382 paintInfo.context->fillRect(cancelBounds, buttonColor, ColorSpaceDeviceRGB); in paintSearchFieldCancelButton()
496 i.context->fillRect(r); in paintSliderTrack()
525 i.context->fillRect(intRect); in paintSliderThumb()
551 paintInfo.context->fillRect(imRect); in paintMediaFullscreenButton()
594 paintInfo.context->fillRect(imRect); in paintMediaPlayButton()
596 paintInfo.context->fillRect(imRect); in paintMediaPlayButton()
DRenderFrameSet.cpp94 …context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->visitedDependentColor(CSSPro… in paintColumnBorder()
99 …context->fillRect(IntRect(borderRect.location(), IntSize(1, height())), borderStartEdgeColor(), co… in paintColumnBorder()
100 …context->fillRect(IntRect(IntPoint(borderRect.maxX() - 1, borderRect.y()), IntSize(1, height())), … in paintColumnBorder()
114 …context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->visitedDependentColor(CSSPro… in paintRowBorder()
119 …context->fillRect(IntRect(borderRect.location(), IntSize(width(), 1)), borderStartEdgeColor(), col… in paintRowBorder()
120 …context->fillRect(IntRect(IntPoint(borderRect.x(), borderRect.maxY() - 1), IntSize(width(), 1)), b… in paintRowBorder()
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
DCCHeadsUpDisplay.cpp132 ctx->fillRect(FloatRect(0, 0, hudSize.width(), hudSize.height())); in drawHudContents()
173 ctx->fillRect(FloatRect(2, top, textWidth + graphWidth, height)); in drawFPSCounter()
/external/chromium/chrome/browser/ui/cocoa/
Dprofile_menu_button.mm238 NSRect fillRect = NSInsetRect(tabRect, 1, 0);
239 fillRect.size.height -= 1;
240 fillRect.origin.y += 1;
241 NSBezierPath* fillPath = [self tabPathWithRect:fillRect

12345