HomeSort by relevance Sort by last modified time
    Searched refs:secondArray (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
38 * secondArray[1], and so on. The first array is sorted based on its implementation of Comparable, and the 2nd
42 * @param secondArray The second array, which will be sorted based on the values in the first array
46 public static <A extends Comparable<A>, B> void sortTwoArrays(A[] firstArray, B[] secondArray)
48 if (firstArray.length != secondArray.length) {
68 secondArray[i] = elements[i].second;
  /external/chromium_org/third_party/icu/source/common/
normalizer2.cpp 152 const UChar *secondArray=second.getBuffer();
153 if(&first==&second || secondArray==NULL) {
159 normalizeAndAppend(secondArray, secondArray+second.length(), doNormalize,
  /external/icu4c/common/
normalizer2.cpp 175 const UChar *secondArray=second.getBuffer();
176 if(&first==&second || secondArray==NULL) {
185 normalizeAndAppend(secondArray, secondArray+second.length(), doNormalize,
    [all...]

Completed in 363 milliseconds