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

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ArrayUtils.java 37 * by their position in the array. i.e. firstArray[0] is related to secondArray[0], firstArray[1] is related to
41 * @param firstArray The first array, which contains the values to sort
46 public static <A extends Comparable<A>, B> void sortTwoArrays(A[] firstArray, B[] secondArray)
48 if (firstArray.length != secondArray.length) {
58 element[] elements = new element[firstArray.length];
67 firstArray[i] = elements[i].first;
  /external/clang/utils/analyzer/
update_plist_test.pl 27 my $firstArray = 1;
33 if ($firstArray) {
34 if (/<\/array>/) { $firstArray = 0; }
  /cts/tests/tests/preference2/src/android/preference2/cts/
ListPreferenceTest.java 68 private void compareArrays(String[] firstArray,String[] secArray){
69 assertEquals(firstArray.length, secArray.length);
70 for(int i = 0; i < firstArray.length; i++) {
71 assertEquals(firstArray[i], secArray[i]);

Completed in 85 milliseconds