Home
last modified time | relevance | path

Searched refs:RepeatedSubstringIterator (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DSuffixTree.h140 struct RepeatedSubstringIterator { struct
164 RepeatedSubstringIterator &operator++() { argument
169 RepeatedSubstringIterator operator++(int I) {
170 RepeatedSubstringIterator It(*this);
175 bool operator==(const RepeatedSubstringIterator &Other) const {
178 bool operator!=(const RepeatedSubstringIterator &Other) const {
182 RepeatedSubstringIterator(SuffixTreeInternalNode *N) : N(N) { in RepeatedSubstringIterator() argument
193 typedef RepeatedSubstringIterator iterator;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DSuffixTree.cpp225 void SuffixTree::RepeatedSubstringIterator::advance() { in advance()