Home
last modified time | relevance | path

Searched refs:SetFloat (Results 1 – 9 of 9) sorted by relevance

/aosp12/art/test/1912-get-set-local-primitive/
H A Dexpected-stdout.txt22 Running public static void art.Test1912.IntMethod(java.lang.Runnable) with "SetFloat" on remote thr…
23 "SetFloat" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 9.2…
55 Running public static void art.Test1912.LongMethod(java.lang.Runnable) with "SetFloat" on remote th…
56 "SetFloat" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 9.…
88 Running public static void art.Test1912.FloatMethod(java.lang.Runnable) with "SetFloat" on remote t…
89 "SetFloat" on public static void art.Test1912.FloatMethod(java.lang.Runnable) set value: 9.2
121 Running public static void art.Test1912.DoubleMethod(java.lang.Runnable) with "SetFloat" on remote …
122 "SetFloat" on public static void art.Test1912.DoubleMethod(java.lang.Runnable) failed to set value …
154 Running public static void art.Test1912.ObjectMethod(java.lang.Runnable) with "SetFloat" on remote …
155 "SetFloat" on public static void art.Test1912.ObjectMethod(java.lang.Runnable) failed to set value …
[all …]
/aosp12/art/test/1965-get-set-local-primitive-no-tables/
H A Dexpected-stdout.txt22 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "SetFloat" on remote thread.
23 "SetFloat" on public static void art_test.TestCases1965.IntMethod(java.util.function.IntConsumer,ja…
55 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "SetFloat" on remote thread.
56 "SetFloat" on public static void art_test.TestCases1965.LongMethod(java.util.function.IntConsumer,j…
88 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "SetFloat" on remote thread.
89 "SetFloat" on public static void art_test.TestCases1965.FloatMethod(java.util.function.IntConsumer,…
121 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "SetFloat" on remote thread.
122 "SetFloat" on public static void art_test.TestCases1965.DoubleMethod(java.util.function.IntConsumer…
154 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "SetFloat" on remote thread.
187 …ethod(java.util.function.IntConsumer,java.util.function.Consumer) with "SetFloat" on remote thread.
[all …]
/aosp12/art/runtime/
H A Dart_field.h145 void SetFloat(ObjPtr<mirror::Object> object, float f) REQUIRES_SHARED(Locks::mutator_lock_);
H A Dtransaction_test.cc246 floatField->SetFloat<true>(h_klass.Get(), 1.0); in TEST_F()
346 floatField->SetFloat<true>(h_instance.Get(), 1.0); in TEST_F()
H A Dart_field-inl.h254 inline void ArtField::SetFloat(ObjPtr<mirror::Object> object, float f) { in SetFloat() function
H A Dclass_linker_test.cc1218 s6->SetFloat<false>(statics.Get(), 0.75); in TEST_F()
/aosp12/art/dexlayout/
H A Ddex_ir.h777 void SetFloat(float f) { u_.float_val_ = f; } in SetFloat() function
H A Ddex_ir_builder.cc1142 item->SetFloat(conv.f); in ReadEncodedValue()
/aosp12/art/runtime/dex/
H A Ddex_file_annotations.cc1734 case kFloat: field->SetFloat<kTransactionActive>(field->GetDeclaringClass(), jval_.f); break; in ReadValueToField()