Home
last modified time | relevance | path

Searched refs:GetChar (Results 1 – 14 of 14) sorted by relevance

/aosp12/art/runtime/
H A Dreflection.cc304 DO_FIRST_ARG("Ljava/lang/Character;", GetChar, Append) in BuildArgArrayFromObjectArray()
314 DO_ARG("Ljava/lang/Character;", GetChar, Append) in BuildArgArrayFromObjectArray()
322 DO_ARG("Ljava/lang/Character;", GetChar, AppendWide) in BuildArgArrayFromObjectArray()
331 DO_ARG("Ljava/lang/Character;", GetChar, AppendFloat) in BuildArgArrayFromObjectArray()
341 DO_ARG("Ljava/lang/Character;", GetChar, AppendDouble) in BuildArgArrayFromObjectArray()
964 boxed_value.SetC(primitive_field->GetChar(o)); in UnboxPrimitive()
H A Dtransaction_test.cc197 ASSERT_EQ(charField->GetChar(h_klass.Get()), 0u); in TEST_F()
254 EXPECT_EQ(charField->GetChar(h_klass.Get()), 0u); in TEST_F()
297 ASSERT_EQ(charField->GetChar(h_instance.Get()), 0u); in TEST_F()
354 EXPECT_EQ(charField->GetChar(h_instance.Get()), 0u); in TEST_F()
H A Dcommon_dex_operations.h131 result->SetC(field->GetChar(obj)); in DoFieldGetCommon()
H A Dart_field.h122 uint16_t GetChar(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
H A Dart_field-inl.h176 inline uint16_t ArtField::GetChar(ObjPtr<mirror::Object> object) { in GetChar() function
H A Dclass_linker_test.cc1197 EXPECT_EQ('a', s2->GetChar(statics.Get())); in TEST_F()
1236 EXPECT_EQ('b', s2->GetChar(statics.Get())); in TEST_F()
/aosp12/art/dexlayout/
H A Ddex_verify.cc594 if (orig->GetChar() != output->GetChar()) { in VerifyEncodedValue()
597 orig->GetChar(), in VerifyEncodedValue()
598 output->GetChar()); in VerifyEncodedValue()
H A Ddex_writer.cc130 length = EncodeUIntValue(encoded_value->GetChar(), buffer); in WriteEncodedValue()
H A Ddex_ir.h792 uint16_t GetChar() const { return u_.char_val_; } in GetChar() function
H A Ddexlayout.cc514 fprintf(out_file_, "%" PRIu16, data->GetChar()); in DumpEncodedValue()
/aosp12/art/runtime/hprof/
H A Dhprof.cc1351 __ AddU2(field.GetChar(klass)); in DumpHeapClass()
1501 __ AddU2(f->GetChar(obj)); in DumpHeapInstanceObject()
/aosp12/art/oatdump/
H A Doatdump.cc1929 os << StringPrintf("%u (0x%x)\n", field->GetChar(obj), field->GetChar(obj)); in PrintField()
/aosp12/art/openjdkjvmti/
H A Dti_heap.cc586 value.c = field.GetChar(src); in ReportPrimitiveFieldCallback()
/aosp12/art/runtime/arch/
H A Dstub_test.cc1253 uint16_t res = f->GetChar(obj->Get()); in GetSetCharInstance()