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

  /frameworks/base/core/java/android/content/
ClipDescription.java 145 String[] rawArray = new String[array.size()];
146 array.toArray(rawArray);
147 return rawArray;
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 186 int[] rawArray = new int[count * 2];
189 rawArray[2 * index] = c.x;
190 rawArray[2 * index + 1] = c.y;
192 return rawArray;
219 * @param rawArray : [x1,y1,x2,y2,...]
222 private ArrayList<Coordinate> coordArrayToArrayList(int[] rawArray) {
225 int coordCount = rawArray.length;
227 Coordinate c = new Coordinate(rawArray[index], rawArray[index + 1]);

Completed in 63 milliseconds