Searched refs:otherArray (Results 1 – 1 of 1) sorted by relevance
96 static boolean equals(SparseArray<byte[]> array, SparseArray<byte[]> otherArray) { in equals() argument97 if (array == otherArray) { in equals()100 if (array == null || otherArray == null) { in equals()103 if (array.size() != otherArray.size()) { in equals()109 if (array.keyAt(i) != otherArray.keyAt(i) in equals()110 || !Arrays.equals(array.valueAt(i), otherArray.valueAt(i))) { in equals()