Home
last modified time | relevance | path

Searched refs:textIn (Results 1 – 16 of 16) sorted by relevance

/external/icu4c/i18n/
Dcsrsbcs.cpp688 int32_t CharsetRecog_8859_1_en::match(InputText *textIn) in match() argument
690 int32_t result = match_sbcs(textIn, ngrams_8859_1_en, charMap_8859_1); in match()
706 int32_t CharsetRecog_8859_1_da::match(InputText *textIn) in match() argument
708 return match_sbcs(textIn, ngrams_8859_1_da, charMap_8859_1); in match()
718 int32_t CharsetRecog_8859_1_de::match(InputText *textIn) in match() argument
720 return match_sbcs(textIn, ngrams_8859_1_de, charMap_8859_1); in match()
733 int32_t CharsetRecog_8859_1_es::match(InputText *textIn) in match() argument
735 return match_sbcs(textIn, ngrams_8859_1_es, charMap_8859_1); in match()
748 int32_t CharsetRecog_8859_1_fr::match(InputText *textIn) in match() argument
750 return match_sbcs(textIn, ngrams_8859_1_fr, charMap_8859_1); in match()
[all …]
Dcsrsbcs.h129 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 …]
Dcsr2022.cpp141 int32_t CharsetRecog_2022JP::match(InputText *textIn) in match() argument
143 …return match_2022(textIn->fInputBytes, textIn->fInputLen, escapeSequences_2022JP, ARRAY_SIZE(escap… in match()
151 int32_t CharsetRecog_2022KR::match(InputText *textIn) in match() argument
153 …return match_2022(textIn->fInputBytes, textIn->fInputLen, escapeSequences_2022KR, ARRAY_SIZE(escap… in match()
161 int32_t CharsetRecog_2022CN::match(InputText *textIn) in match() argument
163 …return match_2022(textIn->fInputBytes, textIn->fInputLen, escapeSequences_2022CN, ARRAY_SIZE(escap… in match()
Dcsrucode.cpp31 int32_t CharsetRecog_UTF_16_BE::match(InputText* textIn) in match() argument
33 const uint8_t *input = textIn->fRawInput; in match()
53 int32_t CharsetRecog_UTF_16_LE::match(InputText* textIn) in match() argument
55 const uint8_t *input = textIn->fRawInput; in match()
70 int32_t CharsetRecog_UTF_32::match(InputText* textIn) in match() argument
72 const uint8_t *input = textIn->fRawInput; in match()
73 int32_t limit = (textIn->fRawLength / 4) * 4; in match()
Dcsdetect.cpp167 : textIn(new InputText()), resultCount(0), fStripTags(FALSE), fFreshTextSet(FALSE) in CharsetDetector()
198 delete textIn; in ~CharsetDetector()
209 textIn->setText(in, len); in setText()
228 textIn->setDeclaredEncoding(encoding,len); in setDeclaredEncoding()
255 if(!textIn->isSet()) { in detectAll()
265 textIn->MungeInput(fStripTags); in detectAll()
272 detectResults = csr->match(textIn); in detectAll()
276 resultArray[resultCount++]->set(textIn, csr, confidence); in detectAll()
281 resultArray[i]->set(textIn, 0, 0); in detectAll()
Dcsrucode.h39 int32_t match(InputText* textIn) = 0;
51 int32_t match(InputText* textIn);
62 int32_t match(InputText* textIn);
75 int32_t match(InputText* textIn);
Dcsr2022.h60 int32_t match(InputText *textIn);
69 int32_t match(InputText *textIn);
80 int32_t match(InputText *textIn);
Dcsmatch.cpp29 textIn = input; in set()
52 …int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLengt… in getUChars()
Ducsdet.cpp51 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status) in ucsdet_setText() argument
57 ((CharsetDetector *) ucsd)->setText(textIn, len); in ucsdet_setText()
Dcsrecog.h34 virtual int32_t match(InputText *textIn) = 0;
Dcsmatch.h24 InputText *textIn; variable
Dcsdetect.h24 InputText *textIn;
Dcsrmbcs.h88 virtual UBool nextChar(IteratedChar *it, InputText *textIn) = 0;
/external/webkit/WebCore/icu/unicode/
Ducsdet.h101 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status);
/external/icu4c/i18n/unicode/
Ducsdet.h101 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status);
/external/icu4c/test/cintltst/
Dcbiditst.c2763 #define TC_COUNT LENGTHOF(textIn)
2768 static const char* const textIn[] = { variable
3230 const char* textIn; in testReorderRunsOnly() member
3292 srcLen = strlen(testCases[i].textIn); in testReorderRunsOnly()
3293 pseudoToU16(srcLen, testCases[i].textIn, src); in testReorderRunsOnly()
3304 checkWhatYouCan(pBiDi, testCases[i].textIn, destChars); in testReorderRunsOnly()
3306 testCases[i].textIn, "UBIDI_REORDER_RUNS_ONLY", in testReorderRunsOnly()
3319 checkWhatYouCan(pL2VBiDi, testCases[i].textIn, vis1Chars); in testReorderRunsOnly()
3328 testCases[i].textIn, "UBIDI_REORDER_RUNS_ONLY (2)", in testReorderRunsOnly()
3377 const char *srcChars = textIn[tc]; in testReorderingMode()
[all …]