Lines Matching refs:baseChar
1967 PatternMap::getHeader(UChar baseChar) const { in getHeader()
1970 if ( (baseChar >= CAP_A) && (baseChar <= CAP_Z) ) { in getHeader()
1971 curElem = boot[baseChar-CAP_A]; in getHeader()
1974 if ( (baseChar >=LOW_A) && (baseChar <= LOW_Z) ) { in getHeader()
1975 curElem = boot[26+baseChar-LOW_A]; in getHeader()
1999 UChar baseChar = basePattern.charAt(0); in add() local
2004 if ((baseChar >= CAP_A) && (baseChar <= CAP_Z)) { in add()
2005 baseElem = boot[baseChar-CAP_A]; in add()
2008 if ((baseChar >=LOW_A) && (baseChar <= LOW_Z)) { in add()
2009 baseElem = boot[26+baseChar-LOW_A]; in add()
2027 if (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()
2107 UChar baseChar = skeleton.getFirstChar(); in getPatternFromSkeleton() local
2108 if ((curElem=getHeader(baseChar))==nullptr) { in getPatternFromSkeleton()