/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 | 46 normalizer(UnicodeString(), UNORM_NFC) {} 63 if(Normalizer::compare(s1,s2,U_FOLD_CASE_DEFAULT,status)!=0){ 64 errln("Normalizer::compare() failed for s1: " + prettify(s1) + " s2: " +prettify(s2)); 150 * Test the conformance of Normalizer to 229 dataerrln("Something is wrong with the normalizer, skipping the rest of the test."); 265 dataerrln("Something is wrong with the normalizer, skipping the rest of the test.: %s", u_errorName(status)); 309 Normalizer::normalize(field[i], UNORM_NFC, options, out, status); 320 Normalizer::normalize(field[i], UNORM_NFD, options, out, status); 331 Normalizer::normalize(field[i], UNORM_NFKC, options, out, status); 342 Normalizer::normalize(field[i], UNORM_NFKD, options, out, status) [all...] |