Home
last modified time | relevance | path

Searched defs:doubleValue (Results 1 – 9 of 9) sorted by relevance

/art/test/569-checker-pattern-replacement/src-multidex/
DDerived.java31 public Derived(double doubleValue) { in Derived()
35 public Derived(int intValue, double doubleValue, Object objectValue) { in Derived()
41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { in Derived()
56 public Derived(int intValue, double doubleValue, Object objectValue, float floatValue) { in Derived()
DBase.java34 Base(double doubleValue, Object objectValue) { in Base()
39 Base(int intValue, double doubleValue, Object objectValue) { in Base()
45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { in Base()
53 Base(double doubleValue) { in Base()
DDerivedWithFinalField.java27 DerivedWithFinalField(double doubleValue) { in DerivedWithFinalField()
32 DerivedWithFinalField(int intValue, double doubleValue) { in DerivedWithFinalField()
/art/test/569-checker-pattern-replacement/src/
DMain.java454 public static double constructBase(double doubleValue, Object objectValue) { in constructBase()
487 public static double constructBase(int intValue, double doubleValue, Object objectValue) { in constructBase()
515 public static double constructBaseWith0DoubleNull(double doubleValue) { in constructBaseWith0DoubleNull()
539 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase()
566 public static double constructBase(double doubleValue) { in constructBase()
732 public static double constructDerived(double doubleValue) { in constructDerived()
776 public static double constructDerived(int intValue, double doubleValue, Object objectValue) { in constructDerived()
800 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructDerived()
862 int intValue, double doubleValue, Object objectValue, float floatValue) { in constructDerived()
1004 public static double constructDerivedWithFinalField(double doubleValue) { in constructDerivedWithFinalField()
[all …]
/art/test/952-invoke-custom/util-src/annotations/
DConstant.java40 double[] doubleValue() default {}; in doubleValue() method
/art/test/715-clinit-implicit-parameter-annotations/src/
DMain.java79 private double doubleValue; field in Main.ImportantNumber
82 ImportantNumber(@AnnotationA double doubleValue) { in ImportantNumber()
87 ImportantNumber(@AnnotationB("x") double doubleValue, @AnnotationB("y") boolean isLarge) { in ImportantNumber()
/art/test/070-nio-buffer/src/
DMain.java136 final double doubleValue = Double.MIN_VALUE; in storeValues() local
/art/test/912-classes/src-art/art/
DTest912.java427 public static double doubleValue = Math.random(); // So it can't be compile-time initialized. field in Test912.TestForNonInit
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java542 double doubleValue = value instanceof Double ? ((Double) value).doubleValue() : -1.0; in tryAccessor() local