Lines Matching refs:inWord
446 uint16_t inWord[inputLength];
449 inWord[i] = (uint16_t)mProximityInfo->getPrimaryCharAt(startInputIndex + i);
451 return getMostFrequentWordLikeInner(inWord, inputLength, word);
455 // and check it actually like-matches the word in inWord starting at startInputIndex,
468 const uint16_t* const inWord, const int startInputIndex,
474 const uint16_t wChar = Dictionary::toBaseLowerCase(inWord[startInputIndex]);
487 if (Dictionary::toBaseLowerCase(inWord[++inputIndex]) != baseChar) {
517 int UnigramDictionary::getMostFrequentWordLikeInner(const uint16_t * const inWord,
537 const bool isAlike = testCharGroupForContinuedLikeness(flags, root, pos, inWord,
574 bool UnigramDictionary::isValidWord(const uint16_t* const inWord, const int length) const {
575 return NOT_VALID_WORD != BinaryFormat::getTerminalPosition(DICT_ROOT, inWord, length);