Home
last modified time | relevance | path

Searched refs:sShadowBottomLeft (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSwtUtils.java412 if (sShadowBottomLeft == null) {
415 sShadowBottomLeft = icons.getIcon("shadow-bl"); //$NON-NLS-1$
424 ImageData bottomLeftData = sShadowBottomLeft.getImageData();
437 gc.drawImage(sShadowBottomLeft, x, y + height);
452 private static Image sShadowBottomLeft;
DImageUtils.java553 if (sShadowBottomLeft == null) { in drawRectangleShadow()
572 sShadowBottomLeft = readImage("shadow-bl.png"); //$NON-NLS-1$ in drawRectangleShadow()
577 assert sShadowBottomLeft != null; in drawRectangleShadow()
582 int blWidth = sShadowBottomLeft.getWidth(); in drawRectangleShadow()
591 gc.drawImage(sShadowBottomLeft, x, y + height, null); in drawRectangleShadow()
595 x + sShadowBottomLeft.getWidth(), y + height, in drawRectangleShadow()
701 private static BufferedImage sShadowBottomLeft; field in ImageUtils