mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
parent
735645589e
commit
1a666c1029
4 changed files with 8 additions and 24 deletions
|
@ -120,13 +120,9 @@ class BurmeseBreakEngine extends DictionaryBreakEngine {
|
|||
// If we're already at the end of the range, we're done
|
||||
if (fIter.getIndex() < rangeEnd) {
|
||||
do {
|
||||
int wordsMatched = 1;
|
||||
if (words[(wordsFound+1)%BURMESE_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd) > 0) {
|
||||
if (wordsMatched < 2) {
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%BURMESE_LOOKAHEAD].markCurrent();
|
||||
wordsMatched = 2;
|
||||
}
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%BURMESE_LOOKAHEAD].markCurrent();
|
||||
|
||||
// If we're already at the end of the range, we're done
|
||||
if (fIter.getIndex() >= rangeEnd) {
|
||||
|
|
|
@ -124,13 +124,9 @@ class KhmerBreakEngine extends DictionaryBreakEngine {
|
|||
// If we're already at the end of the range, we're done
|
||||
if (fIter.getIndex() < rangeEnd) {
|
||||
do {
|
||||
int wordsMatched = 1;
|
||||
if (words[(wordsFound+1)%KHMER_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd) > 0) {
|
||||
if (wordsMatched < 2) {
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%KHMER_LOOKAHEAD].markCurrent();
|
||||
wordsMatched = 2;
|
||||
}
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%KHMER_LOOKAHEAD].markCurrent();
|
||||
|
||||
// If we're already at the end of the range, we're done
|
||||
if (fIter.getIndex() >= rangeEnd) {
|
||||
|
|
|
@ -123,13 +123,9 @@ class LaoBreakEngine extends DictionaryBreakEngine {
|
|||
// If we're already at the end of the range, we're done
|
||||
if (fIter.getIndex() < rangeEnd) {
|
||||
do {
|
||||
int wordsMatched = 1;
|
||||
if (words[(wordsFound+1)%LAO_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd) > 0) {
|
||||
if (wordsMatched < 2) {
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%LAO_LOOKAHEAD].markCurrent();
|
||||
wordsMatched = 2;
|
||||
}
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%LAO_LOOKAHEAD].markCurrent();
|
||||
|
||||
// If we're already at the end of the range, we're done
|
||||
if (fIter.getIndex() >= rangeEnd) {
|
||||
|
|
|
@ -134,13 +134,9 @@ class ThaiBreakEngine extends DictionaryBreakEngine {
|
|||
if (fIter.getIndex() < rangeEnd) {
|
||||
foundBest:
|
||||
do {
|
||||
int wordsMatched = 1;
|
||||
if (words[(wordsFound+1)%THAI_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd) > 0) {
|
||||
if (wordsMatched < 2) {
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%THAI_LOOKAHEAD].markCurrent();
|
||||
wordsMatched = 2;
|
||||
}
|
||||
// Followed by another dictionary word; mark first word as a good candidate
|
||||
words[wordsFound%THAI_LOOKAHEAD].markCurrent();
|
||||
|
||||
// If we're already at the end of the range, we're done
|
||||
if (fIter.getIndex() >= rangeEnd) {
|
||||
|
|
Loading…
Add table
Reference in a new issue