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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/platform/mock/
ScrollbarThemeMock.cpp 52 context->fillRect(trackRect, scrollbar->enabled() ? Color::lightGray : Color(0xFFE0E0E0));
58 context->fillRect(thumbRect, Color::darkGray);
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls_draw_back_as_gradient.js 14 canvasContext.fillRect(0, 0, canvasWidth, canvasHeight);
bouncing_balls_draw_back_as_white.js 11 canvasContext.fillRect(0, 0, canvasWidth, canvasHeight);
bouncing_balls_draw_ball_as_rect.js 16 canvasContext.fillRect(-ballRadius, -ballRadius, ballDiameter, ballDiameter);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
OpaqueRectTrackingContentLayerDelegateTest.cpp 69 context.fillRect(top, opaque);
70 context.fillRect(bottom, opaque);
78 context.fillRect(contentRect, alpha);
91 context.fillRect(contentRect, alpha);
97 context.fillRect(fillOpaque, opaque);
TransparencyWinTest.cpp 63 FillRect(dc, &innerRc,
317 src->context()->fillRect(fullRect, red);
320 src->context()->fillRect(rightHalf, green);
332 helper.context()->fillRect(inner, Color(0x7f000000));
370 src->context()->fillRect(fullRect, white);
390 helper.context()->fillRect(bottomRight, green);
406 src->context()->fillRect(fullRect, white);
429 helper.context()->fillRect(greenRect, green);
434 helper.context()->fillRect(redRect, red);
469 src->context()->fillRect(fullRect, white)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContextTest.cpp 80 context.fillRect(FloatRect(10, 10, 90, 90), opaque, CompositeSourceOver);
84 context.fillRect(FloatRect(10, 10, 90, 90), alpha, CompositeSourceOver);
88 context.fillRect(FloatRect(99, 13, 10, 90), opaque, CompositePlusLighter);
92 context.fillRect(FloatRect(99, 13, 10, 90), opaque, CompositeSourceIn);
96 context.fillRect(FloatRect(99, 13, 10, 90), alpha, CompositeSourceIn);
100 context.fillRect(FloatRect(8, 8, 3, 90), opaque, CompositeSourceOut);
104 context.fillRect(FloatRect(30, 30, 290, 290), opaque, CompositeSourceOver);
108 context.fillRect(FloatRect(40, 20, 290, 50), opaque, CompositeSourceOver);
112 context.fillRect(FloatRect(10, 10, 390, 50), opaque, CompositeSourceIn);
116 context.fillRect(FloatRect(10, 10, 390, 50), alpha)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 39 g.fillRect(0, 0, image.getWidth(), image.getHeight());
50 g.fillRect(0, 0, image.getWidth(), image.getHeight());
61 g.fillRect(0, 0, image.getWidth(), image.getHeight());
74 g.fillRect(0, 0, image.getWidth(), image.getHeight());
76 g.fillRect(25, 25, 50, 50);
91 g.fillRect(0, 0, image.getWidth(), image.getHeight());
93 g.fillRect(25, 25, 50, 50);
108 g.fillRect(0, 0, image.getWidth(), image.getHeight());
110 g.fillRect(25, 25, 50, 50);
125 g.fillRect(0, 0, image.getWidth(), image.getHeight())
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ColorTexture.java 41 canvas.fillRect(x, y, w, h, mColor);
  /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/chromium_org/chrome/common/extensions/docs/examples/api/pageAction/set_icon/
background.js 58 context.fillRect(startx % 19, starty % 19, 8, 8);
60 context.fillRect((startx + 5) % 19, (starty + 5) % 19, 8, 8);
62 context.fillRect((startx + 10) % 19, (starty + 10) % 19, 8, 8);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 95 public void fillRect(int x1, int y1, int x2, int y2) {
96 mDrawn.add("fillRect(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")");
100 public void fillRect(@NonNull Point p1, @NonNull Point p2) {
101 mDrawn.add("fillRect(" + p1 + "," + p2 + ")");
105 public void fillRect(@NonNull Rect r) {
106 mDrawn.add("fillRect(" + rectToString(r) + ")");
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromium.cpp 127 context->fillRect(tickRect);
131 context->fillRect(tickStroke);
ScrollbarThemeChromiumOverlay.cpp 108 context->fillRect(thumbRect, Color(128, 128, 128, 128));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
SourceAlpha.cpp 65 filterContext->fillRect(imageRect, Color::black);
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollbarThemeMac.mm 178 context->fillRect(tickRect);
211 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
213 context->fillRect(intersection(verticalOverhangRect, dirtyRect));
254 context->fillRect(intersection(shadowRect, dirtyRect));
264 context->fillRect(intersection(shadowRect, dirtyRect));
282 context->fillRect(intersection(shadowRect, dirtyRect));
292 context->fillRect(intersection(shadowRect, dirtyRect));
301 context->fillRect(FloatRect(shadowCornerOrigin.x() + shadowCornerOffset.x(), shadowCornerOrigin.y() + shadowCornerOffset.y(), kShadowSize, kShadowSize));
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeControlWin.h 141 void drawProgressBar(const SkIRect& fillRect);
  /external/chromium_org/content/renderer/
skia_benchmarking_extension_unittest.cc 49 SkRect fillRect = SkRect::MakeXYWH(SkIntToScalar(25), SkIntToScalar(25),
57 canvas.drawRect(fillRect, red_paint);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
loupe.js 105 targetContext.fillRect(0, 0, targetCanvas.width, targetCanvas.height);
131 targetContext.fillRect(
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TiledScreenNail.java 161 canvas.fillRect(x, y, width, height, mPlaceholderColor);
181 canvas.fillRect(dest.left, dest.top, dest.width(), dest.height(),
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRect.cpp 92 context->fillRect(m_fillBoundingBox);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFrameSet.cpp 88 context->fillRect(borderRect, frameSet()->hasBorderColor() ? resolveColor(CSSPropertyBorderLeftColor) : borderFillColor());
93 context->fillRect(IntRect(borderRect.location(), IntSize(1, height())), borderStartEdgeColor());
94 context->fillRect(IntRect(IntPoint(borderRect.maxX() - 1, borderRect.y()), IntSize(1, height())), borderEndEdgeColor());
107 context->fillRect(borderRect, frameSet()->hasBorderColor() ? resolveColor(CSSPropertyBorderLeftColor) : borderFillColor());
112 context->fillRect(IntRect(borderRect.location(), IntSize(width(), 1)), borderStartEdgeColor());
113 context->fillRect(IntRect(IntPoint(borderRect.x(), borderRect.maxY() - 1), IntSize(width(), 1)), borderEndEdgeColor());
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarTheme.cpp 283 context->fillRect(cornerRect, Color::white);
304 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
306 context->fillRect(intersection(verticalOverhangRect, dirtyRect));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
BinPacker.java 304 g.fillRect(0, 0, image.getWidth(), image.getHeight());
318 g.fillRect(rect.x, rect.y, rect.w, rect.h);
333 g.fillRect(rect.x, rect.y, rect.w, rect.h);

Completed in 493 milliseconds

1 2 3 4 5