Home
last modified time | relevance | path

Searched refs:GetFloat (Results 1 – 12 of 12) sorted by relevance

/art/test/1912-get-set-local-primitive/
Dexpected.txt7 Running public static void art.Test1912.IntMethod(java.lang.Runnable) with "GetFloat" on remote thr…
8 "GetFloat" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed due to JVMTI_ERR…
40 Running public static void art.Test1912.LongMethod(java.lang.Runnable) with "GetFloat" on remote th…
41 "GetFloat" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed due to JVMTI_ER…
73 Running public static void art.Test1912.FloatMethod(java.lang.Runnable) with "GetFloat" on remote t…
74 "GetFloat" on public static void art.Test1912.FloatMethod(java.lang.Runnable) got value: 1.618
106 Running public static void art.Test1912.DoubleMethod(java.lang.Runnable) with "GetFloat" on remote …
107 "GetFloat" on public static void art.Test1912.DoubleMethod(java.lang.Runnable) failed due to JVMTI_…
139 Running public static void art.Test1912.ObjectMethod(java.lang.Runnable) with "GetFloat" on remote …
140 "GetFloat" 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.txt7 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetFloat" on remote thread.
8 "GetFloat" on public static void art_test.TestCases1965.IntMethod(java.util.function.IntConsumer,ja…
40 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetFloat" on remote thread.
41 "GetFloat" on public static void art_test.TestCases1965.LongMethod(java.util.function.IntConsumer,j…
73 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetFloat" on remote thread.
74 "GetFloat" on public static void art_test.TestCases1965.FloatMethod(java.util.function.IntConsumer,…
106 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetFloat" on remote thread.
107 "GetFloat" on public static void art_test.TestCases1965.DoubleMethod(java.util.function.IntConsumer…
139 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetFloat" on remote thread.
140 "GetFloat" on public static void art_test.TestCases1965.ObjectMethod(java.util.function.IntConsumer…
[all …]
/art/runtime/
Dtransaction_test.cc217 ASSERT_FLOAT_EQ(floatField->GetFloat(h_klass.Get()), static_cast<float>(0.0f)); in TEST_F()
258 EXPECT_FLOAT_EQ(floatField->GetFloat(h_klass.Get()), static_cast<float>(0.0f)); in TEST_F()
317 ASSERT_FLOAT_EQ(floatField->GetFloat(h_instance.Get()), static_cast<float>(0.0f)); in TEST_F()
358 EXPECT_FLOAT_EQ(floatField->GetFloat(h_instance.Get()), static_cast<float>(0.0f)); in TEST_F()
Dart_field.h142 float GetFloat(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
Dreflection.cc328 DO_FIRST_ARG("Ljava/lang/Float;", GetFloat, AppendFloat) in BuildArgArrayFromObjectArray()
338 DO_ARG("Ljava/lang/Float;", GetFloat, AppendDouble) in BuildArgArrayFromObjectArray()
945 boxed_value.SetF(primitive_field->GetFloat(o)); in UnboxPrimitive()
Dart_field-inl.h246 inline float ArtField::GetFloat(ObjPtr<mirror::Object> object) { in GetFloat() function
Dclass_linker_test.cc1214 EXPECT_DOUBLE_EQ(0.5, s6->GetFloat(statics.Get())); in TEST_F()
1237 EXPECT_FLOAT_EQ(0.75, s6->GetFloat(statics.Get())); in TEST_F()
/art/dexlayout/
Ddex_writer.cc139 length = EncodeFloatValue(encoded_value->GetFloat(), buffer); in WriteEncodedValue()
Ddex_ir.h795 float GetFloat() const { return u_.float_val_; } in GetFloat() function
Ddexlayout.cc523 fprintf(out_file_, "%g", data->GetFloat()); in DumpEncodedValue()
/art/oatdump/
Doatdump.cc2081 os << StringPrintf("%f (%a)\n", field->GetFloat(obj), field->GetFloat(obj)); in PrintField()
/art/openjdkjvmti/
Dti_heap.cc598 value.f = field.GetFloat(src); in ReportPrimitiveFieldCallback()