Home
last modified time | relevance | path

Searched refs:SetDouble (Results 1 – 8 of 8) sorted by relevance

/art/test/1912-get-set-local-primitive/
Dexpected.txt22 Running public static void art.Test1912.IntMethod(java.lang.Runnable) with "SetDouble" on remote th…
23 "SetDouble" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 12…
46 Running public static void art.Test1912.LongMethod(java.lang.Runnable) with "SetDouble" on remote t…
47 "SetDouble" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 1…
70 Running public static void art.Test1912.FloatMethod(java.lang.Runnable) with "SetDouble" on remote …
71 "SetDouble" on public static void art.Test1912.FloatMethod(java.lang.Runnable) failed to set value …
94 Running public static void art.Test1912.DoubleMethod(java.lang.Runnable) with "SetDouble" on remote…
95 "SetDouble" on public static void art.Test1912.DoubleMethod(java.lang.Runnable) set value: 12.4
/art/runtime/
Dart_field.h143 void SetDouble(ObjPtr<mirror::Object> object, double d) REQUIRES_SHARED(Locks::mutator_lock_);
Dtransaction_test.cc240 doubleField->SetDouble<true>(h_klass.Get(), 1.0); in TEST_F()
340 doubleField->SetDouble<true>(h_instance.Get(), 1.0); in TEST_F()
Dart_field-inl.h252 inline void ArtField::SetDouble(ObjPtr<mirror::Object> object, double d) { in SetDouble() function
Dclass_linker_test.cc1197 s7->SetDouble<false>(statics.Get(), 16777219); in TEST_F()
/art/dexlayout/
Ddex_ir.cc247 item->SetDouble(conv.d); in ReadEncodedValue()
Ddex_ir.h796 void SetDouble(double d) { u_.double_val_ = d; } in SetDouble() function
/art/runtime/dex/
Ddex_file_annotations.cc1600 case kDouble: field->SetDouble<kTransactionActive>(field->GetDeclaringClass(), jval_.d); break; in ReadValueToField()