OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mShapes
(Results
1 - 3
of
3
) 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];
Kube.java
156
shapes = layer.
mShapes
;
162
shapes = layer.
mShapes
;
168
shapes = layer.
mShapes
;
175
shapes = layer.
mShapes
;
182
shapes = layer.
mShapes
;
189
shapes = layer.
mShapes
;
196
shapes = layer.
mShapes
;
203
shapes = layer.
mShapes
;
209
shapes = layer.
mShapes
;
/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 255 milliseconds