reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Analysis/LazyCallGraph.h
  499     bool isParentOf(const SCC &C) const;

References

include/llvm/Analysis/LazyCallGraph.h
  513     bool isChildOf(const SCC &C) const { return C.isParentOf(*this); }
unittests/Analysis/LazyCallGraphTest.cpp
  624   EXPECT_TRUE(AC.isParentOf(BC));
  626   EXPECT_TRUE(AC.isParentOf(CC));
  628   EXPECT_FALSE(AC.isParentOf(DC));
  651   EXPECT_TRUE(AC.isParentOf(DC));
  672   EXPECT_FALSE(AC.isParentOf(DC));
  693   EXPECT_TRUE(AC.isParentOf(DC));
  714   EXPECT_FALSE(AC.isParentOf(DC));