Home
last modified time | relevance | path

Searched refs:GetDependents (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dcha_test.cc39 ASSERT_TRUE(cha.GetDependents(METHOD1).empty()); in TEST_F()
40 ASSERT_TRUE(cha.GetDependents(METHOD2).empty()); in TEST_F()
41 ASSERT_TRUE(cha.GetDependents(METHOD3).empty()); in TEST_F()
44 ASSERT_TRUE(cha.GetDependents(METHOD2).empty()); in TEST_F()
45 ASSERT_TRUE(cha.GetDependents(METHOD3).empty()); in TEST_F()
46 auto dependents = cha.GetDependents(METHOD1); in TEST_F()
52 ASSERT_TRUE(cha.GetDependents(METHOD2).empty()); in TEST_F()
53 ASSERT_TRUE(cha.GetDependents(METHOD3).empty()); in TEST_F()
54 dependents = cha.GetDependents(METHOD1); in TEST_F()
64 ASSERT_TRUE(cha.GetDependents(METHOD2).empty()); in TEST_F()
[all …]
Dcha.h100 const ListOfDependentPairs& GetDependents(ArtMethod* method) REQUIRES(Locks::cha_lock_);
Dcha.cc45 const ClassHierarchyAnalysis::ListOfDependentPairs& ClassHierarchyAnalysis::GetDependents( in GetDependents() function in art::ClassHierarchyAnalysis
668 for (const auto& dependent : GetDependents(invalidated)) { in InvalidateSingleImplementationMethods()