Home
last modified time | relevance | path

Searched refs:FindTypeId (Results 1 – 18 of 18) sorted by relevance

/art/runtime/
Dsdk_checker.cc57 dex_file->FindTypeId(art_method->GetDeclaringClassDescriptor()); in ShouldDenyAccess()
104 const dex::TypeId* declaring_type_id = dex_file->FindTypeId( in ShouldDenyAccess()
113 const dex::TypeId* type_id = dex_file->FindTypeId(art_field->GetTypeDescriptor()); in ShouldDenyAccess()
140 const dex::TypeId* type_id = dex_file->FindTypeId(descriptor); in ShouldDenyAccess()
Dart_method.cc255 const dex::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor); in FindDexMethodIndexInOtherDexFile()
444 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage)); in FindOatMethodFromDexFileFor()
Dclass_linker_test.cc1011 const dex::TypeId* array_id = dex_file.FindTypeId("[Ljava/lang/Object;"); in TEST_F()
1336 const dex::TypeId* type_id = dex_file->FindTypeId("LStaticsFromCode;"); in TEST_F()
Doat_file.cc2270 const dex::TypeId* type_id = dex_file.FindTypeId(descriptor); in FindClassDef()
/art/libdexfile/dex/
Dart_dex_file_loader_test.cc242 TEST_F(ArtDexFileLoaderTest, FindTypeId) { in TEST_F() argument
248 const dex::TypeId* type_id = java_lang_dex_file_->FindTypeId(type_str_idx); in TEST_F()
249 ASSERT_EQ(type_id, java_lang_dex_file_->FindTypeId(type_str)); in TEST_F()
Ddex_file.h274 const dex::TypeId* FindTypeId(const char* string) const;
275 const dex::TypeId* FindTypeId(std::string_view string) const { in FindTypeId() function
276 return FindTypeId(std::string(string).c_str()); in FindTypeId()
312 const dex::TypeId* FindTypeId(dex::StringIndex string_idx) const;
Ddex_file.cc346 const TypeId* DexFile::FindTypeId(const char* string) const { in FindTypeId() function in art::DexFile
366 const TypeId* DexFile::FindTypeId(dex::StringIndex string_idx) const { in FindTypeId() function in art::DexFile
456 const TypeId* type_id = FindTypeId(descriptor.c_str()); in CreateTypeList()
/art/dex2oat/
Ddex2oat_vdex_test.cc102 const dex::TypeId* type_id = dex_file.FindTypeId(cls.c_str()); in GetClassDefIndex()
Dverifier_deps_test.cc247 const dex::TypeId* type_id = dex_file.FindTypeId(cls.c_str()); in GetClassDefIndex()
Ddex2oat_test.cc1153 const dex::TypeId* type_id = dex->FindTypeId("LManyMethods;"); in TEST_F()
1252 const dex::TypeId* type_id = dex_file->FindTypeId("LManyMethods;"); in TEST_F()
/art/profman/
Dprofman.cc1043 const dex::TypeId* type_id = dex_file->FindTypeId(klass_descriptor); in FindClassDef()
1064 const dex::TypeId* type_id = dex_file->FindTypeId(klass_descriptor); in FindClass()
1508 class_ref.dex_file->FindTypeId(receiver_str.c_str()); in ProcessLine()
Dprofile_assistant_test.cc1582 dex::TypeIndex target_type_index(dex_file->GetIndexForTypeId(*dex_file->FindTypeId("LSubA;"))); in TEST_F()
1591 *dex_file->FindMethodId(*dex_file->FindTypeId("LTestInlineSubtype;"), in TEST_F()
/art/runtime/mirror/
Dobject_test.cc409 const dex::TypeId* klass_type_id = dex_file->FindTypeId("LStaticsFromCode;"); in TEST_F()
412 const dex::TypeId* type_type_id = dex_file->FindTypeId("Ljava/lang/Object;"); in TEST_F()
Dclass.cc1385 const dex::TypeId* type_id = dex_file.FindTypeId(GetDescriptor(&temp)); in FindTypeIndexInOtherDexFile()
/art/openjdkjvmti/
Dti_redefine.cc2567 dex_file_->GetIndexForTypeId(*dex_file_->FindTypeId(method.GetReturnTypeDescriptor())); in UpdateMethods()
2573 *dex_file_->FindTypeId( in UpdateMethods()
2602 dex_file_->FindTypeId(field.GetDeclaringClass()->GetDescriptor(&declaring_class_name)); in UpdateFields()
2604 const art::dex::TypeId* new_type_id = dex_file_->FindTypeId(field.GetTypeDescriptor()); in UpdateFields()
3030 mclass->SetDexTypeIndex(dex_file_->GetIndexForTypeId(*dex_file_->FindTypeId(class_sig_.c_str()))); in UpdateClassInPlace()
/art/tools/hiddenapi/
Dhiddenapi_test.cc167 const dex::TypeId* type_id = dex_file.FindTypeId(desc); in FindClass()
/art/libprofile/profile/
Dprofile_compilation_info_test.cc652 const dex::TypeId* dex1_tid = dex1->FindTypeId(kDex1Class); in TEST_F()
655 ASSERT_FALSE(dex2->FindTypeId(kDex1Class) != nullptr); in TEST_F()
Dprofile_compilation_info.cc687 const dex::TypeId* type_id = dex_file.FindTypeId(descriptor); in FindOrCreateTypeIndex()