HomeSort by relevance Sort by last modified time
    Searched refs:normalizer (Results 1 - 6 of 6) sorted by null

  /external/icu4c/samples/translit/answers/
unaccent.h 36 * Unaccent a single character using normalizer.
40 Normalizer normalizer; member in class:UnaccentTransliterator
unaccent.cpp 13 normalizer("", Normalizer::DECOMP),
24 * Remove accents from a character using Normalizer.
31 t->normalizer.setText(str, status);
35 return (UChar) t->normalizer.next();
  /external/icu4c/samples/translit/
unaccent.cpp 15 normalizer("", UNORM_NFD),
26 * Remove accents from a character using Normalizer.
33 t->normalizer.setText(str, status);
37 return (UChar) t->normalizer.next();
unaccent.h 36 * Unaccent a single character using normalizer.
40 Normalizer normalizer; member in class:UnaccentTransliterator
  /external/icu4c/test/intltest/
normconf.h 21 Normalizer normalizer; member in class:NormalizerConformanceTest
30 * Test the conformance of Normalizer to
normconf.cpp 45 normalizer(UnicodeString(), UNORM_NFC) {}
62 if(Normalizer::compare(s1,s2,U_FOLD_CASE_DEFAULT,status)!=0){
63 errln("Normalizer::compare() failed for s1: " + prettify(s1) + " s2: " +prettify(s2));
149 * Test the conformance of Normalizer to
228 errln("Something is wrong with the normalizer, skipping the rest of the test.");
264 errln("Something is wrong with the normalizer, skipping the rest of the test.");
308 Normalizer::normalize(field[i], UNORM_NFC, options, out, status);
315 Normalizer::normalize(field[i], UNORM_NFD, options, out, status);
322 Normalizer::normalize(field[i], UNORM_NFKC, options, out, status);
329 Normalizer::normalize(field[i], UNORM_NFKD, options, out, status)
    [all...]

Completed in 286 milliseconds