Home
last modified time | relevance | path

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

/art/runtime/
Dfield_helper.cc31 field_->GetTypeDescriptor()); in GetType()
Dproxy_test.cc188 EXPECT_EQ("[Ljava/lang/Class;", std::string(fh.GetField()->GetTypeDescriptor())); in TEST_F()
196 EXPECT_EQ("[[Ljava/lang/Class;", std::string(fh.GetField()->GetTypeDescriptor())); in TEST_F()
Ddex_file.h534 const char* GetTypeDescriptor(const TypeId& type_id) const { in GetTypeDescriptor() function
567 return GetTypeDescriptor(type_id); in GetFieldDeclaringClassDescriptor()
573 return GetTypeDescriptor(type_id); in GetFieldTypeDescriptor()
607 return GetTypeDescriptor(type_id); in GetMethodDeclaringClassDescriptor()
Dutils.cc298 result += PrettyDescriptor(f->GetTypeDescriptor()); in PrettyField()
329 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id)); in PrettyType()
Ddebugger.cc1599 expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); in OutputDeclaredFields()
1768 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); in OutputFieldValue()
1790 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); in GetFieldBasicTag()
1794 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); in GetStaticFieldBasicTag()
1838 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); in GetFieldValueImpl()
1887 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); in SetFieldValueImpl()
Dclass_linker.cc555 CHECK_STREQ(pendingNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;"); in FinishInit()
559 CHECK_STREQ(queue->GetTypeDescriptor(), "Ljava/lang/ref/ReferenceQueue;"); in FinishInit()
563 CHECK_STREQ(queueNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;"); in FinishInit()
567 CHECK_STREQ(referent->GetTypeDescriptor(), "Ljava/lang/Object;"); in FinishInit()
571 CHECK_STREQ(zombie->GetTypeDescriptor(), "Ljava/lang/Object;"); in FinishInit()
Dclass_linker_test.cc355 const char* descriptor = dex->GetTypeDescriptor(type_id); in AssertDexFile()
Dcheck_jni.cc262 if (c->FindInstanceField(f->GetName(), f->GetTypeDescriptor()) == nullptr) { in CheckInstanceFieldID()
/art/compiler/sea_ir/types/
Dtype_inference.cc43 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_)); in FunctionTypeInfo()
53 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_)); in FunctionTypeInfo()
/art/runtime/mirror/
Dart_field-inl.h255 inline const char* ArtField::GetTypeDescriptor() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetTypeDescriptor() function
270 return Primitive::GetType(GetTypeDescriptor()[0]); in GetTypeAsPrimitiveType()
Dart_field.h158 const char* GetTypeDescriptor() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Dart_method-inl.h516 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx)); in GetReturnTypeDescriptor()
522 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); in GetTypeDescriptorFromTypeIdx()
Dclass.cc559 if (name == f->GetName() && type == f->GetTypeDescriptor()) { in FindDeclaredInstanceField()
606 if (name == f->GetName() && type == f->GetTypeDescriptor()) { in FindDeclaredStaticField()
733 return dex_file.GetTypeDescriptor(type_id); in GetDescriptor()
Dclass-inl.h682 return strcmp(dex_file.GetTypeDescriptor(type_id), match) == 0; in DescriptorEquals()
/art/compiler/driver/
Dcompiler_driver_test.cc120 << " " << dex->GetTypeDescriptor(dex->GetTypeId(i)); in TEST_F()
Dcompiler_driver.cc760 const char* descriptor = dex_file->GetTypeDescriptor(type_id); in LoadImageClasses()
/art/runtime/hprof/
Dhprof.cc956 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), &size); in DumpHeapObject()
978 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), NULL); in DumpHeapObject()
1040 SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), &size); in DumpHeapObject()
/art/runtime/native/
Djava_lang_reflect_Field.cc279 const char* field_type_desciptor = f->GetTypeDescriptor(); in Field_set()
/art/runtime/verifier/
Dmethod_verifier.cc3792 field_type = &reg_types_.FromClass(field->GetTypeDescriptor(), field_type_class, in VerifyISFieldAccess()
3913 field_type = &reg_types_.FromClass(field->GetTypeDescriptor(), field_type_class, in VerifyQuickFieldAccess()
3920 field->GetTypeDescriptor(), false); in VerifyQuickFieldAccess()
4111 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx)); in GetMethodReturnType()
4122 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_)); in GetDeclaringClass()
/art/runtime/arch/
Dstub_test.cc1572 if (test_type == type && f->GetTypeDescriptor()[0] != '[') { in TestFields()
1607 if (test_type == type && f->GetTypeDescriptor()[0] != '[') { in TestFields()
/art/oatdump/
Doatdump.cc1153 const char* descriptor = field->GetTypeDescriptor(); in PrintField()
/art/runtime/gc/
Dheap.cc583 return dex_file->GetTypeDescriptor(type_id); in SafeGetClassDescriptor()