Home | History | Annotate | Download | only in i18n

Lines Matching refs:textIn

53 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const
55 const uint8_t *input = textIn->fRawInput;
57 int32_t length = textIn->fRawLength;
74 results->set(textIn, this, confidence);
88 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const
90 const uint8_t *input = textIn->fRawInput;
92 int32_t length = textIn->fRawLength;
112 results->set(textIn, this, confidence);
121 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const
123 const uint8_t *input = textIn->fRawInput;
124 int32_t limit = (textIn->fRawLength / 4) * 4;
160 results->set(textIn, this, confidence);