Lines Matching refs:inputText
447 UText *inputText = regexp->fMatcher->inputText(); in uregex_getText() local
448 int64_t inputNativeLength = utext_nativeLength(inputText); in uregex_getText()
449 if (UTEXT_FULL_TEXT_IN_CHUNK(inputText, inputNativeLength)) { in uregex_getText()
450 regexp->fText = inputText->chunkContents; in uregex_getText()
455 …regexp->fTextLength = utext_extract(inputText, 0, inputNativeLength, NULL, 0, &lengthStatus); // b… in uregex_getText()
458 … utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status); in uregex_getText()
723 …int32_t length = utext_extract(regexp->fMatcher->inputText(), start, limit, dest, destCapacity, st… in uregex_group()
1817 UText *inputText = regexp->fMatcher->fInputText; in split() local
1848 destIdx += 1 + utext_extract(inputText, nextOutputStringStart, inputLen, in split()
1859 … destIdx += 1 + utext_extract(inputText, nextOutputStringStart, regexp->fMatcher->fMatchStart, in split()
1917 destIdx += 1 + utext_extract(inputText, nextOutputStringStart, inputLen, in split()
1974 …return regexp->fMatcher->split(regexp->fMatcher->inputText(), destFields, destFieldsCapacity, *sta… in uregex_splitUText()