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

References

unittests/XRay/GraphTest.cpp
  109     EXPECT_EQ(1u, E.count(EV.first));
  110     EXPECT_EQ(VA[EV.first.first] * VA[EV.first.second] *
  110     EXPECT_EQ(VA[EV.first.first] * VA[EV.first.second] *
  111                   ((EV.first.first > EV.first.second) ? 2 : 1),
  111                   ((EV.first.first > EV.first.second) ? 2 : 1),
  112               EV.second.EA);
  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(),
  122           [&](const EVT &EVI) { return EVI.first == EV.first; });
  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(),
  128           [&](const EVT &EVI) { return EVI.first == EV.first; });
  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(),
  135                        [&](const EVT &EVI) { return EVI.first == EV.first; });
  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(),
  141           [&](const EVT &EVI) { return EVI.first == EV.first; });
  142       EXPECT_NE(G.outEdges(EV.first.first).end(), It);