Home
last modified time | relevance | path

Searched refs:EXPONENTS (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
DIntMathTest.java22 import static com.google.common.math.MathTesting.EXPONENTS;
282 for (int k : EXPONENTS) { in testCheckedPow()
/external/guava/guava-tests/test/com/google/common/math/
DIntMathTest.java22 import static com.google.common.math.MathTesting.EXPONENTS;
272 for (int pow : EXPONENTS) { in testPow()
449 for (int k : EXPONENTS) { in testCheckedPow()
DLongMathTest.java23 import static com.google.common.math.MathTesting.EXPONENTS;
316 for (int exp : EXPONENTS) { in testPow()
526 for (int exp : EXPONENTS) { in testCheckedPow()
DMathTesting.java55 static final ImmutableList<Integer> EXPONENTS = ImmutableList.of(0, 1, 2, 3, 4, 7, 10, 15, field in MathTesting