Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DSuffixTreeNode.h34 struct SuffixTreeNode { struct
38 enum class NodeKind { ST_Leaf, ST_Internal };
44 unsigned StartIdx = EmptyIdx;
48 unsigned ConcatLen = 0;
58 unsigned LeftLeafIdx = EmptyIdx;
59 unsigned RightLeafIdx = EmptyIdx;
63 NodeKind getKind() const { return Kind; } in getKind()
92 SuffixTreeNode(NodeKind Kind, unsigned StartIdx) in SuffixTreeNode() argument