Home
last modified time | relevance | path

Searched refs:shape (Results 1 – 10 of 10) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Ddrawable2-expected-completion52.txt2 <corners /> : Describes the corners for the rectangle shape of a GradientDrawable.
3 <gradient /> : Used to describe the gradient used to fill the shape of a GradientDrawable.
5 <size /> : Used to specify the size of the shape for GradientDrawable.
6 <solid /> : Used to fill the shape of GradientDrawable with a solid color.
Ddrawable1-expected-completion47.txt12 <shape ></shape> : Drawable used to render a geometric shape, with a gradient or a solid color.
Ddrawable1-expected-completion50.txt12 <shape ></shape> : Drawable used to render a geometric shape, with a gradient or a solid color.
Ddrawable2-expected-completion51.txt4 android:shape : Indicates what shape to fill with a gradient. [enum]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DIconFactory.java138 public Image getIcon(String osName, int color, int shape) { in getIcon() argument
139 String key = Character.toString((char) shape) + Integer.toString(color) + osName; in getIcon()
142 ImageDescriptor id = getImageDescriptor(osName, color, shape); in getIcon()
179 public ImageDescriptor getImageDescriptor(String osName, int color, int shape) { in getImageDescriptor() argument
180 String key = Character.toString((char) shape) + Integer.toString(color) + osName; in getImageDescriptor()
188 id = new LetterImageDescriptor(osName.charAt(0), color, shape); in getImageDescriptor()
337 public LetterImageDescriptor(char letter, int color, int shape) { in LetterImageDescriptor() argument
340 mShape = shape; in LetterImageDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DElementDescriptor.java256 int shape = hasChildren() ? IconFactory.SHAPE_RECT in getCustomizedIcon() local
267 Image icon = factory.getIcon(name, color, shape); in getCustomizedIcon()
289 int shape = hasChildren() ? IconFactory.SHAPE_RECT : IconFactory.SHAPE_CIRCLE; in getImageDescriptor() local
290 ImageDescriptor id = factory.getImageDescriptor(mXmlName, color, shape); in getImageDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
DConfigureAssetSetPage.java524 if (mValues.shape == Shape.NONE && mValues.type == AssetType.NOTIFICATION) { in setVisible()
525 mValues.shape = Shape.SQUARE; in setVisible()
528 setShape(mValues.shape); in setVisible()
712 mValues.shape = GraphicGenerator.Shape.SQUARE; in widgetSelected()
713 setShape(mValues.shape); in widgetSelected()
715 mValues.shape = GraphicGenerator.Shape.CIRCLE; in widgetSelected()
716 setShape(mValues.shape); in widgetSelected()
718 mValues.shape = GraphicGenerator.Shape.NONE; in widgetSelected()
719 setShape(mValues.shape); in widgetSelected()
896 private void setShape(GraphicGenerator.Shape shape) { in setShape() argument
[all …]
DCreateAssetSetWizardState.java85 public Shape shape = Shape.SQUARE; field in CreateAssetSetWizardState
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateMetadata.java276 for (GraphicGenerator.Shape shape : GraphicGenerator.Shape.values()) { in getIconState()
277 if (shapeString.equals(shape.name())) { in getIconState()
278 mIconState.shape = shape; in getIconState()
DNewProjectWizard.java142 iconState.shape = GraphicGenerator.Shape.NONE; in getNextPage()