Home
last modified time | relevance | path

Searched defs:array2 (Results 1 – 25 of 411) sorted by relevance

12345678910>>...17

/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/
H A DArraySorterTest.java39 final char[] array2 = array1.clone(); in testSortCharArray() local
47 final String[] array2 = array1.clone(); in testSortComparable() local
55 final double[] array2 = array1.clone(); in testSortDoubleArray() local
63 final float[] array2 = array1.clone(); in testSortFloatArray() local
71 final int[] array2 = array1.clone(); in testSortIntArray() local
79 final long[] array2 = array1.clone(); in testSortLongArray() local
87 final String[] array2 = array1.clone(); in testSortObjects() local
95 final short[] array2 = array1.clone(); in testSortShortArray() local
H A DArrayUtilsRemoveMultipleTest.java251 final char[] array2 = ArrayUtils.removeAll(array1); in testRemoveAllCharArrayRemoveNone() local
323 final double[] array2 = ArrayUtils.removeAll(array1); in testRemoveAllDoubleArrayRemoveNone() local
395 final float[] array2 = ArrayUtils.removeAll(array1); in testRemoveAllFloatArrayRemoveNone() local
473 final int[] array2 = ArrayUtils.removeAll(array1); in testRemoveAllIntArrayRemoveNone() local
545 final long[] array2 = ArrayUtils.removeAll(array1); in testRemoveAllLongArrayRemoveNone() local
689 final Object[] array2 = ArrayUtils.removeAll(array1); in testRemoveAllObjectArrayRemoveNone() local
761 final short[] array2 = ArrayUtils.removeAll(array1); in testRemoveAllShortArrayRemoveNone() local
H A DArrayUtilsSetTest.java40 final Integer[] array2 = ArrayUtils.setAll(array, Integer::valueOf); in testSetAll_IntFunction() local
55 final String[] array2 = ArrayUtils.setAll(array, () -> StringUtils.EMPTY); in testSetAll_Suppiler() local
H A DArrayUtilsTest.java60 private void assertIsEquals(final Object array1, final Object array2, final Object array3) { in assertIsEquals()
516 final long[][] array2 = {{2, 5}, {4, 6}}; in testHashCode() local
5051 final String[] array2 = ArrayUtils.clone(array1); in testShuffle() local
5085 final char[] array2 = ArrayUtils.clone(array1); in testShuffleChar() local
5097 final double[] array2 = ArrayUtils.clone(array1); in testShuffleDouble() local
5109 final float[] array2 = ArrayUtils.clone(array1); in testShuffleFloat() local
5121 final int[] array2 = ArrayUtils.clone(array1); in testShuffleInt() local
5133 final long[] array2 = ArrayUtils.clone(array1); in testShuffleLong() local
5145 final short[] array2 = ArrayUtils.clone(array1); in testShuffleShort() local
H A DClassUtilsTest.java777 final Class<?>[] array2 = new Class[] {Object.class, Object.class}; in test_isAssignable_ClassArray_ClassArray() local
805 final Class<?>[] array2 = new Class[] {Object.class, Object.class}; in test_isAssignable_ClassArray_ClassArray_Autoboxing() local
833 final Class<?>[] array2 = new Class[] {Object.class, Object.class}; in test_isAssignable_ClassArray_ClassArray_NoAutoboxing() local
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/builder/
H A DCompareToBuilderTest.java696 final long[][] array2 = new long[2][2]; in testMultiLongArray() local
720 final int[][] array2 = new int[2][2]; in testMultiIntArray() local
744 final short[][] array2 = new short[2][2]; in testMultiShortArray() local
768 final char[][] array2 = new char[2][2]; in testMultiCharArray() local
816 final float[][] array2 = new float[2][2]; in testMultiFloatArray() local
840 final double[][] array2 = new double[2][2]; in testMultiDoubleArray() local
888 final long[][] array2 = new long[2][]; in testRaggedArray() local
916 final Object[] array2 = new Object[2]; in testMixedArray() local
944 final TestObject[] array2 = new TestObject[2]; in testObjectArrayHiddenByObject() local
971 final long[] array2 = new long[2]; in testLongArrayHiddenByObject() local
[all …]
H A DEqualsBuilderTest.java805 final long[][] array2 = new long[2][2]; in testMultiLongArray() local
821 final int[][] array2 = new int[2][2]; in testMultiIntArray() local
837 final short[][] array2 = new short[2][2]; in testMultiShortArray() local
853 final char[][] array2 = new char[2][2]; in testMultiCharArray() local
885 final float[][] array2 = new float[2][2]; in testMultiFloatArray() local
901 final double[][] array2 = new double[2][2]; in testMultiDoubleArray() local
940 final long[][] array2 = new long[2][]; in testRaggedArray() local
958 final Object[] array2 = new Object[2]; in testMixedArray() local
978 final TestObject[] array2 = new TestObject[2]; in testObjectArrayHiddenByObject() local
996 final long[] array2 = new long[2]; in testLongArrayHiddenByObject() local
[all …]
/aosp_15_r20/external/mockito/src/test/java/org/mockito/internal/matchers/apachecommons/
H A DEqualsBuilderTest.java556 long[][] array2 = new long[2][2]; in testMultiLongArray() local
571 int[][] array2 = new int[2][2]; in testMultiIntArray() local
586 short[][] array2 = new short[2][2]; in testMultiShortArray() local
601 char[][] array2 = new char[2][2]; in testMultiCharArray() local
630 float[][] array2 = new float[2][2]; in testMultiFloatArray() local
645 double[][] array2 = new double[2][2]; in testMultiDoubleArray() local
682 long[][] array2 = new long[2][]; in testRaggedArray() local
699 Object[] array2 = new Object[2]; in testMixedArray() local
718 TestObject[] array2 = new TestObject[2]; in testObjectArrayHiddenByObject() local
735 long[] array2 = new long[2]; in testLongArrayHiddenByObject() local
[all …]
/aosp_15_r20/art/test/550-checker-multiply-accumulate/src/
H A DMain.java429 public static void SimdMulAdd(int[] array1, int[] array2) { in SimdMulAdd()
435 public static void SimdMulAddLong(long[] array1, long[] array2) { in SimdMulAddLong()
454 public static void SimdMulSub(int[] array1, int[] array2) { in SimdMulSub()
460 public static void SimdMulSubLong(long[] array1, long[] array2) { in SimdMulSubLong()
474 public static void SimdMulMultipleUses(int[] array1, int[] array2) { in SimdMulMultipleUses()
482 public static void SimdMulMultipleUsesLong(long[] array1, long[] array2) { in SimdMulMultipleUsesLong()
522 int[] array2 = new int[ARRAY_SIZE]; in testSimdMultiplyAccumulate() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/test/algorithm/
Dtransformation3.cpp47 int array2[] = {2,3,4}; in merge_test() local
73 int array2[] = {5,4,3,4,3,2}; in inplace_merge_test() local
87 int array2[] = {2,3,4}; in set_union_test() local
111 int array2[] = {2,3,4}; in set_intersection_test() local
135 int array2[] = {2,3,4}; in set_difference_test() local
159 int array2[] = {2,3,4}; in set_symmetric_difference_test() local
Dtransformation1.cpp107 int array2[] = {1,2,3}; in transform_test() local
269 int array2[2]; in remove_copy_test() local
282 int array2[2]; in remove_copy_if_test() local
306 int array2[] = {1,3,2}; in unique_test() local
332 int array2[] = {1,3,2}; in unique_copy_test() local
366 int array2[3]; in reverse_copy_test() local
Dquerying.cpp165 int array2[] = {1,2,3}; in equal_test() local
201 int array2[] = {3,2,1}; in lower_bound_test() local
218 int array2[] = {3,2,1}; in upper_bound_test() local
242 int array2[] = {3,2,2,1}; in equal_range_test() local
Dquerying2.cpp25 int array2[] = {1,2}; in includes_test() local
64 int array2[] = {1,2,4}; in lexicographical_compare_test() local
Dtransformation2.cpp46 int array2[3]; in rotate_copy_test() local
170 int array2[2]; in partial_sort_copy_test() local
/aosp_15_r20/external/eigen/test/
H A Dmapped_matrix.cpp25 Scalar* array2 = internal::aligned_new<Scalar>(size); in map_class_vector() local
61 Scalar* array2 = internal::aligned_new<Scalar>(size); in map_class_matrix() local
128 Scalar* array2 = internal::aligned_new<Scalar>(size); in map_static_methods() local
166 Scalar* array2 = reinterpret_cast<Scalar*>(sizeof(Scalar)/2+std::size_t(array1)); in map_not_aligned_on_scalar() local
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/util/
H A DSecretBytesTest.java82 SecretBytes array2 = SecretBytes.copyFrom(plainArray, InsecureSecretKeyAccess.get()); in testEqualsSecretBytes_bitflips_different() local
93 SecretBytes array2 = SecretBytes.copyFrom(shorterCopy, InsecureSecretKeyAccess.get()); in testEqualsSecretBytes_lengths_different() local
101 SecretBytes array2 = in testEqualsSecretBytes_equals() local
/aosp_15_r20/external/snakeyaml/src/main/java/org/yaml/snakeyaml/util/
H A DArrayUtils.java47 public static <E> List<E> toUnmodifiableCompositeList(E[] array1, E[] array2) { in toUnmodifiableCompositeList()
84 private final E[] array2; field in ArrayUtils.CompositeUnmodifiableArrayList
86 CompositeUnmodifiableArrayList(E[] array1, E[] array2) { in CompositeUnmodifiableArrayList()
/aosp_15_r20/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
DResizableIntArrayTests.java52 int[] array2 = null, array3 = null; in testAdd() local
135 final int[] array2 = src.getPrimitiveArray(); in testReset() local
167 final int[] array2 = src.getPrimitiveArray(); in testSetLength() local
226 final int[] array2 = dst.getPrimitiveArray(); in testCopy() local
/aosp_15_r20/packages/services/Car/tests/CarLibUnitTest/src/com/android/car/internal/util/
DArrayUtilsTest.java73 Integer[] array2 = ArrayUtils.emptyArray(Integer.class); in testEmptyArray() local
84 Integer[] array2 = ArrayUtils.emptyIfNull(new Integer[]{1, 2}, Integer.class); in testEmptyIfNull() local
243 Integer[] array2 = new Integer[]{3, 4}; in testConcatElements() local
449 ArrayList<String> array2 = new ArrayList<String>(); in testReferenceEquals() local
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
H A DArrayUtils.java846 public static boolean[] addAll(final boolean[] array1, final boolean... array2) { in addAll()
877 public static byte[] addAll(final byte[] array1, final byte... array2) { in addAll()
908 public static char[] addAll(final char[] array1, final char... array2) { in addAll()
939 public static double[] addAll(final double[] array1, final double... array2) { in addAll()
970 public static float[] addAll(final float[] array1, final float... array2) { in addAll()
1001 public static int[] addAll(final int[] array1, final int... array2) { in addAll()
1032 public static long[] addAll(final long[] array1, final long... array2) { in addAll()
1063 public static short[] addAll(final short[] array1, final short... array2) { in addAll()
1101 … public static <T> T[] addAll(final T[] array1, @SuppressWarnings("unchecked") final T... array2) { in addAll()
3296 public static boolean isEquals(final Object array1, final Object array2) { in isEquals()
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/util/Arrays/
H A DCorrect.java54 Integer[] array2 = Arrays.copyOf(array1, array1.length); in testDefaultSort() local
67 Integer[] array2 = Arrays.copyOf(array1, array1.length); in testComparatorSort() local
/aosp_15_r20/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stackdepot_test.cc62 uptr array2[] = {1, 2, 3, 4, 8, 9}; in TEST() local
70 uptr array2[] = {7, 1, 3, 0}; in TEST() local
/aosp_15_r20/frameworks/base/tools/aapt2/format/binary/
H A DResEntryWriter_test.cpp89 std::unique_ptr<Array> array2 = util::make_unique<Array>(); in TEST_F() local
158 std::unique_ptr<Array> array2 = util::make_unique<Array>(); in TEST_F() local
/aosp_15_r20/external/mockftpserver/tags/1.0/src/test/java/org/mockftpserver/test/
H A DAbstractTest.java142 protected void assertEquals(String message, byte[] array1, byte[] array2) { in assertEquals()
151 protected void assertEquals(String message, Object[] array1, Object[] array2) { in assertEquals()
/aosp_15_r20/packages/modules/AppSearch/testing/coretests/src/android/app/appsearch/external/util/
DBundleUtilTest.java133 SparseArray<Parcelable> array2 = new SparseArray<>(); in testDeepEquals_sparseArray() local
188 SparseArray<Parcelable> array2 = new SparseArray<>(); in testHashCode_sparseArray() local

12345678910>>...17