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

References

unittests/XRay/GraphTest.cpp
   94   EXPECT_EQ(E.size(), G.edges().size());
   95   EXPECT_FALSE(G.edges().empty());
   97     auto EEV = G.at(u);
   99     EXPECT_EQ(1u, G.count(u));
  103     EXPECT_NE(G.edges().end(),
  104               std::find_if(G.edges().begin(), G.edges().end(), Pred));
  104               std::find_if(G.edges().begin(), G.edges().end(), Pred));
  108   for (auto &EV : G.edges()) {
  113     const auto &IE = G.inEdges(EV.first.second);
  114     const auto &OE = G.outEdges(EV.first.first);
  121           G.inEdges(EV.first.second).begin(), G.inEdges(EV.first.second).end(),
  121           G.inEdges(EV.first.second).begin(), G.inEdges(EV.first.second).end(),
  123       EXPECT_NE(G.inEdges(EV.first.second).end(), It);
  127           G.inEdges(EV.first.first).begin(), G.inEdges(EV.first.first).end(),
  127           G.inEdges(EV.first.first).begin(), G.inEdges(EV.first.first).end(),
  129       EXPECT_EQ(G.inEdges(EV.first.first).end(), It);
  133           std::find_if(G.outEdges(EV.first.second).begin(),
  134                        G.outEdges(EV.first.second).end(),
  136       EXPECT_EQ(G.outEdges(EV.first.second).end(), It);
  140           G.outEdges(EV.first.first).begin(), G.outEdges(EV.first.first).end(),
  140           G.outEdges(EV.first.first).begin(), G.outEdges(EV.first.first).end(),
  142       EXPECT_NE(G.outEdges(EV.first.first).end(), It);