Home
last modified time | relevance | path

Searched refs:UCharsetDetector (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/i18n/unicode/
Ducsdet.h51 struct UCharsetDetector;
56 typedef struct UCharsetDetector UCharsetDetector; typedef
74 U_STABLE UCharsetDetector * U_EXPORT2
87 ucsdet_close(UCharsetDetector *ucsd);
102 U_DEFINE_LOCAL_OPEN_POINTER(LocalUCharsetDetectorPointer, UCharsetDetector, ucsdet_close);
124 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status);
146 ucsdet_setDeclaredEncoding(UCharsetDetector *ucsd, const char *encoding, int32_t length, UErrorCode…
175 ucsdet_detect(UCharsetDetector *ucsd, UErrorCode *status);
209 ucsdet_detectAll(UCharsetDetector *ucsd, int32_t *matchesFound, UErrorCode *status);
347 ucsdet_getAllDetectableCharsets(const UCharsetDetector *ucsd, UErrorCode *status);
[all …]
/external/icu/icu4c/source/i18n/
Ducsdet.cpp31 U_CAPI UCharsetDetector * U_EXPORT2
45 return (UCharsetDetector *) csd; in ucsdet_open()
49 ucsdet_close(UCharsetDetector *ucsd) in ucsdet_close()
56 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status) in ucsdet_setText()
96 ucsdet_detect(UCharsetDetector *ucsd, UErrorCode *status) in ucsdet_detect()
106 ucsdet_setDeclaredEncoding(UCharsetDetector *ucsd, const char *encoding, int32_t length, UErrorCode… in ucsdet_setDeclaredEncoding()
116 ucsdet_detectAll(UCharsetDetector *ucsd, in ucsdet_detectAll()
147 ucsdet_isInputFilterEnabled(const UCharsetDetector *ucsd) in ucsdet_isInputFilterEnabled()
158 ucsdet_enableInputFilter(UCharsetDetector *ucsd, UBool filter) in ucsdet_enableInputFilter()
185 ucsdet_setDetectableCharset(UCharsetDetector *ucsd, const char *encoding, UBool enabled, UErrorCode… in ucsdet_setDetectableCharset()
[all …]
/external/icu/icu4c/source/test/cintltst/
Ducsdetst.c94 UCharsetDetector *csd = ucsdet_open(&status); in TestConstruction()
127 UCharsetDetector *csd = ucsdet_open(&status); in TestUTF8()
173 UCharsetDetector *csd = ucsdet_open(&status); in TestUTF16()
236 UCharsetDetector *csd = ucsdet_open(&status); in TestC1Bytes()
289 UCharsetDetector *csd = ucsdet_open(&status); in TestInputFilter()
394 UCharsetDetector *csd = ucsdet_open(&status); in TestBufferOverflow()
479 UCharsetDetector *csd = ucsdet_open(&status); in TestIBM424()
557 UCharsetDetector *csd = ucsdet_open(&status); in TestIBM420()
/external/icu/icu4c/source/test/intltest/
Dcsdetest.cpp329 UCharsetDetector *csd = ucsdet_open(&status); in UTF8Test()
369 UCharsetDetector *csd = ucsdet_open(&status); in UTF16Test()
429 UCharsetDetector *csd = ucsdet_open(&status); in InputFilterTest()
497 UCharsetDetector *csd = ucsdet_open(&status); in C1BytesTest()
639 UCharsetDetector *csd = ucsdet_open(&status); in IBM424Test()
729 UCharsetDetector *csd = ucsdet_open(&status); in IBM420Test()
784 UCharsetDetector *csd = ucsdet_open(&status); in Ticket6394Test()
833 UCharsetDetector *csd1 = ucsdet_open(&status); in Ticket6954Test()
842 UCharsetDetector *csd2 = ucsdet_open(&status); in Ticket6954Test()
/external/icu/icu4c/source/samples/csdet/
Dcsdet.c34 UCharsetDetector* csd; in main()