Home | History | Annotate | Download | only in common

Lines Matching refs:rangeEnd

56     int32_t rangeEnd;
65 rangeEnd = start + 1;
73 rangeEnd = current;
76 result = divideUpDictionaryRange(text, rangeStart, rangeEnd, foundBreaks);
122 int candidates( UText *text, const TrieWordDictionary *dict, int32_t rangeEnd );
148 PossibleWord::candidates( UText *text, const TrieWordDictionary *dict, int32_t rangeEnd ) {
153 prefix = dict->matches(text, rangeEnd-start, lengths, count, sizeof(lengths)/sizeof(lengths[0]));
246 int32_t rangeEnd,
248 if ((rangeEnd - rangeStart) < THAI_MIN_WORD_SPAN) {
261 while (U_SUCCESS(status) && (current = (int32_t)utext_getNativeIndex(text)) < rangeEnd) {
265 int candidates = words[wordsFound%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd);
276 if ((int32_t)utext_getNativeIndex(text) >= rangeEnd) {
281 if (words[(wordsFound+1)%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd) > 0) {
289 if ((int32_t)utext_getNativeIndex(text) >= rangeEnd) {
296 if (words[(wordsFound+2)%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd)) {
315 if ((int32_t)utext_getNativeIndex(text) < rangeEnd && wordLength < THAI_ROOT_COMBINE_THRESHOLD) {
319 if (words[wordsFound%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd) <= 0
324 int32_t remaining = rangeEnd - (current+wordLength);
342 int candidates = words[(wordsFound+1)%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd);
367 while ((currPos = (int32_t)utext_getNativeIndex(text)) < rangeEnd && fMarkSet.contains(utext_current32(text))) {
376 if ((int32_t)utext_getNativeIndex(text) < rangeEnd && wordLength > 0) {
377 if (words[wordsFound%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd) <= 0
417 if (foundBreaks.peeki() >= rangeEnd) {