• Home
  • Raw
  • Download

Lines Matching refs:doubleValue

454   public static double constructBase(double doubleValue, Object objectValue) {  in constructBase()  argument
455 Base b = new Base(doubleValue, objectValue); in constructBase()
487 public static double constructBase(int intValue, double doubleValue, Object objectValue) { in constructBase() argument
488 Base b = new Base(intValue, doubleValue, objectValue); in constructBase()
515 public static double constructBaseWith0DoubleNull(double doubleValue) { in constructBaseWith0DoubleNull() argument
516 Base b = new Base(0, doubleValue, null); in constructBaseWith0DoubleNull()
539 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument
540 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase()
566 public static double constructBase(double doubleValue) { in constructBase() argument
567 Base b = new Base(doubleValue); in constructBase()
732 public static double constructDerived(double doubleValue) { in constructDerived() argument
733 Derived d = new Derived(doubleValue); in constructDerived()
776 public static double constructDerived(int intValue, double doubleValue, Object objectValue) { in constructDerived() argument
777 Derived d = new Derived(intValue, doubleValue, objectValue); in constructDerived()
800 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructDerived() argument
801 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue); in constructDerived()
862 int intValue, double doubleValue, Object objectValue, float floatValue) { in constructDerived() argument
863 Derived d = new Derived(intValue, doubleValue, objectValue, floatValue); in constructDerived()
1004 public static double constructDerivedWithFinalField(double doubleValue) { in constructDerivedWithFinalField() argument
1005 DerivedWithFinalField d = new DerivedWithFinalField(doubleValue); in constructDerivedWithFinalField()
1053 public static double constructDerivedWithFinalField(int intValue, double doubleValue) { in constructDerivedWithFinalField() argument
1054 DerivedWithFinalField d = new DerivedWithFinalField(intValue, doubleValue); in constructDerivedWithFinalField()