Home
last modified time | relevance | path

Searched refs:breakiterator (Results 1 – 3 of 3) sorted by relevance

/external/chromium/third_party/icu/source/i18n/
Dusearch.cpp577 UBreakIterator *breakiterator = strsrch->search->internalBreakIter; in checkBreakBoundary() local
578 if (breakiterator) { in checkBreakBoundary()
582 if (!ubrk_isBoundary(breakiterator, matchend)) { in checkBreakBoundary()
583 *end = ubrk_following(breakiterator, matchend); in checkBreakBoundary()
608 UBreakIterator *breakiterator = strsrch->search->breakIter; in isBreakUnit() local
610 if (breakiterator) { in isBreakUnit()
611 int32_t startindex = ubrk_first(breakiterator); in isBreakUnit()
612 int32_t endindex = ubrk_last(breakiterator); in isBreakUnit()
623 ubrk_following(breakiterator, start - 1) == start) && in isBreakUnit()
625 ubrk_following(breakiterator, end - 1) == end); in isBreakUnit()
[all …]
/external/icu4c/i18n/
Dusearch.cpp587 UBreakIterator *breakiterator = strsrch->search->internalBreakIter; in checkBreakBoundary() local
588 if (breakiterator) { in checkBreakBoundary()
592 if (!ubrk_isBoundary(breakiterator, matchend)) { in checkBreakBoundary()
593 *end = ubrk_following(breakiterator, matchend); in checkBreakBoundary()
618 UBreakIterator *breakiterator = strsrch->search->breakIter; in isBreakUnit() local
620 if (breakiterator) { in isBreakUnit()
621 int32_t startindex = ubrk_first(breakiterator); in isBreakUnit()
622 int32_t endindex = ubrk_last(breakiterator); in isBreakUnit()
633 ubrk_following(breakiterator, start - 1) == start) && in isBreakUnit()
635 ubrk_following(breakiterator, end - 1) == end); in isBreakUnit()
[all …]
/external/webkit/WebCore/
DChangeLog-2010-01-2912062 Make ICU's text breakiterator and string search use Chrome's UI