HomeSort by relevance Sort by last modified time
    Searched refs:fillRect (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /external/webkit/Source/WebCore/platform/graphics/wince/
GradientWinCE.cpp 49 c->fillRect(r, this);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 38 g.fillRect(0, 0, image.getWidth(), image.getHeight());
49 g.fillRect(0, 0, image.getWidth(), image.getHeight());
60 g.fillRect(0, 0, image.getWidth(), image.getHeight());
73 g.fillRect(0, 0, image.getWidth(), image.getHeight());
75 g.fillRect(25, 25, 50, 50);
90 g.fillRect(0, 0, image.getWidth(), image.getHeight());
92 g.fillRect(25, 25, 50, 50);
107 g.fillRect(0, 0, image.getWidth(), image.getHeight());
109 g.fillRect(25, 25, 50, 50);
124 g.fillRect(0, 0, image.getWidth(), image.getHeight())
    [all...]
  /sdk/rule_api/src/com/android/ide/common/api/
IGraphics.java 92 void fillRect(int x1, int y1, int x2, int y2);
98 void fillRect(@NonNull Point p1, @NonNull Point p2);
104 void fillRect(@NonNull Rect r);
  /external/webkit/Source/WebKit/android/jni/
WebFrameView.cpp 65 gc->fillRect(rect);
  /external/webkit/Source/WebCore/platform/graphics/
GeneratedImage.cpp 46 context->fillRect(FloatRect(FloatPoint(), m_size), *m_generator.get());
65 graphicsContext->fillRect(FloatRect(FloatPoint(), adjustedSize), *m_generator.get());
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ColorTexture.java 39 canvas.fillRect(x, y, w, h, mColor);
GLCanvas.java 80 public void fillRect(float x, float y, float width, float height, int color);
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLCanvasMock.java 22 // fillRect
49 public void fillRect(float x, float y, float width, float height, int color) {
  /sdk/draw9patch/src/com/android/draw9patch/ui/
GradientPanel.java 43 g2.fillRect(clip.x, clip.y, clip.width, clip.height);
  /external/proguard/src/proguard/gui/splash/
BufferedSprite.java 117 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null));
123 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null));
ClipSprite.java 66 graphics.fillRect(0, 0, clip.width, clip.height);
  /external/webkit/Source/WebKit/chromium/tests/
TransparencyWinTest.cpp 61 FillRect(dc, &innerRc,
315 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)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
SummaryBar.js 101 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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 94 public void fillRect(int x1, int y1, int x2, int y2) {
95 mDrawn.add("fillRect(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")");
99 public void fillRect(Point p1, Point p2) {
100 mDrawn.add("fillRect(" + p1 + "," + p2 + ")");
104 public void fillRect(Rect r) {
105 mDrawn.add("fillRect(" + rectToString(r) + ")");
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 109 virtual void fillRect(const FloatRect& rect);
110 virtual void fillRect(const FloatRect& rect, const Color& color);
PlatformGraphicsContextSkia.h 93 virtual void fillRect(const FloatRect& rect);
94 virtual void fillRect(const FloatRect& rect, const Color& color);
PlatformGraphicsContext.h 123 virtual void fillRect(const FloatRect& rect) = 0;
124 void fillRect(const FloatRect& rect, const Color& color, ColorSpace) {
125 fillRect(rect, color);
127 virtual void fillRect(const FloatRect& rect, const Color& color) = 0;
PlatformGraphicsContextRecording.cpp 295 fillRect(rect, backgroundColor);
300 fillRect(IntRect(x, y, w, t), backgroundColor);
301 fillRect(IntRect(x, y+h-t, w, t), backgroundColor);
302 fillRect(IntRect(x, y+t, t, h-t2), backgroundColor);
303 fillRect(IntRect(x+w-t, y+t, t, h-t2), backgroundColor);
334 void PlatformGraphicsContextRecording::fillRect(const FloatRect& rect)
336 mGraphicsOperationCollection->append(new GraphicsOperation::FillRect(rect));
339 void PlatformGraphicsContextRecording::fillRect(const FloatRect& rect,
342 GraphicsOperation::FillRect* operation = new GraphicsOperation::FillRect(rect)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.h 62 void fillRect(const FloatRect&, const Color&, ColorSpace);
63 void fillRect(const FloatRect&);
  /external/webkit/Source/WebCore/platform/
ScrollbarTheme.h 80 static void defaultPaintScrollCorner(GraphicsContext* context, const IntRect& cornerRect) { context->fillRect(cornerRect, Color::white, ColorSpaceDeviceRGB); }
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEFlood.cpp 82 resultImage->context()->fillRect(FloatRect(FloatPoint(), absolutePaintRect().size()), color, ColorSpaceDeviceRGB);
SourceAlpha.cpp 70 filterContext->fillRect(imageRect, Color::black, ColorSpaceDeviceRGB);
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
WebNotificationPresenter.cpp 36 painter.fillRect(0, 0, 300, 100, Qt::lightGray);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp 103 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/
WebThemeControlDRTWin.h 139 void drawProgressBar(const SkIRect& fillRect);

Completed in 613 milliseconds

1 2 3 4 5 6