Home
last modified time | relevance | path

Searched refs:GetDouble (Results 1 – 13 of 13) sorted by relevance

/art/test/551-implicit-null-checks/
Dexpected.txt3 NPE from GetDouble
/art/test/1912-get-set-local-primitive/
Dexpected.txt10 Running public static void art.Test1912.IntMethod(java.lang.Runnable) with "GetDouble" on remote th…
11 "GetDouble" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed due to JVMTI_ER…
43 Running public static void art.Test1912.LongMethod(java.lang.Runnable) with "GetDouble" on remote t…
44 "GetDouble" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed due to JVMTI_E…
76 Running public static void art.Test1912.FloatMethod(java.lang.Runnable) with "GetDouble" on remote …
77 "GetDouble" on public static void art.Test1912.FloatMethod(java.lang.Runnable) failed due to JVMTI_…
109 Running public static void art.Test1912.DoubleMethod(java.lang.Runnable) with "GetDouble" on remote…
110 "GetDouble" on public static void art.Test1912.DoubleMethod(java.lang.Runnable) got value: 3.1415
142 Running public static void art.Test1912.ObjectMethod(java.lang.Runnable) with "GetDouble" on remote…
143 "GetDouble" on public static void art.Test1912.ObjectMethod(java.lang.Runnable) failed due to JVMTI…
[all …]
/art/test/1965-get-set-local-primitive-no-tables/
Dexpected.txt10 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetDouble" on remote threa…
11 "GetDouble" on public static void art_test.TestCases1965.IntMethod(java.util.function.IntConsumer,j…
43 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetDouble" on remote threa…
44 "GetDouble" on public static void art_test.TestCases1965.LongMethod(java.util.function.IntConsumer,…
76 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetDouble" on remote threa…
77 "GetDouble" on public static void art_test.TestCases1965.FloatMethod(java.util.function.IntConsumer…
109 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetDouble" on remote threa…
110 "GetDouble" on public static void art_test.TestCases1965.DoubleMethod(java.util.function.IntConsume…
142 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetDouble" on remote threa…
143 "GetDouble" on public static void art_test.TestCases1965.ObjectMethod(java.util.function.IntConsume…
[all …]
/art/runtime/
Dtransaction_test.cc222 ASSERT_DOUBLE_EQ(doubleField->GetDouble(h_klass.Get()), static_cast<double>(0.0)); in TEST_F()
259 EXPECT_DOUBLE_EQ(doubleField->GetDouble(h_klass.Get()), static_cast<double>(0.0)); in TEST_F()
322 ASSERT_DOUBLE_EQ(doubleField->GetDouble(h_instance.Get()), static_cast<double>(0.0)); in TEST_F()
359 EXPECT_DOUBLE_EQ(doubleField->GetDouble(h_instance.Get()), static_cast<double>(0.0)); in TEST_F()
Dart_field.h147 double GetDouble(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
Dart_field-inl.h261 inline double ArtField::GetDouble(ObjPtr<mirror::Object> object) { in GetDouble() function
Dreflection.cc337 DO_FIRST_ARG("Ljava/lang/Double;", GetDouble, AppendDouble) in BuildArgArrayFromObjectArray()
948 boxed_value.SetD(primitive_field->GetDouble(o)); in UnboxPrimitive()
Dclass_linker_test.cc1219 EXPECT_DOUBLE_EQ(16777217.0, s7->GetDouble(statics.Get())); in TEST_F()
1238 EXPECT_DOUBLE_EQ(16777219.0, s7->GetDouble(statics.Get())); in TEST_F()
/art/dexlayout/
Ddex_writer.cc143 length = EncodeDoubleValue(encoded_value->GetDouble(), buffer); in WriteEncodedValue()
Ddex_ir.h796 double GetDouble() const { return u_.double_val_; } in GetDouble() function
Ddexlayout.cc527 fprintf(out_file_, "%g", data->GetDouble()); in DumpEncodedValue()
/art/oatdump/
Doatdump.cc2078 os << StringPrintf("%f (%a)\n", field->GetDouble(obj), field->GetDouble(obj)); in PrintField()
/art/openjdkjvmti/
Dti_heap.cc601 value.d = field.GetDouble(src); in ReportPrimitiveFieldCallback()