Home | History | Annotate | Download | only in i18n

Lines Matching refs:textIn

32 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const
34 const uint8_t *input = textIn->fRawInput;
36 int32_t length = textIn->fRawLength;
43 results->set(textIn, this, confidence);
57 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const
59 const uint8_t *input = textIn->fRawInput;
61 int32_t length = textIn->fRawLength;
68 results->set(textIn, this, confidence);
77 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const
79 const uint8_t *input = textIn->fRawInput;
80 int32_t limit = (textIn->fRawLength / 4) * 4;
116 results->set(textIn, this, confidence);