Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofile_compilation_info_test.cc67 bool AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfoTest
78 bool AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfoTest
83 return info->AddMethod( in AddMethod()
286 ASSERT_TRUE(AddMethod("dex_location1", /* checksum */ 1, /* method_idx */ i, &saved_info)); in TestProfileLoadFromZip()
287 ASSERT_TRUE(AddMethod("dex_location2", /* checksum */ 2, /* method_idx */ i, &saved_info)); in TestProfileLoadFromZip()
399 ASSERT_TRUE(AddMethod("dex_location1", /* checksum */ 1, /* method_idx */ i, &saved_info)); in TEST_F()
400 ASSERT_TRUE(AddMethod("dex_location2", /* checksum */ 2, /* method_idx */ i, &saved_info)); in TEST_F()
413 ASSERT_TRUE(AddMethod("dex_location1", /* checksum */ 1, /* method_idx */ i, &saved_info)); in TEST_F()
414 ASSERT_TRUE(AddMethod("dex_location2", /* checksum */ 2, /* method_idx */ i, &saved_info)); in TEST_F()
415 ASSERT_TRUE(AddMethod("dex_location3", /* checksum */ 3, /* method_idx */ i, &saved_info)); in TEST_F()
[all …]
Dprofile_compilation_info.h281 bool AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags);
296 if (!data->AddMethod(flags, *it)) { in AddMethodsForDex()
500 bool AddMethod(MethodHotness::Flag flags, size_t index);
565 bool AddMethod(const std::string& dex_location,
Dprofile_compilation_info.cc152 return data->AddMethod(flags, ref.index); in AddMethodIndex()
166 return data->AddMethod(flags, method_idx); in AddMethodIndex()
172 if (!AddMethod(method, flags)) { in AddMethods()
642 bool ProfileCompilationInfo::AddMethod(const std::string& dex_location, in AddMethod() function in art::ProfileCompilationInfo
704 bool ProfileCompilationInfo::AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags) { in AddMethod() function in art::ProfileCompilationInfo
1575 return dex_data->AddMethod( in AddMethodHotness()
1976 bool ProfileCompilationInfo::DexFileData::AddMethod(MethodHotness::Flag flags, size_t index) { in AddMethod() function in art::ProfileCompilationInfo::DexFileData
/art/libdexfile/dex/
Dtest_dex_file_builder_test.cc29 builder.AddMethod("LTestClass;", "()I", "foo"); in TEST()
30 builder.AddMethod("LTestClass;", "(Ljava/lang/Object;[Ljava/lang/Object;)LTestClass;", "bar"); in TEST()
Dtest_dex_file_builder.h62 void AddMethod(const std::string& class_descriptor, const std::string& signature, in AddMethod() function
/art/dex2oat/linker/
Doat_writer_test.cc588 builder1.AddMethod("Lsome.TestClass;", "()I", "foo"); in TestDexFileInput()
603 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar"); in TestDexFileInput()
711 builder1.AddMethod("Lsome.TestClass;", "()D", "foo"); in TestZipFileInput()
729 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar"); in TestZipFileInput()
/art/profman/
Dprofile_assistant_test.cc91 ASSERT_TRUE(info->AddMethod( in SetupProfile()
93 ASSERT_TRUE(info->AddMethod( in SetupProfile()
96 ASSERT_TRUE(info->AddMethod( in SetupProfile()
98 ASSERT_TRUE(info->AddMethod( in SetupProfile()
Dprofman.cc997 profile->AddMethod(ProfileMethodInfo(ref, inline_caches), in ProcessLine()