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

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Layer.java 28 for (int i = 0; i < mShapes.length; i++) {
29 GLShape shape = mShapes[i];
37 for (int i = 0; i < mShapes.length; i++) {
38 GLShape shape = mShapes[i];
83 for (int i = 0; i < mShapes.length; i++) {
84 GLShape shape = mShapes[i];
91 GLShape[] mShapes = new GLShape[9];
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardDrag.java 141 private final ArrayList<Shape> mShapes = new ArrayList<Shape>();
155 mShapes.add(new RectShape());
156 mShapes.add(new OvalShape());
159 mShapes.add(new RoundRectShape(radii, null, null));
160 mShapes.add(new TriangleShape());
163 mCardBackground.setShape(mShapes.get(0));
195 index = (index + 1) % mShapes.size();
196 mCardBackground.setShape(mShapes.get(index));

Completed in 54 milliseconds