Searched refs:computeMeanSafely (Results 1 - 4 of 4) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
H A DLongMathTest.java164 assertEquals("The expectedMean should be the same as computeMeanSafely",
165 expectedMean, computeMeanSafely(x, y));
171 *to the result of computeMeanSafely.
174 long expectedMean = computeMeanSafely(x, y);
184 private static long computeMeanSafely(long x, long y) { method in class:LongMathTest
H A DIntMathTest.java320 assertEquals("The expectedMean should be the same as computeMeanSafely",
321 expectedMean, computeMeanSafely(x, y));
327 * to the result of computeMeanSafely.
330 int expectedMean = computeMeanSafely(x, y);
340 private static int computeMeanSafely(int x, int y) { method in class:IntMathTest
/external/guava/guava-tests/test/com/google/common/math/
H A DIntMathTest.java555 assertEquals("The expectedMean should be the same as computeMeanSafely",
556 expectedMean, computeMeanSafely(x, y));
562 * to the result of computeMeanSafely.
565 int expectedMean = computeMeanSafely(x, y);
575 private static int computeMeanSafely(int x, int y) { method in class:IntMathTest
H A DLongMathTest.java656 assertEquals("The expectedMean should be the same as computeMeanSafely",
657 expectedMean, computeMeanSafely(x, y));
663 *to the result of computeMeanSafely.
666 long expectedMean = computeMeanSafely(x, y);
676 private static long computeMeanSafely(long x, long y) { method in class:LongMathTest

Completed in 82 milliseconds