Home
last modified time | relevance | path

Searched refs:doubleValue (Results 1 – 25 of 101) sorted by relevance

12345

/aosp12/art/test/569-checker-pattern-replacement/src-multidex/
H A DDerived.java31 public Derived(double doubleValue) { in Derived() argument
32 super(doubleValue, null); in Derived()
35 public Derived(int intValue, double doubleValue, Object objectValue) { in Derived() argument
36 super(intValue, doubleValue, objectValue); in Derived()
41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { in Derived() argument
42 super(intValue, doubleValue, objectValue, stringValue); in Derived()
56 public Derived(int intValue, double doubleValue, Object objectValue, float floatValue) { in Derived() argument
57 super(intValue, doubleValue, objectValue); in Derived()
H A DBase.java34 Base(double doubleValue, Object objectValue) { in Base() argument
35 doubleField = doubleValue; in Base()
39 Base(int intValue, double doubleValue, Object objectValue) { in Base() argument
41 doubleField = doubleValue; in Base()
45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { in Base() argument
48 doubleField = doubleValue; in Base()
53 Base(double doubleValue) { in Base() argument
54 this(doubleValue, null); in Base()
H A DDerivedWithFinalField.java27 DerivedWithFinalField(double doubleValue) { in DerivedWithFinalField() argument
29 doubleField = doubleValue; in DerivedWithFinalField()
32 DerivedWithFinalField(int intValue, double doubleValue) { in DerivedWithFinalField() argument
34 doubleField = doubleValue; in DerivedWithFinalField()
/aosp12/art/test/569-checker-pattern-replacement/src/
H A DMain.java459 Base b = new Base(doubleValue, objectValue); in constructBase()
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()
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()
781 Derived d = new Derived(intValue, doubleValue, objectValue); in constructDerived()
[all …]
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk_platform-source/gen/include/aidl/android/aidl/tests/
H A DParcelableForToString.h31 double doubleValue = 0.000000; variable
55doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
58doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
61doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
64doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
67doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
70doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
81 os << ", doubleValue: " << ::android::internal::ToString(doubleValue); in toString()
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/
H A DParcelableForToString.h25doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
28doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
31doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
34doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
37doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
40doubleValue, doubleArray, floatValue, floatArray, byteValue, byteArray, booleanValue, booleanArray…
47 double doubleValue = double(0.000000); variable
79 os << ", doubleValue: " << ::android::internal::ToString(doubleValue); in toString()
/aosp12/art/test/715-clinit-implicit-parameter-annotations/src/
H A DMain.java79 private double doubleValue; field in Main.ImportantNumber
82 ImportantNumber(@AnnotationA double doubleValue) { in ImportantNumber() argument
83 this.doubleValue = doubleValue; in ImportantNumber()
87 ImportantNumber(@AnnotationB("x") double doubleValue, @AnnotationB("y") boolean isLarge) { in ImportantNumber() argument
88 this.doubleValue = doubleValue; in ImportantNumber()
/aosp12/art/test/070-nio-buffer/src/
H A DMain.java136 final double doubleValue = Double.MIN_VALUE; in storeValues() local
156 if (doubleBuf.put(3, doubleValue).get(3) != doubleValue) { in storeValues()
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-java-source/gen/android/aidl/loggable/
H A DILoggableInterface.java10 …gValue, long[] longArray, float floatValue, float[] floatArray, double doubleValue, double[] doubl… in LogThis() argument
163 …gValue, long[] longArray, float floatValue, float[] floatArray, double doubleValue, double[] doubl… in LogThis() argument
183 _data.writeDouble(doubleValue); in LogThis()
207 …ray, intValue, intArray, longValue, longArray, floatValue, floatArray, doubleValue, doubleArray, s… in LogThis()
254 …gValue, long[] longArray, float floatValue, float[] floatArray, double doubleValue, double[] doubl… in LogThis() argument
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/
H A DParcelableForToString.rs7 pub doubleValue: f64, field
35 doubleValue: 0.000000f64, in default()
76 subparcel.write(&this.doubleValue)?; in serialize_option()
137 result.doubleValue = parcel.read()?; in deserialize_option()
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/
H A DParcelableForToString.java11 public double doubleValue = 0.000000; field in ParcelableForToString
50 _aidl_parcel.writeDouble(doubleValue); in writeToParcel()
107 doubleValue = _aidl_parcel.readDouble(); in readFromParcel()
173 _aidl_sj.add("doubleValue: " + (doubleValue)); in toString()
/aosp12/system/tools/aidl/tests/
H A Daidl_test_client_loggable_interface.cpp70 double doubleValue{52}; in TEST_F() local
87 doubleValue, &doubleArray, stringValue, &stringArray, &listValue, in TEST_F()
H A Daidl_test_client_ndk_loggable_interface.cpp76 double doubleValue{52}; in TEST_F() local
92 doubleValue, &doubleArray, stringValue, &stringArray, &listValue, in TEST_F()
/aosp12/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp234 *value = (float)item->u.doubleValue; in findAsFloat()
298 BASIC_TYPE(Double,doubleValue,double) in BASIC_TYPE()
598 "double %s = %f", item.mName, item.u.doubleValue); in debugString()
716 item->u.doubleValue = parcel.readDouble(); in FromParcel()
804 parcel->writeDouble(item.u.doubleValue); in writeToParcel()
871 if (oitem == NULL || item.u.doubleValue != oitem->u.doubleValue) { in changesFrom()
973 case kTypeDouble: it.set(mItems[index].u.doubleValue); break; in getEntryAt()
1043 } else if (item.find(&dst->u.doubleValue)) { in setEntryAt()
/aosp12/art/test/952-invoke-custom/src/
H A DTestBadBootstrapArguments.java178 @Constant(doubleValue = Math.PI)
205 @Constant(doubleValue = Math.PI),
295 @Constant(doubleValue = Double.MAX_VALUE),
339 @Constant(doubleValue = Double.MAX_VALUE),
H A DTestVariableArityLinkerMethod.java351 @Constant(doubleValue = Double.MAX_VALUE),
352 @Constant(doubleValue = Double.MIN_VALUE),
353 @Constant(doubleValue = Math.E),
354 @Constant(doubleValue = -Math.PI)
/aosp12/hardware/interfaces/drm/1.1/
H A Dtypes.hal50 * doubleValue: 0.00000042
77 double doubleValue;
94 double doubleValue;
/aosp12/art/test/952-invoke-custom/util-src/annotations/
H A DConstant.java40 double[] doubleValue() default {}; in doubleValue() method
/aosp12/art/test/Dex2oatVdexTestDex/
H A DDex2oatVdexTestDex.java29 return i.doubleValue(); in foo()
/aosp12/system/tools/aidl/tests/android/aidl/loggable/
H A DILoggableInterface.aidl9 inout float[] floatArray, double doubleValue, inout double[] doubleArray, in LogThis() argument
/aosp12/art/test/952-invoke-custom/util-src/transformer/
H A DIndyTransformer.java144 } else if (constant.doubleValue().length == 1) { in visitMethod()
145 return constant.doubleValue()[0]; in visitMethod()
/aosp12/system/tools/aidl/tests/android/aidl/tests/
H A DParcelableForToString.aidl31 double doubleValue;
/aosp12/packages/modules/StatsD/statsd/src/metrics/
H A DValueMetricProducer.cpp1291 double doubleValue = in valuePassesThreshold() local
1295 return doubleValue < (double)mUploadThreshold->lt_int(); in valuePassesThreshold()
1297 return doubleValue > (double)mUploadThreshold->gt_int(); in valuePassesThreshold()
1299 return doubleValue <= (double)mUploadThreshold->lte_int(); in valuePassesThreshold()
1301 return doubleValue >= (double)mUploadThreshold->gte_int(); in valuePassesThreshold()
1303 return doubleValue <= (double)mUploadThreshold->lt_float(); in valuePassesThreshold()
1305 return doubleValue >= (double)mUploadThreshold->gt_float(); in valuePassesThreshold()
/aosp12/art/test/1968-force-early-return/src/art/
H A DNonStandardExit.java38 forceEarlyReturnDouble(thr, n.doubleValue()); in forceEarlyReturn()
/aosp12/art/test/1969-force-early-return-void/src/art/
H A DNonStandardExit.java38 forceEarlyReturnDouble(thr, n.doubleValue()); in forceEarlyReturn()

12345