/libcore/luni/src/test/java/libcore/java/math/ |
D | OldBigIntegerToStringTest.java | 32 BigInteger bi = new BigInteger(s); in test_toString1() local 39 BigInteger bi = new BigInteger(s); in test_toString2() local 46 BigInteger bi = new BigInteger(s); in test_toString3() local 54 BigInteger bi = BigInteger.valueOf(l); in test_toString4() local 62 BigInteger bi = BigInteger.valueOf(l); in test_toString5() local 72 BigInteger bi = new BigInteger(aBytes); in test_toString() local
|
D | OldBigDecimalConstructorsTest.java | 49 BigInteger bi = new BigInteger( "12345678901234567890123456789012345"); in testConstrBigIntegerMathContext() local 136 BigInteger bi = new BigInteger( "12345678901234567890123456789012345"); in testConstrBigIntegerScaleMathContext() local
|
/libcore/ojluni/src/main/java/java/nio/ |
D | Bits.java | 71 static char getCharL(ByteBuffer bb, int bi) { in getCharL() 81 static char getCharB(ByteBuffer bb, int bi) { in getCharB() 91 static char getChar(ByteBuffer bb, int bi, boolean bigEndian) { in getChar() 102 static void putCharL(ByteBuffer bb, int bi, char x) { in putCharL() 112 static void putCharB(ByteBuffer bb, int bi, char x) { in putCharB() 122 static void putChar(ByteBuffer bb, int bi, char x, boolean bigEndian) { in putChar() 143 static short getShortL(ByteBuffer bb, int bi) { in getShortL() 153 static short getShortB(ByteBuffer bb, int bi) { in getShortB() 163 static short getShort(ByteBuffer bb, int bi, boolean bigEndian) { in getShort() 174 static void putShortL(ByteBuffer bb, int bi, short x) { in putShortL() [all …]
|
/libcore/ojluni/src/test/java/math/BigInteger/ |
D | SerializationTests.java | 44 private static void checkSerialForm(BigInteger bi) throws Exception { in checkSerialForm() 49 private static void checkSerialForm0(BigInteger bi) throws Exception { in checkSerialForm0() 92 public BigIntegerSub(BigInteger bi) { in BigIntegerSub() 107 public BigIntegerSubSVUID(BigInteger bi) { in BigIntegerSubSVUID() 119 public BigIntegerSubWR(BigInteger bi) { in BigIntegerSubWR()
|
D | TestValueExact.java | 55 "Mismatching int conversion for " + bi); in testLongValueExact() local 85 "Mismatching int conversion for " + bi); in testIntValueExact() local 119 "Mismatching int conversion for " + bi); in testShortValueExact() local 157 "Mismatching int conversion for " + bi); in testByteValueExact() local
|
D | StringConstructor.java | 82 BigInteger bi = new BigInteger(badString); in constructWithError() local 90 BigInteger bi = new BigInteger(goodString); in constructWithoutError() local
|
D | BigIntegerTest.java | 132 BigInteger bi = new BigInteger(array, ol[0], ol[1]); in constructor() local 150 BigInteger bi = new BigInteger(1, array, ol[0], ol[1]); in constructor() local 169 BigInteger bi = new BigInteger(signum, magZeroLength); in constructor() local 175 BigInteger bi = new BigInteger(signum, magZeroLength, 0, 0); in constructor() local 183 BigInteger bi = new BigInteger(signum, magNonZeroLength, 0, 0); in constructor() local
|
/libcore/ojluni/src/test/java/text/BreakIterator/ |
D | ExceptionTest.java | 44 BreakIterator bi = BreakIterator.getWordInstance(); in main() local 127 private static void checkFollowingException(BreakIterator bi, int offset) { in checkFollowingException() 137 private static void checkPrecedingException(BreakIterator bi, int offset) { in checkPrecedingException() 147 private static void checkIsBoundaryException(BreakIterator bi, int offset) { in checkIsBoundaryException()
|
D | Bug8032446.java | 49 BreakIterator bi = BreakIterator.getWordInstance(Locale.ROOT); in main() local
|
D | Bug4740757.java | 58 BreakIterator bi = BreakIterator.getLineInstance(Locale.KOREAN); in test4740757() local
|
D | MirroredBreakIterator.java | 39 MirroredBreakIterator(BreakIterator bi) { in MirroredBreakIterator()
|
/libcore/ojluni/src/test/java/math/BigDecimal/ |
D | ConstructorUnscaledValue.java | 57 public TestBigInteger(BigInteger bi) { in TestBigInteger()
|
D | RangeTests.java | 155 private static void testRoundingFromBigInteger(BigInteger bi, int scale, MathContext mc) { in testRoundingFromBigInteger()
|
D | StringConstructor.java | 83 BigInteger bi = new BigInteger(size, random); in testRoundtrip() local
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
D | OldBigIntegerTest.java | 33 BigInteger bi; field in OldBigIntegerTest 80 BigInteger bi; in test_ConstructorIILjava_util_Random() local
|
D | BigIntegerTest.java | 50 BigInteger bi; field in BigIntegerTest 838 BigInteger bi = new BigInteger(0, new byte[]{}); in test_andNotLjava_math_BigInteger() local
|
/libcore/ojluni/src/main/java/java/text/ |
D | FieldPosition.java | 194 public void setBeginIndex(int bi) { in setBeginIndex()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | BidiTest.java | 957 Bidi bi = new Bidi(defText, 0); in testGetRuns() local
|
D | BreakIteratorTest.java | 271 BreakIterator bi = BreakIterator.getWordInstance(Locale.US); in test_next() local
|
/libcore/ojluni/src/test/java/lang/Long/ |
D | Unsigned.java | 158 BigInteger bi = // (upper << 32) + lower in toUnsignedBigInt() local
|
/libcore/ojluni/src/main/java/jdk/internal/util/ |
D | ArraysSupport.java | 128 long bi = ((long) wi) << LOG2_ARRAY_LONG_INDEX_SCALE; in vectorizedMismatch() local 147 long bi = ((long) wi) << LOG2_ARRAY_LONG_INDEX_SCALE; in vectorizedMismatch() local
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ConcurrentHashMapTest.java | 144 BI bi = new BI(i); in testGenericComparable() local
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | ConcurrentHashMapTest.java | 169 BI bi = new BI(i); in testGenericComparable() local
|
/libcore/luni/src/test/java/tests/security/cert/ |
D | X509CertSelectorTest.java | 1958 ByteArrayInputStream bi = new ByteArrayInputStream(TestUtils.rootCert.getBytes()); in setupEnvironment() local
|