Lines Matching refs:doubleValue
448 public static double constructBase(double doubleValue, Object objectValue) { in constructBase() argument
449 Base b = new Base(doubleValue, objectValue); in constructBase()
480 public static double constructBase(int intValue, double doubleValue, Object objectValue) { in constructBase() argument
481 Base b = new Base(intValue, doubleValue, objectValue); in constructBase()
507 public static double constructBaseWith0DoubleNull(double doubleValue) { in constructBaseWith0DoubleNull() argument
508 Base b = new Base(0, doubleValue, null); in constructBaseWith0DoubleNull()
531 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument
532 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase()
557 public static double constructBase(double doubleValue) { in constructBase() argument
558 Base b = new Base(doubleValue); in constructBase()
716 public static double constructDerived(double doubleValue) { in constructDerived() argument
717 Derived d = new Derived(doubleValue); in constructDerived()
758 public static double constructDerived(int intValue, double doubleValue, Object objectValue) { in constructDerived() argument
759 Derived d = new Derived(intValue, doubleValue, objectValue); in constructDerived()
782 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructDerived() argument
783 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue); in constructDerived()
842 int intValue, double doubleValue, Object objectValue, float floatValue) { in constructDerived() argument
843 Derived d = new Derived(intValue, doubleValue, objectValue, floatValue); in constructDerived()
977 public static double constructDerivedWithFinalField(double doubleValue) { in constructDerivedWithFinalField() argument
978 DerivedWithFinalField d = new DerivedWithFinalField(doubleValue); in constructDerivedWithFinalField()
1023 public static double constructDerivedWithFinalField(int intValue, double doubleValue) { in constructDerivedWithFinalField() argument
1024 DerivedWithFinalField d = new DerivedWithFinalField(intValue, doubleValue); in constructDerivedWithFinalField()