Lines Matching full:constructderived
624 /// CHECK-START: double Main.constructDerived() inliner (before)
629 /// CHECK-START: double Main.constructDerived() inliner (after)
634 public static double constructDerived() {
639 /// CHECK-START: double Main.constructDerived(int) inliner (before)
645 /// CHECK-START: double Main.constructDerived(int) inliner (after)
649 /// CHECK-START: double Main.constructDerived(int) inliner (after)
654 /// CHECK-START: double Main.constructDerived(int) inliner (after)
658 public static double constructDerived(int intValue) {
679 /// CHECK-START: java.lang.String Main.constructDerived(java.lang.String) inliner (before)
685 /// CHECK-START: java.lang.String Main.constructDerived(java.lang.String) inliner (after)
689 /// CHECK-START: java.lang.String Main.constructDerived(java.lang.String) inliner (after)
692 public static String constructDerived(String stringValue) {
697 /// CHECK-START: double Main.constructDerived(double) inliner (before)
703 /// CHECK-START: double Main.constructDerived(double) inliner (after)
707 /// CHECK-START: double Main.constructDerived(double) inliner (after)
712 /// CHECK-START: double Main.constructDerived(double) inliner (after)
716 public static double constructDerived(double doubleValue) {
737 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object) inliner (before)
745 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object) inliner (after)
749 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object) inliner (after)
754 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object) inliner (after)
758 public static double constructDerived(int intValue, double doubleValue, Object objectValue) {
764 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object, java.lang.String) inliner (before)
771 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object, java.lang.String) inliner (after)
778 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object, java.lang.String) inliner (after)
781 public static double constructDerived(
789 /// CHECK-START: double Main.constructDerived(float) inliner (before)
795 /// CHECK-START: double Main.constructDerived(float) inliner (after)
799 /// CHECK-START: double Main.constructDerived(float) inliner (after)
804 /// CHECK-START: double Main.constructDerived(float) inliner (after)
808 public static double constructDerived(float floatValue) {
813 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object, float) inliner (before)
822 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object, float) inliner (after)
826 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object, float) inliner (after)
835 /// CHECK-START: double Main.constructDerived(int, double, java.lang.Object, float) inliner (after)
841 public static double constructDerived(
1175 assertEquals(0.0, constructDerived());
1176 assertEquals(73.0, constructDerived(73));
1178 assertEquals(null, constructDerived("something else"));
1179 assertEquals(18.0, constructDerived(18.0));
1181 assertEquals(-7.0, constructDerived(5, 7.0, new Object()));
1182 assertEquals(-4.0, constructDerived(9, 4.0, null));
1183 assertEquals(0.0, constructDerived(1, 9.0, null, null));
1184 assertEquals(0.0, constructDerived(2, 8.0, null, "dummy"));
1185 assertEquals(0.0, constructDerived(3, 7.0, new Object(), null));
1186 assertEquals(0.0, constructDerived(4, 6.0, new Object(), "dummy"));
1187 assertEquals(17.0, constructDerived(17.0f));
1188 assertEquals(-5.5, constructDerived(6, -7.0, new Object(), 6.5f));