Searched refs:fInputText (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | rematch.cpp | 171 if (fInputText) { in ~RegexMatcher() 172 utext_close(fInputText); in ~RegexMatcher() 227 fInputText = NULL; in init() 318 if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) { in appendReplacement() 319 … destLen += utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition, in appendReplacement() 323 if (UTEXT_USES_U16(fInputText)) { in appendReplacement() 327 … len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus); in appendReplacement() 334 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 …]
|
D | uregex.cpp | 1391 if (UTEXT_USES_U16(m->fInputText)) { in appendReplacement() 1397 lastMatchEnd = utext_extract(m->fInputText, 0, m->fLastMatchEnd, NULL, 0, &tempStatus); in appendReplacement() 1399 …matchStart = lastMatchEnd + utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart, NULL, 0… in appendReplacement() 1406 destIdx += utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart, in appendReplacement() 1654 } else if (UTEXT_USES_U16(m->fInputText)) { in appendTail() 1658 srcIdx = utext_extract(m->fInputText, 0, nativeIdx, NULL, 0, &newStatus); in appendTail() 1703 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status); in appendTail() 1817 UText *inputText = regexp->fMatcher->fInputText; in split()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | regex.h | 1805 UText *fInputText; // The text being matched. Is never NULL. variable
|