/libcore/ojluni/src/test/java/util/PriorityQueue/ |
D | NoNulls.java | 76 new F() { void f() { in test() 79 new F() { void f() { in test() 82 new F() { void f() { in test() 85 new F() { void f() { in test() 88 new F() { void f() { in test() 91 new F() { void f() { in test() 95 new F() { void f() { in test() 98 new F() { void f() { in test() 102 new F() { void f() { in test() 105 new F() { void f() { in test() [all …]
|
/libcore/ojluni/src/main/java/java/lang/invoke/ |
D | TypeDescriptor.java | 63 interface OfField<F extends TypeDescriptor.OfField<F>> extends TypeDescriptor { 83 F componentType(); in componentType() 90 F arrayType(); in arrayType() 105 interface OfMethod<F extends TypeDescriptor.OfField<F>, M extends TypeDescriptor.OfMethod<F, M>> 122 F parameterType(int i); in parameterType() 129 F returnType(); in returnType() 136 F[] parameterArray(); in parameterArray() 143 List<F> parameterList(); in parameterList() 153 M changeReturnType(F newReturn); in changeReturnType() 166 M changeParameterType(int index, F paramType); in changeParameterType() [all …]
|
/libcore/ojluni/src/test/java/util/Collections/ |
D | CheckedNull.java | 70 ClassCastException cce(F f) { in cce() 76 void equalCCE(F ... fs) { in equalCCE() 78 for (F f : fs) in equalCCE() 111 new F(){void f(){ c.add(1); }}, in testCollection() 112 new F(){void f(){ c.addAll(singleton(1)); }}); in testCollection() 153 new F(){void f(){ m.put(1, "foo"); }}, in testMap() 154 new F(){void f(){ m.putAll(singletonMap(1, "foo")); }}); in testMap() 163 new F(){void f(){ m.put("foo", 1); }}, in testMap() 164 new F(){void f(){ m.putAll(singletonMap("foo", 1)); }}, in testMap() 165 new F(){void f(){ in testMap() [all …]
|
D | EmptyIterator.java | 79 new F(){void f(){ e.nextElement(); }}); in testEmptyEnumeration() 86 new F(){void f(){ it.next(); }}); in testEmptyIterator() 88 new F(){void f(){ it.remove(); }}); in testEmptyIterator() 109 new F(){void f(){ c.toArray((Object[])null); }}); in testToArray() 151 abstract class F {abstract void f() throws Throwable;} in f() class in EmptyIterator 152 void THROWS(Class<? extends Throwable> k, F... fs) { in THROWS() 153 for (F f : fs) in THROWS()
|
D | T6433170.java | 67 new F(){void f(){ checked.addAll(mixedList); }}); in test() 87 abstract class F {abstract void f() throws Throwable;} in f() class in T6433170 88 void THROWS(Class<? extends Throwable> k, F... fs) { in THROWS() 89 for (F f : fs) in THROWS()
|
/libcore/ojluni/src/test/java/util/BitSet/ |
D | PreviousBits.java | 47 new F(){void f(){ s.previousSetBit(-2);}}, in testOutOfBounds() 48 new F(){void f(){ s.previousClearBit(-2);}}, in testOutOfBounds() 49 new F(){void f(){ s.previousSetBit(Integer.MIN_VALUE);}}, in testOutOfBounds() 50 new F(){void f(){ s.previousClearBit(Integer.MIN_VALUE);}}, in testOutOfBounds() 51 new F(){void f(){ s.nextSetBit(-1);}}, in testOutOfBounds() 52 new F(){void f(){ s.nextClearBit(-1);}}, in testOutOfBounds() 53 new F(){void f(){ s.nextSetBit(Integer.MIN_VALUE);}}, in testOutOfBounds() 54 new F(){void f(){ s.nextClearBit(Integer.MIN_VALUE);}}); in testOutOfBounds() 153 abstract class F {abstract void f() throws Throwable;} in f() class in PreviousBits 154 void THROWS(Class<? extends Throwable> k, F... fs) { in THROWS() [all …]
|
/libcore/ojluni/src/test/java/util/ArrayList/ |
D | Bug6533203.java | 46 THROWS(Error.class, new F(){void f(){it.add(13);}}); in test() 66 abstract class F {abstract void f() throws Throwable;} in f() class in Bug6533203 67 void THROWS(Class<? extends Throwable> k, F... fs) { in THROWS() 68 for (F f : fs) in THROWS()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
D | ParameterizedTypeTest.java | 71 static class F<T>{ class in ParameterizedTypeTest 76 Class<? extends F> clazz = F.class; in testParameterizedMemeber()
|
D | TypeVariableTest.java | 127 static class F { class in TypeVariableTest 128 <Q,R,S> F(){} in F() method in TypeVariableTest.F 131 Class<? extends F> clazz = F.class; in testMultipleTypeVariablesOnConstructor()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ClassCastExceptionTest.java | 47 enum F { A, B, C }; enum in ClassCastExceptionTest 52 m.put(F.A, "world"); in testEnumMapPut() 62 m.add(F.A); in testMiniEnumSetAdd() 71 EnumSet n = EnumSet.allOf(F.class); in testMiniEnumSetAddAll()
|
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
D | AnnotationTest.java | 345 @TestAnnotation3(aEnum = TestEnum1.F) 347 @TestAnnotation3(aEnum = TestEnum1.F) 352 @TestAnnotation3(aEnum = TestEnum1.F) 357 @TestAnnotation3(aEnum = TestEnum1.F) 408 @TestAnnotation2(arrEnum = { TestEnum1.A, TestEnum1.F }) 410 @TestAnnotation2(arrEnum = { TestEnum1.A, TestEnum1.F }) 413 @TestAnnotation2(arrEnum = { TestEnum1.A, TestEnum1.F })
|
D | TestEnum1b.java | 4 Z, F, L, A, B enumConstant
|
D | TestEnum1.java | 4 Z, F, L, A, B enumConstant
|
D | TestAnnotation3b.java | 27 TestEnum1 aEnum() default TestEnum1.F; in aEnum()
|
D | TestAnnotation3.java | 27 TestEnum1 aEnum() default TestEnum1.F; in aEnum()
|
/libcore/ojluni/src/test/java/io/Serializable/records/ |
D | ConstructorAccessTest.java | 74 protected static record F (long l) implements ThrowingExternalizable { } 88 new Object[] { new F(45L) }, in recordInstances()
|
D | BasicRecordSer.java | 249 record F (int x){ in F() method in BasicRecordSer 250 public F(int x) { this.x = x; g_ctrInvocationCount++; } in F() method 253 F f = new F(89);
|
/libcore/ojluni/src/test/java/util/Timer/ |
D | Args.java | 183 interface F { void f() throws Throwable; } 184 void assertThrows(Class<? extends Throwable> k, F... fs) { 185 for (F f : fs)
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | ReflectionBenchmark.java | 194 F.class.getField("sf"); in timeGetInterfaceStaticField() 245 class F extends E implements IB { class in ReflectionBenchmark
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
D | ClassLoaderReflectionTest.java | 160 class F { class in ClassLoaderReflectionTest 163 F(B<String> parameter, List<A> anotherParameter) {} in F() method in ClassLoaderReflectionTest.F
|
/libcore/ojluni/src/test/java/lang/StrictMath/ |
D | FdlibmTranslit.java | 89 …private static final double F = 1.60714285714285720630e+00; /* 45/28 = 0x3FF9B6DB, 0x6DB6DB6E … field in FdlibmTranslit.Cbrt 120 t *= G + F / (s + E + D / s); in compute()
|
/libcore/ojluni/src/test/java/lang/StackWalker/ |
D | StackStreamTest.java | 79 F.f(); in e() 82 static class F { class in StackStreamTest
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | Arrays2Test.java | 100 public void test_equals$F$F() { in test_equals$F$F() 157 public void test_sort$F() { in test_sort$F() 237 public void test_toString$F() { in test_toString$F()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | EnumSetTest.java | 102 H, HE, LI, BE, B, C, N, O, F, NE, NA, MG, AL, SI, P, S, CL, AR, K, CA, SC, TI, V, CR, MN, enumConstant
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StackStreamFactory.java | 853 static abstract class FrameBuffer<F> { 882 abstract F[] frames(); // must not return null in frames() 921 F nextStackFrame() { in nextStackFrame()
|