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

Declarations

include/llvm/Analysis/LazyCallGraph.h
  634     bool isParentOf(const RefSCC &RC) const;

References

include/llvm/Analysis/LazyCallGraph.h
  647     bool isChildOf(const RefSCC &RC) const { return RC.isParentOf(*this); }
unittests/Analysis/LazyCallGraphTest.cpp
  333   EXPECT_FALSE(D.isParentOf(D));
  349   EXPECT_TRUE(C.isParentOf(D));
  365   EXPECT_TRUE(B.isParentOf(D));
  383   EXPECT_TRUE(A.isParentOf(B));
  384   EXPECT_TRUE(A.isParentOf(C));
  385   EXPECT_FALSE(A.isParentOf(D));
  623   EXPECT_TRUE(ARC.isParentOf(BRC));
  625   EXPECT_TRUE(ARC.isParentOf(CRC));
  627   EXPECT_FALSE(ARC.isParentOf(DRC));
  650   EXPECT_TRUE(ARC.isParentOf(DRC));
  671   EXPECT_TRUE(ARC.isParentOf(DRC));
  692   EXPECT_TRUE(ARC.isParentOf(DRC));
  713   EXPECT_FALSE(ARC.isParentOf(DRC));
  822   EXPECT_TRUE(ARC.isParentOf(CRC));
  823   EXPECT_TRUE(BRC.isParentOf(CRC));
  914   EXPECT_TRUE(ARC.isParentOf(CRC));
  915   EXPECT_TRUE(BRC.isParentOf(CRC));
 1177   EXPECT_FALSE(NewDRC.isParentOf(D2RC));
 1178   EXPECT_TRUE(CRC.isParentOf(D2RC));
 1179   EXPECT_TRUE(CRC.isParentOf(NewDRC));
 1180   EXPECT_TRUE(D2RC.isParentOf(NewDRC));
 1182   EXPECT_FALSE(CRC.isParentOf(D2RC));
 1183   EXPECT_TRUE(CRC.isParentOf(NewDRC));
 1184   EXPECT_TRUE(D2RC.isParentOf(NewDRC));
 1201   EXPECT_TRUE(CRC.isParentOf(NewDRC));
 1979   EXPECT_TRUE(GRC.isParentOf(FRC));
 2007   EXPECT_FALSE(GRC.isParentOf(FRC));
 2008   EXPECT_FALSE(FRC.isParentOf(GRC));