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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeMock.cpp 54 context->fillRect(trackRect, scrollbar->enabled() ? Color::lightGray : Color(0xFFE0E0E0));
60 context->fillRect(thumbRect, Color::darkGray);
ScrollbarThemeNonMacCommon.cpp 121 context->fillRect(tickRect);
125 context->fillRect(tickStroke);
ScrollbarThemeMacCommon.mm 127 context->fillRect(tickRect);
146 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
148 context->fillRect(intersection(verticalOverhangRect, dirtyRect));
215 context->fillRect(intersection(shadowRect, dirtyRect));
225 context->fillRect(intersection(shadowRect, dirtyRect));
243 context->fillRect(intersection(shadowRect, dirtyRect));
253 context->fillRect(intersection(shadowRect, dirtyRect));
262 context->fillRect(FloatRect(shadowCornerOrigin.x() + shadowCornerOffset.x(), shadowCornerOrigin.y() + shadowCornerOffset.y(), kShadowSize, kShadowSize));
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
sample.js 9 context.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100);
speed.js 9 canvas.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100);
path.js 21 context.fillRect(context.width/2, context.height/2, 20, 20);
  /external/skia/experimental/SkV8Example/
sample.js 9 context.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100);
speed.js 9 canvas.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100);
path.js 21 context.fillRect(context.width/2, context.height/2, 20, 20);
  /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/platform/graphics/
GraphicsContextTest.cpp 82 context.fillRect(FloatRect(10, 10, 90, 90), opaque, CompositeSourceOver);
86 context.fillRect(FloatRect(10, 10, 90, 90), alpha, CompositeSourceOver);
90 context.fillRect(FloatRect(99, 13, 10, 90), opaque, CompositePlusLighter);
94 context.fillRect(FloatRect(99, 13, 10, 90), opaque, CompositeSourceIn);
98 context.fillRect(FloatRect(99, 13, 10, 90), alpha, CompositeSourceIn);
102 context.fillRect(FloatRect(8, 8, 3, 90), opaque, CompositeSourceOut);
106 context.fillRect(FloatRect(30, 30, 290, 290), opaque, CompositeSourceOver);
110 context.fillRect(FloatRect(40, 20, 290, 50), opaque, CompositeSourceOver);
114 context.fillRect(FloatRect(10, 10, 390, 50), opaque, CompositeSourceIn);
118 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/chromium_org/third_party/WebKit/Source/core/paint/
ViewPainter.cpp 27 paintInfo.context->fillRect(paintInfo.rect, m_renderView.frameView()->baseBackgroundColor());
78 paintInfo.context->fillRect(paintInfo.rect, baseColor);
  /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/platform/graphics/filters/
FEFlood.cpp 82 resultImage->context()->fillRect(FloatRect(FloatPoint(), absolutePaintRect().size()), color);
SourceAlpha.cpp 67 filterContext->fillRect(imageRect, Color::black);
  /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/Source/devtools/front_end/timeline/
TimelineEventOverview.js 83 this._context.fillRect(0.5, i * stripHeight + 0.5, this._canvas.width, stripHeight);
144 this._context.fillRect(0, 0, width, WebInspector.TimelineEventOverview._stripGradientHeight);
  /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(

Completed in 523 milliseconds

1 2 3 4 5 6