| 
    LLVM 22.0.0git
    
   | 
 
#include "llvm/Support/SuffixTreeNode.h"
Public Member Functions | |
| bool | isRoot () const | 
| unsigned | getEndIdx () const override | 
| void | setLink (SuffixTreeInternalNode *L) | 
Sets Link to L. Assumes L is not null.   | |
| SuffixTreeInternalNode * | getLink () const | 
| SuffixTreeInternalNode (unsigned StartIdx, unsigned EndIdx, SuffixTreeInternalNode *Link) | |
| ~SuffixTreeInternalNode () override=default | |
| Public Member Functions inherited from llvm::SuffixTreeNode | |
| NodeKind | getKind () const | 
| LLVM_ABI unsigned | getStartIdx () const | 
| LLVM_ABI unsigned | getLeftLeafIdx () const | 
| LLVM_ABI unsigned | getRightLeafIdx () const | 
| LLVM_ABI void | setLeftLeafIdx (unsigned Idx) | 
Set the index of the left most leaf node of this node to Idx.   | |
| LLVM_ABI void | setRightLeafIdx (unsigned Idx) | 
Set the index of the right most leaf node of this node to Idx.   | |
| LLVM_ABI void | incrementStartIdx (unsigned Inc) | 
Advance this node's StartIdx by Inc.   | |
| LLVM_ABI void | setConcatLen (unsigned Len) | 
Set the length of the string from the root to this node to Len.   | |
| LLVM_ABI unsigned | getConcatLen () const | 
| SuffixTreeNode (NodeKind Kind, unsigned StartIdx) | |
| virtual | ~SuffixTreeNode ()=default | 
Static Public Member Functions | |
| static bool | classof (const SuffixTreeNode *N) | 
Public Attributes | |
| DenseMap< unsigned, SuffixTreeNode * > | Children | 
| The children of this node.   | |
Additional Inherited Members | |
| Public Types inherited from llvm::SuffixTreeNode | |
| enum class | NodeKind { ST_Leaf , ST_Internal } | 
| Static Public Attributes inherited from llvm::SuffixTreeNode | |
| static const unsigned | EmptyIdx = -1 | 
| Represents an undefined index in the suffix tree.   | |
Definition at line 98 of file SuffixTreeNode.h.
      
  | 
  inline | 
Definition at line 153 of file SuffixTreeNode.h.
References llvm::SuffixTreeNode::ST_Internal, SuffixTreeInternalNode(), and llvm::SuffixTreeNode::SuffixTreeNode().
Referenced by getLink(), setLink(), and SuffixTreeInternalNode().
      
  | 
  overridedefault | 
      
  | 
  inlinestatic | 
Definition at line 130 of file SuffixTreeNode.h.
References N, llvm::SuffixTreeNode::ST_Internal, and llvm::SuffixTreeNode::SuffixTreeNode().
      
  | 
  overridevirtual | 
Implements llvm::SuffixTreeNode.
Definition at line 26 of file SuffixTreeNode.cpp.
| SuffixTreeInternalNode * SuffixTreeInternalNode::getLink | ( | ) | const | 
Definition at line 31 of file SuffixTreeNode.cpp.
References SuffixTreeInternalNode().
| bool SuffixTreeInternalNode::isRoot | ( | ) | const | 
SuffixTree. Definition at line 23 of file SuffixTreeNode.cpp.
References llvm::SuffixTreeNode::EmptyIdx, and llvm::SuffixTreeNode::getStartIdx().
| void SuffixTreeInternalNode::setLink | ( | SuffixTreeInternalNode * | L | ) | 
Sets Link to L. Assumes L is not null. 
Definition at line 27 of file SuffixTreeNode.cpp.
References assert(), and SuffixTreeInternalNode().
| DenseMap<unsigned, SuffixTreeNode *> llvm::SuffixTreeInternalNode::Children | 
The children of this node.
A child existing on an unsigned integer implies that from the mapping represented by the current node, there is a way to reach another mapping by tacking that character on the end of the current string.
Definition at line 151 of file SuffixTreeNode.h.