HomeSort by relevance Sort by last modified time
    Searched defs:SHADOW_SIZE (Results 1 - 3 of 3) sorted by null

  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ShadowPainter.java 42 * @param shadowSize the size of the shadow, normally {@link #SHADOW_SIZE or {@link
82 image = new BufferedImage(width + SHADOW_SIZE, height + SHADOW_SIZE,
175 * Draws a rectangular drop shadow (of size {@link #SHADOW_SIZE} by {@link #SHADOW_SIZE} around
192 image = new BufferedImage(width + SHADOW_SIZE, height + SHADOW_SIZE, type);
233 * graphics. The size of the shadow is {@link #SHADOW_SIZE}.
276 public static final int SHADOW_SIZE = 20; // DO NOT EDIT. This corresponds to bitmap graphics
297 assert ShadowBottomRight.getWidth(null) == SHADOW_SIZE;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
AddItemActivity.java 66 private static final int SHADOW_SIZE = 10;
177 outShadowSize.set(SHADOW_SIZE, SHADOW_SIZE);
178 outShadowTouchPoint.set(SHADOW_SIZE / 2, SHADOW_SIZE / 2);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 451 * Draws a rectangular drop shadow (of size {@link #SHADOW_SIZE} by
452 * {@link #SHADOW_SIZE} around the given source and returns a new image with
466 BufferedImage image = new BufferedImage(width + SHADOW_SIZE, height + SHADOW_SIZE, type);
479 * The size of the shadow is {@link #SHADOW_SIZE}.
523 public static final int SHADOW_SIZE = 20; // DO NOT EDIT. This corresponds to bitmap graphics
578 assert sShadowBottomRight.getWidth() == SHADOW_SIZE;
579 assert sShadowBottomRight.getHeight() == SHADOW_SIZE;
    [all...]

Completed in 287 milliseconds