Lines Matching refs:boot
1912 boot[i] = nullptr; in PatternMap()
1925 otherElem = other.boot[bootIndex]; in copyFrom()
1942 if (this->boot[bootIndex] == nullptr) { in copyFrom()
1943 this->boot[bootIndex] = curElem; in copyFrom()
1963 curElem = boot[baseChar-CAP_A]; in getHeader()
1967 curElem = boot[26+baseChar-LOW_A]; in getHeader()
1978 if (boot[i] != nullptr ) { in ~PatternMap()
1979 delete boot[i]; in ~PatternMap()
1980 boot[i] = nullptr; in ~PatternMap()
1997 baseElem = boot[baseChar-CAP_A]; in add()
2001 baseElem = boot[26+baseChar-LOW_A]; in add()
2020 … boot[26 + (baseChar - LOW_A)] = newElem.orphan(); // the boot array now owns the PtnElem. in add()
2023 boot[baseChar - CAP_A] = newElem.orphan(); // the boot array now owns the PtnElem. in add()
2129 if (boot[bootIndex] == other.boot[bootIndex]) { in equals()
2132 if ((boot[bootIndex] == nullptr) || (other.boot[bootIndex] == nullptr)) { in equals()
2135 PtnElem *otherElem = other.boot[bootIndex]; in equals()
2136 PtnElem *myElem = boot[bootIndex]; in equals()
2578 if ( patternMap->boot[headIndex] != nullptr ) { in hasNext()
2605 if ( patternMap->boot[bootIndex] != nullptr ) { in next()
2606 nodePtr = patternMap->boot[bootIndex]; in next()
2776 curElem = patternMap.boot[bootIndex]; in DTSkeletonEnumeration()