Home
last modified time | relevance | path

Searched refs:matchedLength (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/i18n/
Dsearch.cpp34 m_search_->matchedLength = other.m_search_->matchedLength; in SearchIterator()
107 return m_search_->matchedLength; in getMatchedLength()
113 int32_t matchedlength = m_search_->matchedLength; in getMatchedText()
189 m_search_->matchedLength == that.m_search_->matchedLength && in operator ==()
241 int32_t matchlength = m_search_->matchedLength; in next()
317 matchindex += m_search_->matchedLength - 2; in previous()
353 m_search_->matchedLength = 0; in SearchIterator()
372 m_search_->matchedLength = 0; in SearchIterator()
389 m_search_->matchedLength = 0; in SearchIterator()
408 m_search_->matchedLength = that.m_search_->matchedLength; in operator =()
[all …]
Dstsearch.cpp297 result->setMatchLength(m_strsrch_->search->matchedLength); in safeClone()
314 m_search_->matchedLength = 0; in handleNext()
332 if (m_search_->matchedLength <= 0) { in handleNext()
362 m_search_->matchedLength)) in handleNext()
419 m_search_->matchedLength = 0; in handlePrev()
450 m_search_->matchedLength)) in handlePrev()
Dusearch.cpp766 strsrch->search->matchedLength = 0; in setMatchNotFound()
1114 result = start < lastmatchindex + strsrch->search->matchedLength; in checkRepeatedMatch()
1273 strsrch->search->matchedLength = *textoffset - start; in checkNextExactMatch()
1918 strsrch->search->matchedLength = *textoffset - in checkNextCanonicalMatch()
1941 strsrch->search->matchedLength = *textoffset - start; in checkNextCanonicalMatch()
2120 strsrch->search->matchedLength = end - *textoffset; in checkPreviousExactMatch()
2554 strsrch->search->matchedLength = in checkPreviousCanonicalMatch()
2580 strsrch->search->matchedLength = end - *textoffset; in checkPreviousCanonicalMatch()
2719 result->search->matchedLength = 0; in usearch_openFromCollator()
2812 strsrch->search->matchedLength = 0; in usearch_setOffset()
[all …]
Dusrchimp.h144 int32_t matchedLength; member
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DSearchIterator.java126 int matchedLength() { in matchedLength() method in SearchIterator.Search
130 void setMatchedLength(int matchedLength) { in setMatchedLength() argument
131 SearchIterator.this.matchLength = matchedLength; in setMatchedLength()
323 return search_.matchedLength(); in getMatchLength()
367 if (search_.matchedLength() > 0) { in getMatchedText()
368 int limit = search_.matchedIndex_ + search_.matchedLength(); in getMatchedText()
369 StringBuilder result = new StringBuilder(search_.matchedLength()); in getMatchedText()
401 int matchlength = search_.matchedLength(); in next()
483 matchindex += search_.matchedLength() - 2; in previous()
DStringSearch.java490 if (search_.matchedLength() <= 0) { in handleNext()
1458 textOffset = search_.matchedIndex_ + search_.matchedLength() - 1; in handlePreviousCommonImpl()