Searched refs:Bar (Results 1 – 5 of 5) sorted by relevance
/libcore/ojluni/src/test/java/io/Serializable/records/ |
D | BasicRecordSer.java | 65 static class Bar implements Serializable { class in BasicRecordSer 68 Bar(Foo foo, long along) { this.foo = foo; this.along = along; } in Bar() method in BasicRecordSer.Bar 71 if (!(obj instanceof Bar)) in equals() 73 Bar other = (Bar)obj; in equals() 84 record Baz (Bar bar, float afloat, Foo foo) implements Serializable { } 86 record Bat (Empty e1, Foo foo1, Bar bar1, float afloat, Foo foo2, Empty e2, Bar bar2) 114 new Object[] { new Bar(new Foo(33), 1_234_567L) }, in serializable() 115 new Object[] { new Baz(new Bar(new Foo(44), 4_444L), 5.5f, new Foo(55)) }, in serializable() 116 new Object[] { new Bat(new Empty(), new Foo(57), new Bar(new Foo(44), 4_444L), in serializable() 117 5.5f, new Foo(55), new Empty(), new Bar(new Foo(23), 1L)) }, in serializable()
|
D | RecordClassTest.java | 56 record Bar (int x) implements Serializable { 60 record Baz (Foo foo, Bar bar, int i) implements Serializable { } 83 new Object[] { Bar.class , 987654321L }, in recordClasses()
|
/libcore/support/src/test/java/tests/resources/ |
D | hyts_Bar.ser | Bar.java
package foo.bar.execjartest
foo.bar.execjartest.Bar extends java. ... |
/libcore/ojluni/annotations/ |
D | README | 28 …1. libcore/tools/ojluni-annotations/generate_flagged_api_files.sh your.package.Bar another.package…
|
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | MethodHandlesTest.java | 444 Bar.class /* specialCaller */); in testfindSpecial_invokeSuperInterfaceBehaviour() 530 public interface Bar extends Foo { interface in MethodHandlesTest 556 public static class BarImpl extends BarSuper implements Bar {
|