/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
ColorTexture.java | 39 canvas.fillRect(x, y, w, h, mColor);
|
GLCanvas.java | 93 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);
|
/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) {
|
GLCanvasStub.java | 51 public void fillRect(float x, float y, float width, float height, int color) {}
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestGraphics.java | 85 public void fillRect(int x1, int y1, int x2, int y2) { 86 mDrawn.add("fillRect(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")"); 89 public void fillRect(Point p1, Point p2) { 90 mDrawn.add("fillRect(" + p1 + "," + p2 + ")"); 93 public void fillRect(Rect r) { 94 mDrawn.add("fillRect(" + rectToString(r) + ")");
|
/sdk/rule_api/src/com/android/ide/common/api/ |
IGraphics.java | 88 void fillRect(int x1, int y1, int x2, int y2); 94 void fillRect(Point p1, Point p2); 100 void fillRect(Rect r);
|
/external/skia/src/images/ |
SkMovie_gif.cpp | 205 static void fillRect(SkBitmap* bm, GifWord left, GifWord top, GifWord width, GifWord height, 320 fillRect(bm, cur->ImageDesc.Left, cur->ImageDesc.Top,
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
GraphicsContextHaiku.cpp | 96 m_data->m_view->FillRect(rect); 163 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 170 m_data->m_view->FillRect(rect); 174 void GraphicsContext::fillRect(const FloatRect& rect) 188 // FillRect and FillArc calls are needed.
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
GraphicsContextOpenVG.cpp | 155 void GraphicsContext::fillRect(const FloatRect& rect) 163 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridLayoutPainter.java | 284 gc.fillRect(new Rect(cellBounds.x - radius, 290 gc.fillRect(new Rect(cellBounds.x + radius, cellBounds.y - radius, 295 gc.fillRect(new Rect(cellBounds.x + radius, cellBounds.y + radius,
|
/external/proguard/src/proguard/gui/splash/ |
OverrideGraphics2D.java | 434 public void fillRect(int x, int y, int width, int height) 436 graphics.fillRect(x, y, width, height);
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyScene.java | 249 g2.fillRect(bounds.x, bounds.y, bounds.width, bounds.height);
|
/external/webkit/Source/WebCore/platform/graphics/ |
GraphicsContext.cpp | 440 fillRect(font.selectionRectForText(run, point, h, from, to), backgroundColor, colorSpace); 612 void GraphicsContext::fillRect(const FloatRect& rect, Generator& generator)
|
/external/webkit/Source/WebCore/platform/graphics/wx/ |
GraphicsContextWx.cpp | 264 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 544 void GraphicsContext::fillRect(const FloatRect& rect)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
ConstraintPainter.java | 128 graphics.fillRect(bounds); 398 graphics.fillRect(targetBounds.x, targetY - PARENT_RECT_SIZE / 2, 628 graphics.fillRect(targetX - PARENT_RECT_SIZE / 2, targetBounds.y, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
GCWrapper.java | 275 public void fillRect(int x1, int y1, int x2, int y2) { 285 public void fillRect(Point p1, Point p2) { 286 fillRect(p1.x, p1.y, p2.x, p2.y); 289 public void fillRect(Rect r) {
|
/external/webkit/Source/WebCore/html/canvas/ |
CanvasRenderingContext2D.cpp | 995 void CanvasRenderingContext2D::fillRect(float x, float y, float width, float height) 1015 c->fillRect(rect); [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
GraphicsContextAndroid.cpp | 783 void GraphicsContext::fillRect(const FloatRect& rect) 798 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace) 825 // though perhaps we'll find we need to do this as well in fillRect(r) [all...] |
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
GraphicsContextCairo.cpp | 121 // A fillRect helper 558 void GraphicsContext::fillRect(const FloatRect& rect) 570 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace) [all...] |
/external/webkit/Source/WebCore/platform/graphics/cg/ |
GraphicsContextCG.cpp | 665 void GraphicsContext::fillRect(const FloatRect& rect) 715 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) [all...] |
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
GLES2Canvas.cpp | 233 fillRect(rect, Color(RGBA32(0)), ColorSpaceDeviceRGB); 270 void GLES2Canvas::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 282 void GLES2Canvas::fillRect(const FloatRect& rect) 284 fillRect(rect, m_state->applyAlpha(m_state->m_fillColor), ColorSpaceDeviceRGB); [all...] |
/external/webkit/Source/WebCore/platform/graphics/qt/ |
GraphicsContextQt.cpp | 320 // 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) 681 shadowPainter->fillRect(normalizedRect, shadow->m_color); 690 shadowPainter->fillRect(normalizedRect, brush); 692 shadowPainter->fillRect(normalizedRect, shadow->m_color); 695 p->fillRect(normalizedRect, brush) [all...] |
/external/webkit/Source/WebCore/platform/graphics/skia/ |
GraphicsContextSkia.cpp | 724 // See the fillRect below. 759 void GraphicsContext::fillRect(const FloatRect& rect) 766 // See the other version of fillRect below. 772 platformContext()->gpuCanvas()->fillRect(rect); 787 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 794 platformContext()->gpuCanvas()->fillRect(rect, color, colorSpace); 836 // See fillRect(). 846 fillRect(rect, color, colorSpace); [all...] |
/external/webkit/Source/WebCore/platform/graphics/wince/ |
GraphicsContextWinCE.cpp | 932 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 952 FillRect(transparentDC.hdc(), &transparentDC.rect(), hbrush.get()); [all...] |