Home | History | Annotate | Download | only in i18n

Lines Matching refs:inputNativeLength

446         int64_t inputNativeLength = utext_nativeLength(inputText);
447 if (UTEXT_FULL_TEXT_IN_CHUNK(inputText, inputNativeLength)) {
449 regexp->fTextLength = (int32_t)inputNativeLength;
453 regexp->fTextLength = utext_extract(inputText, 0, inputNativeLength, NULL, 0, &lengthStatus); // buffer overflow error
456 utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status);