Home
last modified time | relevance | path

Searched refs:bt (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/nio/Buffer/
DEqualsCompareTest.java622 void testBufferType(BT bt, in testBufferType() argument
625 int n = arraySizeFor(bt.elementType); in testBufferType()
629 B a = aConstructor.apply(bt, s); in testBufferType()
630 B b = bConstructor.apply(bt, s); in testBufferType()
637 ? bt.slice(a, aFrom, aTo, dupOtherwiseSlice) in testBufferType()
645 ? bt.slice(b, bFrom, bTo, dupOtherwiseSlice) in testBufferType()
648 boolean eq = bt.pairWiseEquals(as, bs); in testBufferType()
649 Assert.assertEquals(bt.equals(as, bs), eq); in testBufferType()
650 Assert.assertEquals(bt.equals(bs, as), eq); in testBufferType()
652 Assert.assertEquals(bt.compare(as, bs), 0); in testBufferType()
[all …]
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DAlgorithmParametersSpiTest.java38 byte[] bt = new byte[10]; in testAlgorithmParametersSpi()
44 algParSpi.engineInit(bt); in testAlgorithmParametersSpi()
45 algParSpi.engineInit(bt, "Format"); in testAlgorithmParametersSpi()
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodTypeForm.java193 Class<?> bt = rt; in MethodTypeForm() local
199 bt = int.class; in MethodTypeForm()
206 if (epts == bpts && bt == rt) { in MethodTypeForm()
209 this.basicType = MethodType.makeImpl(bt, bpts, true); in MethodTypeForm()