HomeSort by relevance Sort by last modified time
    Searched refs:textIn (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/i18n/
csrecog.h 34 virtual int32_t match(InputText *textIn) = 0;
csrsbcs.h 129 int32_t match(InputText *textIn);
139 int32_t match(InputText *textIn);
149 int32_t match(InputText *textIn);
159 int32_t match(InputText *textIn);
169 int32_t match(InputText *textIn);
179 int32_t match(InputText *textIn);
189 int32_t match(InputText *textIn);
199 int32_t match(InputText *textIn);
209 int32_t match(InputText *textIn);
219 int32_t match(InputText *textIn);
    [all...]
csrucode.cpp 31 int32_t CharsetRecog_UTF_16_BE::match(InputText* textIn)
33 const uint8_t *input = textIn->fRawInput;
34 int32_t length = textIn->fRawLength;
54 int32_t CharsetRecog_UTF_16_LE::match(InputText* textIn)
56 const uint8_t *input = textIn->fRawInput;
57 int32_t length = textIn->fRawLength;
72 int32_t CharsetRecog_UTF_32::match(InputText* textIn)
74 const uint8_t *input = textIn->fRawInput;
75 int32_t limit = (textIn->fRawLength / 4) * 4;
csr2022.h 60 int32_t match(InputText *textIn);
69 int32_t match(InputText *textIn);
80 int32_t match(InputText *textIn);
csrucode.h 39 int32_t match(InputText* textIn) = 0;
51 int32_t match(InputText* textIn);
62 int32_t match(InputText* textIn);
75 int32_t match(InputText* textIn);
csmatch.cpp 29 textIn = input;
52 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
csr2022.cpp 144 int32_t CharsetRecog_2022JP::match(InputText *textIn)
146 return match_2022(textIn->fInputBytes, textIn->fInputLen, escapeSequences_2022JP, ARRAY_SIZE(escapeSequences_2022JP));
154 int32_t CharsetRecog_2022KR::match(InputText *textIn)
156 return match_2022(textIn->fInputBytes, textIn->fInputLen, escapeSequences_2022KR, ARRAY_SIZE(escapeSequences_2022KR));
164 int32_t CharsetRecog_2022CN::match(InputText *textIn)
166 return match_2022(textIn->fInputBytes, textIn->fInputLen, escapeSequences_2022CN, ARRAY_SIZE(escapeSequences_2022CN));
csmatch.h 24 InputText *textIn;
csdetect.cpp 173 : textIn(new InputText(status)), resultArray(NULL),
205 delete textIn;
216 textIn->setText(in, len);
235 textIn->setDeclaredEncoding(encoding,len);
262 if(!textIn->isSet()) {
272 textIn->MungeInput(fStripTags);
279 detectResults = csr->match(textIn);
283 resultArray[resultCount++]->set(textIn, csr, confidence);
288 resultArray[i]->set(textIn, 0, 0);
csdetect.h 24 InputText *textIn;
ucsdet.cpp 51 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status)
57 ((CharsetDetector *) ucsd)->setText(textIn, len);
csrmbcs.h 88 virtual UBool nextChar(IteratedChar *it, InputText *textIn) = 0;
csrsbcs.cpp     [all...]
  /external/icu4c/i18n/
csr2022.h 65 UBool match(InputText *textIn, CharsetMatch *results) const;
74 UBool match(InputText *textIn, CharsetMatch *results) const;
85 UBool match(InputText *textIn, CharsetMatch *results) const;
csmatch.cpp 22 : textIn(NULL), confidence(0), fCharsetName(NULL), fLang(NULL)
30 textIn = input;
62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
csrecog.h 47 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
csrucode.h 39 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
51 UBool match(InputText* textIn, CharsetMatch *results) const;
62 UBool match(InputText* textIn, CharsetMatch *results) const;
75 UBool match(InputText* textIn, CharsetMatch *results) const;
csrucode.cpp 32 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const
34 const uint8_t *input = textIn->fRawInput;
42 results->set(textIn, this, confidence);
56 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const
58 const uint8_t *input = textIn->fRawInput;
66 results->set(textIn, this, confidence);
75 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const
77 const uint8_t *input = textIn->fRawInput;
78 int32_t limit = (textIn->fRawLength / 4) * 4;
114 results->set(textIn, this, confidence)
    [all...]
csr2022.cpp 146 UBool CharsetRecog_2022JP::match(InputText *textIn, CharsetMatch *results) const {
147 int32_t confidence = match_2022(textIn->fInputBytes,
148 textIn->fInputLen,
151 results->set(textIn, this, confidence);
161 UBool CharsetRecog_2022KR::match(InputText *textIn, CharsetMatch *results) const {
162 int32_t confidence = match_2022(textIn->fInputBytes,
163 textIn->fInputLen,
166 results->set(textIn, this, confidence);
176 UBool CharsetRecog_2022CN::match(InputText *textIn, CharsetMatch *results) const {
177 int32_t confidence = match_2022(textIn->fInputBytes
    [all...]
csmatch.h 34 InputText *textIn;
csdetect.h 24 InputText *textIn;
csdetect.cpp 161 : textIn(new InputText(status)), resultArray(NULL),
193 delete textIn;
204 textIn->setText(in, len);
223 textIn->setDeclaredEncoding(encoding,len);
250 if(!textIn->isSet()) {
258 textIn->MungeInput(fStripTags);
265 if (csr->match(textIn, resultArray[resultCount])) {
ucsdet.cpp 51 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status)
57 ((CharsetDetector *) ucsd)->setText(textIn, len);
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ucsdet.h 114 * @param textIn the input text of unknown encoding. .
122 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status);
  /external/icu4c/i18n/unicode/
ucsdet.h 114 * @param textIn the input text of unknown encoding. .
122 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status);

Completed in 1297 milliseconds

1 2