Home
last modified time | relevance | path

Searched refs:C1 (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/test/java/io/Serializable/records/
DReadResolveTest.java51 static class C1 implements Serializable { class in ReadResolveTest
54 C1(int x, int y) { this.x = x; this.y = y; } in C1() method in ReadResolveTest.C1
57 private Object readResolve() { return new C1(x, y); } in readResolve()
65 return obj != null && obj instanceof C1 && ((C1)obj).x == this.x && ((C1)obj).y == y; in equals()
102 new Object[] { new C1(3,4) }, in objectsToSerialize()
/libcore/luni/src/test/java/libcore/libcore/reflect/
DParameterizedTypeRegressionTest.java41 class C1<Z> { class in ParameterizedTypeRegressionTest.A.B
136 Type actual = new ParameterizedClass<A<Integer>.B<Float>.C1<String>>() { in testNested3()
147 A.B.C1.class, in testNested3()
160 Type actual = new ParameterizedClass<A<Integer>.B<Float>.C1<String>.D1>() { in testNested4_nonGenericLeaf()
172 A.B.C1.class, in testNested4_nonGenericLeaf()
174 A.B.C1.D1.class in testNested4_nonGenericLeaf()
/libcore/ojluni/src/test/java/lang/StackWalker/
DEmbeddedStackWalkTest.java67 C1.call(walker, BIG_LOOP); in test()
75 static class C1 { // here is the begin line number of approximate range, L71. class in EmbeddedStackWalkTest
83 assertEquals(caller, C1.class.getName()); in call()
132 verify(walker, C1.class, "call"); in call()
/libcore/luni/src/test/java/libcore/java/lang/
DClassCastExceptionTest.java82 …A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1… enumConstant
87 …A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1… enumConstant
/libcore/benchmarks/src/benchmarks/
DImtConflictBenchmark.java37 C1 c1 = new C1(); in setup()
292 C1 c1 = new C1(); in timeConflictDepth02()
787 static class C1 implements I0, I1 {} class in ImtConflictBenchmark
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DSerializationStressTest1.java221 private static class C1 implements java.io.Serializable { class in SerializationStressTest1.MultipleClassBasedReplacementWhenDumping
244 return new C1(); in writeReplace()
1206 objLoaded instanceof MultipleClassBasedReplacementWhenDumping.C1); in test_18_28_writeObject()
DObjectOutputStreamTest.java259 private static class C1 implements java.io.Serializable { class in ObjectOutputStreamTest.MultipleClassBasedReplacementWhenDumping
282 return new C1(); in writeReplace()