/art/test/055-enum-performance/src/ |
SamePackagePrivateEnum.java | 3 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
|
SamePackagePublicEnum.java | 3 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
|
/art/test/055-enum-performance/src/otherpackage/ |
OtherPackagePublicEnum.java | 5 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue332/ |
DataTest.java | 29 Data data = new Data("Voltage", BigDecimal.TEN, "V");
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/ |
SignerInfoTest.java | 37 BigInteger.TEN.toByteArray() };
|
/libcore/luni/src/test/java/tests/security/interfaces/ |
DSAParamsTest.java | 27 private final BigInteger q = BigInteger.TEN;
|
DSAKeyPairGeneratorTest.java | 33 private final BigInteger q = BigInteger.TEN;
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/ |
TSTInfoTest.java | 60 TSTInfo info = new TSTInfo(1, policy, msgImprint, BigInteger.TEN, 72 assertEquals("Decoded serialNumber is incorrect", BigInteger.TEN,
|
TimeStampRespTest.java | 76 TSTInfo tSTInfo = new TSTInfo(1, policy, msgImprint, BigInteger.TEN,
|
/libcore/luni/src/main/java/java/math/ |
Multiplication.java | 37 * An array with powers of ten that fit in the type {@code int}. 54 * An array with the first powers of ten in {@code BigInteger} version. 78 bigTenPows[i] = bigTenPows[i - 1].multiply(BigInteger.TEN); 98 * Multiplies a number by a power of ten. 112 * It calculates a power of ten, which exponent could be out of 32-bit range. 115 * @param exp the exponent of power of ten, it must be positive. 127 return BigInteger.TEN.pow(intExp); 140 * This branch probably won't be executed since the power of ten is too
|
BigInteger.java | 72 public static final BigInteger TEN = new BigInteger(1, 10); 81 new BigInteger(1, 9), TEN }; [all...] |
BigDecimal.java | 122 * An array with powers of ten that fit in the type <code>long</code> 207 * The constant ten as a {@code BigDecimal}. 209 public static final BigDecimal TEN = new BigDecimal(10, 0); [all...] |
/external/guava/guava-tests/test/com/google/common/math/ |
BigIntegerMathTest.java | 25 import static java.math.BigInteger.TEN; 179 assertTrue(TEN.pow(result).compareTo(x) <= 0); 180 assertTrue(TEN.pow(result + 1).compareTo(x) > 0); 190 assertTrue(TEN.pow(result).compareTo(x) >= 0); 191 assertTrue(result == 0 || TEN.pow(result - 1).compareTo(x) < 0); 201 boolean expectSuccess = TEN.pow(logFloor).equals(x); 217 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) > 0); 219 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) <= 0); 229 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) >= 0); 231 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) < 0) [all...] |
LongMathTest.java | 79 assertEquals(BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR), 83 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * LongMath.halfPowersOf10.length + 1), FLOOR);
|
/external/guava/guava/src/com/google/common/math/ |
BigIntegerMath.java | 125 * is not a power of ten 136 BigInteger approxPow = BigInteger.TEN.pow(approxLog10); 152 approxPow = approxPow.divide(BigInteger.TEN); 156 BigInteger nextPow = BigInteger.TEN.multiply(approxPow); 162 nextPow = BigInteger.TEN.multiply(approxPow); 188 BigInteger halfPowerSquared = floorPow.pow(2).multiply(BigInteger.TEN);
|
/external/aac/libAACenc/src/ |
psy_configuration.cpp | 396 FIXP_DBL TEN = (FIXP_DBL)0x50000000; /* 10.0 in q27 */ 415 TEN, 27); 419 TEN, 27); 423 TEN, 27); 427 TEN, 27);
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
BarPlotExampleActivity.java | 71 TEN, 202 spSeriesSize.setSelection(SeriesSize.TEN.ordinal()); 206 case TEN:
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
FormatterTest.java | [all...] |
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/ |
LongsTest.java | 432 Longs.tryParse(BigInteger.valueOf(MAX_VALUE).multiply(BigInteger.TEN).toString())); 436 Longs.tryParse(BigInteger.valueOf(MIN_VALUE).multiply(BigInteger.TEN).toString()));
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
LongsTest.java | 465 Longs.tryParse(BigInteger.valueOf(MAX_VALUE).multiply(BigInteger.TEN).toString())); 469 Longs.tryParse(BigInteger.valueOf(MIN_VALUE).multiply(BigInteger.TEN).toString()));
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
BigDecimalConstructorsTest.java | 46 * check TEN 51 assertEquals("incorrect string value", oneS, BigDecimal.TEN.toString()); 52 assertEquals("incorrect double value", oneD, BigDecimal.TEN.doubleValue(), 0);
|
BigDecimalCompareTest.java | 508 BigDecimal testInstance = BigDecimal.TEN.multiply(new BigDecimal("0.1"));
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
BoundedRational.java | 503 while (n.mod(BigInteger.TEN).signum() == 0) { 507 n = n.divide(BigInteger.TEN); 598 * if r is a power of ten.
|
CalculatorExpr.java | 234 BigInteger den = BigInteger.TEN.pow(mFraction.length()); 236 num = num.multiply(BigInteger.TEN.pow(mExponent)); 239 den = den.multiply(BigInteger.TEN.pow(-mExponent)); [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
AlgorithmParametersTest.java | 526 BigInteger q = BigInteger.TEN;
|