Home
last modified time | relevance | path

Searched defs:CycleGraphTraits (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DGenericCycleInfo.h321 template <typename CycleRefT, typename ChildIteratorT> struct CycleGraphTraits { struct
322 using NodeRef = CycleRefT;
324 using nodes_iterator = ChildIteratorT;
325 using ChildIteratorType = nodes_iterator;
327 static NodeRef getEntryNode(NodeRef Graph) { return Graph; } in getEntryNode()
329 static ChildIteratorType child_begin(NodeRef Ref) { in child_begin()
332 static ChildIteratorType child_end(NodeRef Ref) { return Ref->child_end(); } in child_end()