Home
last modified time | relevance | path

Searched refs:IsInProfile (Results 1 – 4 of 4) sorted by relevance

/art/libprofile/profile/
Dprofile_compilation_info_test.cc821 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 2)).IsInProfile()); in TEST_F()
822 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 4)).IsInProfile()); in TEST_F()
883 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), 0)).IsInProfile()); in TEST_F()
884 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex.get(), 4)).IsInProfile()); in TEST_F()
885 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex.get(), 7)).IsInProfile()); in TEST_F()
1340 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, index)).IsInProfile()); in TEST_F()
1369 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)).IsInProfile()); in TEST_F()
1410 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)).IsInProfile()); in TEST_F()
1414 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)).IsInProfile()); in TEST_F()
1423 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)).IsInProfile()); in TEST_F()
[all …]
Dprofile_compilation_info.h239 bool IsInProfile() const { in IsInProfile() function
Dprofile_compilation_info.cc3060 if (!hotness.IsInProfile()) { in ExtractProfileData()
/art/profman/
Dprofman.cc1645 DCHECK(profile->GetMethodHotness(ref, annotation).IsInProfile()) << method_spec; in ProcessLine()