Home | History | Annotate | Download | only in intltest

Lines Matching refs:csd

169     LocalUCharsetDetectorPointer csd(ucsdet_open(&status));
181 ucsdet_setText(csd.getAlias(), bytes, byteLength, &status);
184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status);
258 LocalUCharsetDetectorPointer csd(ucsdet_open(status));
259 LocalUEnumerationPointer e(ucsdet_getAllDetectableCharsets(csd.getAlias(), status));
290 UCharsetDetector *csd = ucsdet_open(&status);
294 ucsdet_setText(csd, bytes, byteLength, &status);
295 match = ucsdet_detect(csd, &status);
308 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */
313 ucsdet_close(csd);
330 UCharsetDetector *csd = ucsdet_open(&status);
335 ucsdet_setText(csd, beBytes, beLength, &status);
336 match = ucsdet_detect(csd, &status);
356 ucsdet_setText(csd, leBytes, leLength, &status);
357 match = ucsdet_detect(csd, &status);
380 ucsdet_close(csd);
390 UCharsetDetector *csd = ucsdet_open(&status);
394 ucsdet_enableInputFilter(csd, TRUE);
396 if (!ucsdet_isInputFilterEnabled(csd)) {
397 errln("ucsdet_enableInputFilter(csd, TRUE) did not enable input filter!");
401 ucsdet_setText(csd, bytes, byteLength, &status);
402 match = ucsdet_detect(csd, &status);
422 ucsdet_enableInputFilter(csd, FALSE);
423 ucsdet_setText(csd, bytes, byteLength, &status);
424 match = ucsdet_detect(csd, &status);
445 ucsdet_close(csd);
458 UCharsetDetector *csd = ucsdet_open(&status);
462 ucsdet_setText(csd, bWindows, lWindows, &status);
463 match = ucsdet_detect(csd, &status);
476 ucsdet_setText(csd, bISO, lISO, &status);
477 match = ucsdet_detect(csd, &status);
494 ucsdet_close(csd);
599 UCharsetDetector *csd = ucsdet_open(&status);
606 ucsdet_setText(csd, bytes, bLength, &status);
607 match = ucsdet_detect(csd, &status);
619 ucsdet_setText(csd, bytes_r, brLength, &status);
620 match = ucsdet_detect(csd, &status);
635 ucsdet_close(csd);
683 UCharsetDetector *csd = ucsdet_open(&status);
690 ucsdet_setText(csd, bytes, bLength, &status);
691 match = ucsdet_detect(csd, &status);
703 ucsdet_setText(csd, bytes_r, brLength, &status);
704 match = ucsdet_detect(csd, &status);
719 ucsdet_close(csd);
733 UCharsetDetector *csd = ucsdet_open(&status);
734 ucsdet_setText(csd, latin1Text, -1, &status);
741 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status);
761 ucsdet_close(csd);