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

References

include/llvm/XRay/Graph.h
  254         : M(G.Edges), A(A), NL(isOut ? G.OutNeighbors : G.InNeighbors) {}
  321     iterator begin() { return G.Edges.begin(); }
  322     iterator end() { return G.Edges.end(); }
  327     size_type size() const { return G.Edges.size(); }
  328     bool empty() const { return G.Edges.empty(); }
  341     Edges.clear();
  389     auto &P = Edges.FindAndConstruct(I);
  418     auto It = Edges.find(I);
  419     if (It == Edges.end())
  427     auto It = Edges.find(I);
  428     if (It == Edges.end())
  443   size_type count(const EdgeIdentifier &I) const { return Edges.count(I); }
  462     const auto &p = Edges.insert(Val);
  480     const auto &p = Edges.insert(std::move(Val));