Lines Matching refs:doubleValue

458   public static double constructBase(double doubleValue, Object objectValue) {  in constructBase()  argument
459 Base b = new Base(doubleValue, objectValue); in constructBase()
491 public static double constructBase(int intValue, double doubleValue, Object objectValue) { in constructBase() argument
492 Base b = new Base(intValue, doubleValue, objectValue); in constructBase()
519 public static double constructBaseWith0DoubleNull(double doubleValue) { in constructBaseWith0DoubleNull() argument
520 Base b = new Base(0, doubleValue, null); in constructBaseWith0DoubleNull()
543 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument
544 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase()
570 public static double constructBase(double doubleValue) { in constructBase() argument
571 Base b = new Base(doubleValue); in constructBase()
736 public static double constructDerived(double doubleValue) { in constructDerived() argument
737 Derived d = new Derived(doubleValue); in constructDerived()
780 public static double constructDerived(int intValue, double doubleValue, Object objectValue) { in constructDerived() argument
781 Derived d = new Derived(intValue, doubleValue, objectValue); in constructDerived()
804 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructDerived() argument
805 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue); in constructDerived()
866 int intValue, double doubleValue, Object objectValue, float floatValue) { in constructDerived() argument
867 Derived d = new Derived(intValue, doubleValue, objectValue, floatValue); in constructDerived()
1008 public static double constructDerivedWithFinalField(double doubleValue) { in constructDerivedWithFinalField() argument
1009 DerivedWithFinalField d = new DerivedWithFinalField(doubleValue); in constructDerivedWithFinalField()
1057 public static double constructDerivedWithFinalField(int intValue, double doubleValue) { in constructDerivedWithFinalField() argument
1058 DerivedWithFinalField d = new DerivedWithFinalField(intValue, doubleValue); in constructDerivedWithFinalField()