Home
last modified time | relevance | path

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

/external/icu4c/i18n/
Drematch.cpp178 if (fInputText) { in ~RegexMatcher()
179 utext_close(fInputText); in ~RegexMatcher()
234 fInputText = NULL; in init()
326 if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) { in appendReplacement()
327 … destLen += utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition, in appendReplacement()
331 if (UTEXT_USES_U16(fInputText)) { in appendReplacement()
335 … len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus); in appendReplacement()
342 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status); in appendReplacement()
516 if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) { in appendTail()
518 utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition, in appendTail()
[all …]
Duregex.cpp1393 if (UTEXT_USES_U16(m->fInputText)) { in appendReplacement()
1399 lastMatchEnd = utext_extract(m->fInputText, 0, m->fLastMatchEnd, NULL, 0, &status); in appendReplacement()
1401 …matchStart = lastMatchEnd + utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart, NULL, 0… in appendReplacement()
1408 destIdx += utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart, in appendReplacement()
1623 } else if (UTEXT_USES_U16(m->fInputText)) { in appendTail()
1627 srcIdx = utext_extract(m->fInputText, 0, nativeIdx, NULL, 0, &status); in appendTail()
1672 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status); in appendTail()
1786 UText *inputText = regexp->fMatcher->fInputText; in split()
/external/icu4c/i18n/unicode/
Dregex.h1770 UText *fInputText; // The text being matched. Is never NULL. variable