Lines Matching refs:intValue

361   public static double constructBase(int intValue) {  in constructBase()  argument
362 Base b = new Base(intValue); 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()
619 public static double constructBase(int intValue, long dummy) { in constructBase() argument
620 Base b = new Base(intValue, dummy); in constructBase()
658 public static double constructDerived(int intValue) { in constructDerived() argument
659 Derived d = new Derived(intValue); 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()
882 public static int constructBaseWithFinalField(int intValue) { in constructBaseWithFinalField() argument
883 BaseWithFinalField b = new BaseWithFinalField(intValue); in constructBaseWithFinalField()
937 public static double constructDerivedWithFinalField(int intValue) { in constructDerivedWithFinalField() argument
938 DerivedWithFinalField d = new DerivedWithFinalField(intValue); in constructDerivedWithFinalField()
1023 public static double constructDerivedWithFinalField(int intValue, double doubleValue) { in constructDerivedWithFinalField() argument
1024 DerivedWithFinalField d = new DerivedWithFinalField(intValue, doubleValue); in constructDerivedWithFinalField()
1076 public static int constructDerivedInSecondDex(int intValue) { in constructDerivedInSecondDex() argument
1077 DerivedInSecondDex d = new DerivedInSecondDex(intValue); in constructDerivedInSecondDex()