Searched refs:arrayOne (Results 1 – 1 of 1) sorted by relevance
14 Object[] arrayOne = array.get(i); in getCartesianProductOf() local16 array.set(i + 1, cartesianProduct(arrayOne, arrayTwo)); in getCartesianProductOf()22 private static Object[] cartesianProduct(Object[] arrayOne, Object[] arrayTwo) { in cartesianProduct() argument23 int numberOfCombinations = arrayOne.length * arrayTwo.length; in cartesianProduct()27 for (Object firstElement : arrayOne) { in cartesianProduct()