Home | History | Annotate | Download | only in src

Lines Matching defs:inputIndex

352     const int inputIndex = correction->getInputIndex();
353 const bool addToSubQueue = inputIndex < SUB_QUEUE_MAX_COUNT;
404 if (inputIndex >= SUB_QUEUE_MIN_WORD_LENGTH && addToSubQueue) {
406 subQueue = queuePool->getSubQueue(currentWordIndex, inputIndex);
411 probability, &wordPointer, &wordLength, inputIndex);
707 int inputIndex = startInputIndex;
708 outNewWord[inputIndex] = codePoint;
713 if (inputIndex + 1 >= inputSize || toBaseLowerCase(inWord[++inputIndex]) != baseChar) {
718 outNewWord[inputIndex] = codePoint;
722 *outInputIndex = inputIndex + 1;
762 int inputIndex = stackInputIndex[depth];
767 // only write into inputIndex if there is a match.
769 inputIndex, inputSize, newWord, &inputIndex, &pos);
771 && (BinaryFormat::FLAG_IS_TERMINAL & flags) && (inputIndex == inputSize)) {
774 onTerminalWordLike(probability, newWord, inputIndex, outWord, &maxFreq);
781 // anyway, so don't traverse unless inputIndex < inputSize.
782 if (isAlike && (-1 != childrenNodePos) && (inputIndex < inputSize)) {
792 stackInputIndex[depth] = inputIndex;