Home | History | Annotate | Download | only in intltest

Lines Matching refs:csd

157     LocalUCharsetDetectorPointer csd(ucsdet_open(&status));
169 ucsdet_setText(csd.getAlias(), bytes, byteLength, &status);
172 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status);
246 LocalUCharsetDetectorPointer csd(ucsdet_open(status));
247 LocalUEnumerationPointer e(ucsdet_getAllDetectableCharsets(csd.getAlias(), status));
278 UCharsetDetector *csd = ucsdet_open(&status);
282 ucsdet_setText(csd, bytes, byteLength, &status);
283 match = ucsdet_detect(csd, &status);
296 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */
301 ucsdet_close(csd);
318 UCharsetDetector *csd = ucsdet_open(&status);
323 ucsdet_setText(csd, beBytes, beLength, &status);
324 match = ucsdet_detect(csd, &status);
344 ucsdet_setText(csd, leBytes, leLength, &status);
345 match = ucsdet_detect(csd, &status);
368 ucsdet_close(csd);
378 UCharsetDetector *csd = ucsdet_open(&status);
382 ucsdet_enableInputFilter(csd, TRUE);
384 if (!ucsdet_isInputFilterEnabled(csd)) {
385 errln("ucsdet_enableInputFilter(csd, TRUE) did not enable input filter!");
389 ucsdet_setText(csd, bytes, byteLength, &status);
390 match = ucsdet_detect(csd, &status);
410 ucsdet_enableInputFilter(csd, FALSE);
411 ucsdet_setText(csd, bytes, byteLength, &status);
412 match = ucsdet_detect(csd, &status);
433 ucsdet_close(csd);
446 UCharsetDetector *csd = ucsdet_open(&status);
450 ucsdet_setText(csd, bWindows, lWindows, &status);
451 match = ucsdet_detect(csd, &status);
464 ucsdet_setText(csd, bISO, lISO, &status);
465 match = ucsdet_detect(csd, &status);
482 ucsdet_close(csd);
587 UCharsetDetector *csd = ucsdet_open(&status);
594 ucsdet_setText(csd, bytes, bLength, &status);
595 match = ucsdet_detect(csd, &status);
607 ucsdet_setText(csd, bytes_r, brLength, &status);
608 match = ucsdet_detect(csd, &status);
623 ucsdet_close(csd);
671 UCharsetDetector *csd = ucsdet_open(&status);
678 ucsdet_setText(csd, bytes, bLength, &status);
679 match = ucsdet_detect(csd, &status);
691 ucsdet_setText(csd, bytes_r, brLength, &status);
692 match = ucsdet_detect(csd, &status);
707 ucsdet_close(csd);
721 UCharsetDetector *csd = ucsdet_open(&status);
722 ucsdet_setText(csd, latin1Text, -1, &status);
729 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status);
749 ucsdet_close(csd);