Home | History | Annotate | Download | only in i18n

Lines Matching refs:textIn

55 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const
57 const uint8_t *input = textIn->fRawInput;
59 int32_t length = textIn->fRawLength;
76 results->set(textIn, this, confidence);
90 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const
92 const uint8_t *input = textIn->fRawInput;
94 int32_t length = textIn->fRawLength;
114 results->set(textIn, this, confidence);
123 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const
125 const uint8_t *input = textIn->fRawInput;
126 int32_t limit = (textIn->fRawLength / 4) * 4;
162 results->set(textIn, this, confidence);