Home
last modified time | relevance | path

Searched refs:GetTypeDescriptor (Results 1 – 23 of 23) sorted by relevance

/art/compiler/utils/
Dtest_dex_file_builder_test.cc65 EXPECT_STREQ(expected_types[i], dex_file->GetTypeDescriptor(dex_file->GetTypeId(i))) << i; in TEST()
/art/runtime/
Dart_field-inl.h266 inline const char* ArtField::GetTypeDescriptor() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetTypeDescriptor() function
281 return Primitive::GetType(GetTypeDescriptor()[0]); in GetTypeAsPrimitiveType()
293 return ProxyFindSystemClass(GetTypeDescriptor()); in GetType()
Dproxy_test.cc180 EXPECT_STREQ("[Ljava/lang/Class;", field->GetTypeDescriptor()); in TEST_F()
189 EXPECT_STREQ("[[Ljava/lang/Class;", field->GetTypeDescriptor()); in TEST_F()
Ddex_file.h551 const char* GetTypeDescriptor(const TypeId& type_id) const { in GetTypeDescriptor() function
584 return GetTypeDescriptor(type_id); in GetFieldDeclaringClassDescriptor()
590 return GetTypeDescriptor(type_id); in GetFieldTypeDescriptor()
624 return GetTypeDescriptor(type_id); in GetMethodDeclaringClassDescriptor()
Dart_method-inl.h429 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx)); in GetReturnTypeDescriptor()
435 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); in GetTypeDescriptorFromTypeIdx()
Dart_field.h174 const char* GetTypeDescriptor() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Dutils.cc276 result += PrettyDescriptor(f->GetTypeDescriptor()); in PrettyField()
307 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id)); in PrettyType()
Ddebugger.cc1565 expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); in OutputDeclaredFields()
1737 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); in OutputFieldValue()
1758 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); in GetFieldBasicTag()
1762 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); in GetStaticFieldBasicTag()
1853 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); in GetFieldValueImpl()
Dclass_linker.cc633 CHECK_STREQ(pendingNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;"); in FinishInit()
637 CHECK_STREQ(queue->GetTypeDescriptor(), "Ljava/lang/ref/ReferenceQueue;"); in FinishInit()
641 CHECK_STREQ(queueNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;"); in FinishInit()
645 CHECK_STREQ(referent->GetTypeDescriptor(), "Ljava/lang/Object;"); in FinishInit()
649 CHECK_STREQ(zombie->GetTypeDescriptor(), "Ljava/lang/Object;"); in FinishInit()
Dclass_linker_test.cc352 const char* descriptor = dex.GetTypeDescriptor(type_id); in AssertDexFile()
Dcheck_jni.cc177 if (c->FindInstanceField(f->GetName(), f->GetTypeDescriptor()) == nullptr) { in CheckInstanceFieldID()
577 PrettyField(field).c_str(), PrettyDescriptor(field->GetTypeDescriptor()).c_str(), in CheckFieldAccess()
/art/compiler/driver/
Dcompiler_driver_test.cc121 << " " << dex.GetTypeDescriptor(dex.GetTypeId(i)); in TEST_F()
Dcompiler_driver.cc803 const char* descriptor = dex_file->GetTypeDescriptor(type_id); in LoadImageClasses()
2519 const char* type = dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_index)); in IsStringTypeIndex()
/art/runtime/mirror/
Dclass.cc556 if (name == f->GetName() && type == f->GetTypeDescriptor()) { in FindDeclaredInstanceField()
603 if (name == f->GetName() && type == f->GetTypeDescriptor()) { in FindDeclaredStaticField()
725 return dex_file.GetTypeDescriptor(type_id); in GetDescriptor()
Dclass-inl.h709 return strcmp(dex_file.GetTypeDescriptor(type_id), match) == 0; in DescriptorEquals()
/art/runtime/hprof/
Dhprof.cc1016 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), &size); in DumpHeapClass()
1058 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), nullptr); in DumpHeapClass()
1129 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), &size); in DumpHeapInstanceObject()
/art/runtime/native/
Djava_lang_reflect_Field.cc313 const char* field_type_desciptor = f->GetArtField()->GetTypeDescriptor(); in Field_set()
/art/runtime/verifier/
Dmethod_verifier.cc4000 field_type = &FromClass(field->GetTypeDescriptor(), field_type_class, in VerifyISFieldAccess()
4124 field_type = &FromClass(field->GetTypeDescriptor(), field_type_class, in VerifyQuickFieldAccess()
4131 field->GetTypeDescriptor(), false); in VerifyQuickFieldAccess()
4333 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx)); in GetMethodReturnType()
4344 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_)); in GetDeclaringClass()
/art/oatdump/
Doatdump.cc1630 os << StringPrintf("null %s\n", PrettyDescriptor(field->GetTypeDescriptor()).c_str()); in PrintField()
1638 PrettyDescriptor(field->GetTypeDescriptor()).c_str()); in PrintField()
1644 os << "unexpected field type: " << field->GetTypeDescriptor() << "\n"; in PrintField()
/art/runtime/arch/
Dstub_test.cc2103 if (f->GetTypeDescriptor()[0] != '[') { in TestFields()
2142 if (f->GetTypeDescriptor()[0] != '[') { in TestFields()
/art/runtime/gc/collector/
Dmark_sweep.cc401 << (field != nullptr ? field->GetTypeDescriptor() : "") in operator ()()
/art/compiler/dex/
Dtype_inference.cc65 const char* desc = dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); in DexType()
/art/runtime/gc/
Dheap.cc662 return dex_file->GetTypeDescriptor(type_id); in SafeGetClassDescriptor()