OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rawArray
(Results
1 - 2
of
2
) sorted by null
/development/samples/Snake/src/com/example/android/snake/
SnakeView.java
189
int[]
rawArray
= new int[cvec.size() * 2];
193
rawArray
[i++] = c.x;
194
rawArray
[i++] = c.y;
197
return
rawArray
;
223
* @param
rawArray
: [x1,y1,x2,y2,...]
226
private ArrayList<Coordinate> coordArrayToArrayList(int[]
rawArray
) {
229
int coordCount =
rawArray
.length;
231
Coordinate c = new Coordinate(
rawArray
[index],
rawArray
[index + 1]);
/cts/tests/tests/util/src/android/util/cts/
ArraySetTest.java
172
private static <E> void compareArraySetAndRawArray(ArraySet<E> arraySet, Object[]
rawArray
) {
173
assertEquals("Bad size", arraySet.size(),
rawArray
.length);
174
for (int i = 0; i <
rawArray
.length; ++i) {
176
arraySet.valueAt(i),
rawArray
[i]);
Completed in 176 milliseconds