Lines Matching refs:matchindex
240 int32_t matchindex = m_search_->matchedIndex; in next() local
245 if (offset == textlength || matchindex == textlength || in next()
246 (matchindex != USEARCH_DONE && in next()
247 matchindex + matchlength >= textlength)) { in next()
263 return matchindex; in next()
295 int32_t matchindex = m_search_->matchedIndex; in previous() local
303 if (matchindex != USEARCH_DONE) { in previous()
304 return matchindex; in previous()
308 if (offset == 0 || matchindex == 0) { in previous()
315 if (matchindex != USEARCH_DONE) { in previous()
317 matchindex += m_search_->matchedLength - 2; in previous()
320 return handlePrev(matchindex, status); in previous()