Home | History | Annotate | Download | only in src

Lines Matching defs:nextChar

577                     int nextChar = getCodePointAndForwardPointer(root, &pos);
581 while (NOT_A_CODE_POINT != nextChar && --charCount > 0) {
582 outWord[++wordPos] = nextChar;
583 nextChar = getCodePointAndForwardPointer(root, &pos);
641 int nextChar = getCodePointAndForwardPointer(root, &lastCandidateGroupPos);
643 while (-1 != nextChar && --charCount > 0) {
644 outWord[++wordPos] = nextChar;
645 nextChar = getCodePointAndForwardPointer(root, &lastCandidateGroupPos);