HomeSort by relevance Sort by last modified time
    Searched refs:rawArray (Results 1 - 12 of 12) 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]);
  /frameworks/base/core/java/android/content/
ClipDescription.java 217 String[] rawArray = new String[array.size()];
218 array.toArray(rawArray);
219 return rawArray;
  /frameworks/native/libs/math/include/math/
mat2.h 227 explicit CONSTEXPR TMat22(U const* rawArray);
300 CONSTEXPR TMat22<T>::TMat22(U const* rawArray) {
303 m_value[col][row] = *rawArray++;
mat3.h 249 explicit CONSTEXPR TMat33(U const* rawArray);
331 CONSTEXPR TMat33<T>::TMat33(U const* rawArray) {
334 m_value[col][row] = *rawArray++;
mat4.h 253 explicit CONSTEXPR TMat44(U const* rawArray);
384 CONSTEXPR TMat44<T>::TMat44(U const* rawArray) {
387 m_value[col][row] = *rawArray++;
  /cts/tests/tests/util/src/android/util/cts/
ArraySetTest.java 171 private static <E> void compareArraySetAndRawArray(ArraySet<E> arraySet, Object[] rawArray) {
172 assertEquals("Bad size", arraySet.size(), rawArray.length);
173 for (int i = 0; i < rawArray.length; ++i) {
175 arraySet.valueAt(i), rawArray[i]);
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 155 milliseconds