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.h33 struct SuffixTreeNode { struct
37 enum class NodeKind { ST_Leaf, ST_Internal };
43 unsigned StartIdx = EmptyIdx;
47 unsigned ConcatLen = 0;
57 unsigned LeftLeafIdx = EmptyIdx;
58 unsigned RightLeafIdx = EmptyIdx;
62 NodeKind getKind() const { return Kind; } in getKind()
91 SuffixTreeNode(NodeKind Kind, unsigned StartIdx) in SuffixTreeNode() argument