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

1 2 3 4 5

  /external/skia/experimental/SkV8Example/js/
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);
snow.js 35 ctx.fillRect(0, 0, W-1, H-1);
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
GroupBorder.java 35 gg.fillRect(0, titleHeight, width, height);
39 gg.fillRect(0, 0, width, height);
ImagePanel.java 87 gg.fillRect(0, 0, getWidth(), getHeight());
92 gg.fillRect(0, 0, getWidth(), getHeight());
  /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...]
SwtUtilsTest.java 47 g.fillRect(0, 0, inImage.getWidth(), inImage.getHeight());
103 g.fillRect(0, 0, inImage.getWidth(), inImage.getHeight());
136 g.fillRect(0, 0, inImage.getWidth(), inImage.getHeight());
171 g.fillRect(0, 0, inImage.getWidth(), inImage.getHeight());
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ColorTexture.java 41 canvas.fillRect(x, y, w, h, mColor);
GLCanvas.java 92 public abstract void fillRect(float x, float y, float width, float height, int color);
  /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/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Gdx2DTest.java 79 pixmap.fillRect(20, 10, 5, 7, Color.rgba8888(0, 1, 1, 0.5f));
93 pixmap.fillRect(-10, -10, 20, 20, Color.rgba8888(0, 1, 1, 0.5f));
94 pixmap.fillRect(21, -10, 20, 20, Color.rgba8888(0, 1, 1, 0.5f));
95 pixmap.fillRect(-10, 21, 20, 20, Color.rgba8888(0, 1, 1, 0.5f));
96 pixmap.fillRect(21, 21, 20, 20, Color.rgba8888(0, 1, 1, 0.5f));
  /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/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarPanel.java 202 g.fillRect(0,0,d.width,d.height);
239 g.fillRect((int)(width), labelHeight ,
242 g.fillRect(0, labelHeight ,
247 g.fillRect(0, (int)(labelHeight + cellHeight),
255 g.fillRect(0, (int)(labelHeight + (numWeeks-1) * cellHeight),
258 g.fillRect(d.width - width, (int)(labelHeight + (numWeeks-1) * cellHeight),
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.cxx 58 fillRect(0, 0, m_width, m_height, color);
62 GFX::fillRect (int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color) {
197 fillRect (x+(i*size), y+(j*size), size, size, color);
203 fillRect (x+i*size, y+j*size, size, size, bg);
gfx.h 128 void fillRect (int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color);
  /packages/apps/Messaging/jni/
GifTranscoder.h 68 static void fillRect(ColorARGB* renderBuffer,
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
NewSlider.java 93 g.fillRect(border, border, width - border * 2, height - border * 2);
98 g.fillRect(Math.max(border, Math.min(maxKnobX, knobX)), 0, KNOB_WIDTH, height);
  /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(),
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
PorterDuffColorFilter_Delegate.java 71 g.fillRect(0, 0, width, height);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Gdx2DPixmap.java 185 public void fillRect (int x, int y, int width, int height, int color) {
186 fillRect(basePtr, x, y, width, height, color);
338 private static native void fillRect (long pixmap, int x, int y, int width, int height, int color); /*
  /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);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLCanvas.java 90 public abstract void fillRect(float x, float y, float width, float height, int color);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 56 gc.fillRect(bounds);
73 gc.fillRect(bounds);
  /external/libvncserver/webclients/novnc/include/
display.js 233 this._drawCtx.fillRect(x1, 0, w, vp.h);
237 this._drawCtx.fillRect(0, y1, vp.w, h);
328 fillRect: function (x, y, width, height, color) {
330 this._drawCtx.fillRect(x - this._viewportLoc.x, y - this._viewportLoc.y, width, height);
371 this.fillRect(x, y, width, height, color);
402 this.fillRect(this._tile_x + x, this._tile_y + y, w, h, color);
592 this.fillRect(a.x, a.y, a.width, a.height, a.color);

Completed in 1226 milliseconds

1 2 3 4 5