Lines Matching refs:oText
378 int32_t oText; // offset into 'text' in matchAndReplace() local
392 oText = posBefore(text, pos.start); in matchAndReplace()
395 match = anteContext->matches(text, oText, anteLimit, FALSE); in matchAndReplace()
401 minOText = posAfter(text, oText); in matchAndReplace()
405 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace()
411 oText = pos.start; in matchAndReplace()
414 match = key->matches(text, oText, pos.limit, incremental); in matchAndReplace()
420 keyLimit = oText; in matchAndReplace()
431 match = postContext->matches(text, oText, pos.contextLimit, incremental); in matchAndReplace()
440 if (oText != pos.contextLimit) { in matchAndReplace()
457 oText += lenDelta; in matchAndReplace()
461 pos.start = uprv_max(minOText, uprv_min(uprv_min(oText, pos.limit), newStart)); in matchAndReplace()