Lines Matching refs:objectValue
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()
531 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument
532 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase()
593 public static double constructBase(Object objectValue) { in constructBase() argument
594 Base b = new Base(objectValue); in constructBase()
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()