Home
last modified time | relevance | path

Searched refs:I (Results 1 – 25 of 30) sorted by relevance

12

/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DTestData.java266 public static class RefTestData<T, I>
267 extends AbstractTestData<T, Stream<T>, I, Spliterator<T>>
271 I state, in RefTestData()
272 Function<I, Stream<T>> streamFn, in RefTestData() argument
273 Function<I, Stream<T>> parStreamFn, in RefTestData()
274 Function<I, Spliterator<T>> splitrFn, in RefTestData()
275 ToIntFunction<I> sizeFn) { in RefTestData()
281 static class IntTestData<I>
282 extends AbstractTestData<Integer, IntStream, I, Spliterator.OfInt>
286 I state, in IntTestData()
[all …]
DOpTestCase.java192 protected <T, U, S_OUT extends BaseStream<U, S_OUT>, I extends Iterable<U>>
193 Collection<U> exerciseOps(Collection<T> data, Function<Stream<T>, S_OUT> m, I expected) { in exerciseOps()
285 …public <I extends Iterable<U>> ExerciseDataStreamBuilder<T, U, S_IN, S_OUT> expectedResult(I expec… in expectedResult()
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DTestData.java265 public static class RefTestData<T, I>
266 extends AbstractTestData<T, Stream<T>, I, Spliterator<T>>
270 I state, in RefTestData()
271 Function<I, Stream<T>> streamFn, in RefTestData() argument
272 Function<I, Stream<T>> parStreamFn, in RefTestData()
273 Function<I, Spliterator<T>> splitrFn, in RefTestData()
274 ToIntFunction<I> sizeFn) { in RefTestData()
280 static class IntTestData<I>
281 extends AbstractTestData<Integer, IntStream, I, Spliterator.OfInt>
285 I state, in IntTestData()
[all …]
DOpTestCase.java191 protected <T, U, S_OUT extends BaseStream<U, S_OUT>, I extends Iterable<U>>
192 Collection<U> exerciseOps(Collection<T> data, Function<Stream<T>, S_OUT> m, I expected) { in exerciseOps()
284 …public <I extends Iterable<U>> ExerciseDataStreamBuilder<T, U, S_IN, S_OUT> expectedResult(I expec… in expectedResult()
/libcore/ojluni/src/test/java/lang/invoke/
DJavaDocExamplesTest.java697 Class<?> I = int.class; in testLoop() local
698 MH_inc = LOOKUP.findStatic(THIS_CLASS, "inc", methodType(I, I, I, I)); in testLoop()
699 MH_one = LOOKUP.findStatic(THIS_CLASS, "one", methodType(I, I)); in testLoop()
700 MH_mult = LOOKUP.findStatic(THIS_CLASS, "mult", methodType(I, I, I, I)); in testLoop()
701 MH_pred = LOOKUP.findStatic(THIS_CLASS, "pred", methodType(boolean.class, I, I, I)); in testLoop()
702 MH_fin = LOOKUP.findStatic(THIS_CLASS, "fin", methodType(I, I, I, I)); in testLoop()
721 Class<?> I = int.class; in testSimplerLoop() local
722 MH_inc = LOOKUP.findStatic(THIS_CLASS, "inc", methodType(I, I)); in testSimplerLoop()
723 MH_mult = LOOKUP.findStatic(THIS_CLASS, "mult", methodType(I, I, I)); in testSimplerLoop()
724 MH_cmp = LOOKUP.findStatic(THIS_CLASS, "cmp", methodType(boolean.class, I, I)); in testSimplerLoop()
[all …]
DLoopCombinatorTest.java513 Class<?> V = String.class, I = int.class, A = List.class; in countedLoopBodyParameters() local
518 {methodType(I), methodType(V), methodType(V, V, I)}, in countedLoopBodyParameters()
519 {methodType(I), methodType(V), methodType(V, V, I, A)}, in countedLoopBodyParameters()
520 {methodType(I,A), methodType(V), methodType(V, V, I, A)}, in countedLoopBodyParameters()
521 {methodType(I), methodType(V,A), methodType(V, V, I, A)}, in countedLoopBodyParameters()
523 {methodType(I), methodType(void.class), methodType(void.class, I)}, in countedLoopBodyParameters()
524 {methodType(I), methodType(void.class), methodType(void.class, I, A)}, in countedLoopBodyParameters()
525 {methodType(I,A), methodType(void.class), methodType(void.class, I, A)}, in countedLoopBodyParameters()
526 {methodType(I), methodType(void.class,A), methodType(void.class, I, A)}, in countedLoopBodyParameters()
528 {methodType(I,A), methodType(V), methodType(V, V, I)}, in countedLoopBodyParameters()
[all …]
DMethodHandlesGeneralTest.java1464 final Class<?> I = int.class; in testGenericLoopCombinator() local
1467 final MethodHandle hip = l.findStatic(MHT, "loopIntPred", methodType(B, I)); in testGenericLoopCombinator()
1468 final MethodHandle hdp = l.findStatic(MHT, "loopDoublePred", methodType(B, I, D)); in testGenericLoopCombinator()
1469 final MethodHandle hsp = l.findStatic(MHT, "loopStringPred", methodType(B, I, D, S)); in testGenericLoopCombinator()
1470 final MethodHandle his = l.findStatic(MHT, "loopIntStep", methodType(I, I)); in testGenericLoopCombinator()
1471 final MethodHandle hds = l.findStatic(MHT, "loopDoubleStep", methodType(D, I, D)); in testGenericLoopCombinator()
1472 final MethodHandle hss = l.findStatic(MHT, "loopStringStep", methodType(S, I, D, S)); in testGenericLoopCombinator()
/libcore/benchmarks/src/benchmarks/
DMethodInvocationBenchmark.java23 interface I { interface in MethodInvocationBenchmark
27 static class C implements I {
92 I c = new C(); in timeEmptyInterface()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DAbstractQueueTest.java147 Integer I = Integer.valueOf(123456); in test_addLE() local
148 queue.add(I); in test_addLE()
149 assertTrue(queue.contains(I)); in test_addLE()
154 assertTrue(I == iter.next()); in test_addLE()
DPriorityQueueTest.java705 Integer I = (Integer) o; in test_Serialization_casting() local
706 assertEquals(array[0], I); in test_Serialization_casting()
723 Integer I = (Integer) o; in test_SerializationCompatibility_cast() local
724 assertEquals(array[0], I); in test_SerializationCompatibility_cast()
DArrays2Test.java248 public void test_toString$I() { in test_toString$I()
/libcore/tools/openjdk-analyzer/src/libcore/tools/analyzer/openjdk/
Dunsupported_new_apis.txt38 …tring;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V
92 java/io/FilePermission#hashCode()I
95 java/net/SocketPermission#hashCode()I
99 java/security/AccessControlContext#hashCode()I
104 java/security/AllPermission#hashCode()I
108 java/security/BasicPermission#hashCode()I
111 java/security/CodeSource#hashCode()I
114 java/security/Permission#hashCode()I
121 java/security/UnresolvedPermission#hashCode()I
127 java/util/PropertyPermission#hashCode()I
[all …]
/libcore/tools/docs/crypto/
Dupdate_crypto_support.py113 name = re.sub('WITH', 'with', name, flags=re.I)
114 name = re.sub('DESEDE', 'DESede', name, flags=re.I)
115 name = re.sub('HMAC', 'Hmac', name, flags=re.I)
/libcore/ojluni/src/main/java/java/util/stream/
DReduceOps.java155 public static <T, I> TerminalOp<T, I>
156 makeRef(Collector<? super T, I, ?> collector) {
157 Supplier<I> supplier = Objects.requireNonNull(collector).supplier();
158 BiConsumer<I, ? super T> accumulator = collector.accumulator();
159 BinaryOperator<I> combiner = collector.combiner();
160 class ReducingSink extends Box<I>
161 implements AccumulatingSink<T, I, ReducingSink> {
177 return new ReduceOp<T, I, ReducingSink>(StreamShape.REFERENCE) {
DCollectors.java187 private static <I, R> Function<I, R> castingIdentity() {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/support/
DI.java20 public interface I { interface
DA.java20 public class A implements I {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/support/
DI.java3 public interface I { interface
DA.java3 public class A implements I {
/libcore/luni/src/test/resources/tests/api/java/io/
DsameFieldNames.smali9 .field public a:I
/libcore/luni/src/test/java/libcore/java/util/
DEnumSetTest.java104 IN, SN, SB, TE, I, XE, CS, BA, LA, CE, PR, ND, PM, SM, EU, GD, TB, DY, HO, ER, TM, YB, LU, enumConstant
DArraysTest.java49 public void setAll$I() { in setAll$I()
77 public void parallelSetAll$I() { in parallelSetAll$I()
273 public void parallelPrefix$I() { in parallelPrefix$I()
/libcore/luni/src/test/java/libcore/java/lang/reflect/
DReflectionTest.java524 HasMemberClasses.G.class, HasMemberClasses.H.class, HasMemberClasses.I.class, in testGetDeclaredClasses()
632 static class I {} class in ReflectionTest.HasMemberClasses
/libcore/ojluni/src/test/java/util/Base64/
Dplain.txt175 8 I 25 Z 42 q 59 7
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DArrayTest.java485 public void test_newInstanceLjava_lang_Class$I() { in test_newInstanceLjava_lang_Class$I()

12