Searched refs:fInputText (Results 1 – 3 of 3) sorted by relevance
/external/icu4c/i18n/ |
D | rematch.cpp | 178 if (fInputText) { in ~RegexMatcher() 179 utext_close(fInputText); in ~RegexMatcher() 234 fInputText = NULL; in init() 320 if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) { in appendReplacement() 321 … destLen += utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition, in appendReplacement() 325 if (UTEXT_USES_U16(fInputText)) { in appendReplacement() 329 … len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus); in appendReplacement() 336 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status); in appendReplacement() 510 if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) { in appendTail() 512 utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition, in appendTail() [all …]
|
D | uregex.cpp | 1393 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() 1621 } else if (UTEXT_USES_U16(m->fInputText)) { in appendTail() 1625 srcIdx = utext_extract(m->fInputText, 0, nativeIdx, NULL, 0, &status); in appendTail() 1667 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status); in appendTail() 1781 UText *inputText = regexp->fMatcher->fInputText; in split()
|
/external/icu4c/i18n/unicode/ |
D | regex.h | 1715 UText *fInputText; // The text being matched. Is never NULL. variable
|