Lines Matching refs:boot
1920 boot[i] = nullptr; in PatternMap()
1933 otherElem = other.boot[bootIndex]; in copyFrom()
1950 if (this->boot[bootIndex] == nullptr) { in copyFrom()
1951 this->boot[bootIndex] = curElem; in copyFrom()
1971 curElem = boot[baseChar-CAP_A]; in getHeader()
1975 curElem = boot[26+baseChar-LOW_A]; in getHeader()
1986 if (boot[i] != nullptr ) { in ~PatternMap()
1987 delete boot[i]; in ~PatternMap()
1988 boot[i] = nullptr; in ~PatternMap()
2005 baseElem = boot[baseChar-CAP_A]; in add()
2009 baseElem = boot[26+baseChar-LOW_A]; in add()
2028 … boot[26 + (baseChar - LOW_A)] = newElem.orphan(); // the boot array now owns the PtnElem. in add()
2031 boot[baseChar - CAP_A] = newElem.orphan(); // the boot array now owns the PtnElem. in add()
2137 if (boot[bootIndex] == other.boot[bootIndex]) { in equals()
2140 if ((boot[bootIndex] == nullptr) || (other.boot[bootIndex] == nullptr)) { in equals()
2143 PtnElem *otherElem = other.boot[bootIndex]; in equals()
2144 PtnElem *myElem = boot[bootIndex]; in equals()
2586 if ( patternMap->boot[headIndex] != nullptr ) { in hasNext()
2613 if ( patternMap->boot[bootIndex] != nullptr ) { in next()
2614 nodePtr = patternMap->boot[bootIndex]; in next()
2784 curElem = patternMap.boot[bootIndex]; in DTSkeletonEnumeration()