Searched refs:normalizer (Results 1 - 25 of 46) sorted by relevance

12

/external/icu/icu4c/source/samples/translit/answers/
H A Dunaccent.cpp16 normalizer("", Normalizer::DECOMP),
34 t->normalizer.setText(str, status);
38 return (UChar) t->normalizer.next();
H A Dunaccent.h40 * Unaccent a single character using normalizer.
44 Normalizer normalizer; member in class:UnaccentTransliterator
/external/icu/icu4c/source/samples/translit/
H A Dunaccent.cpp19 normalizer("", UNORM_NFD),
37 t->normalizer.setText(str, status);
41 return (UChar) t->normalizer.next();
H A Dunaccent.h40 * Unaccent a single character using normalizer.
44 Normalizer normalizer; member in class:UnaccentTransliterator
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSourceTargetUtility.java32 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) { argument
34 if (normalizer != null) {
71 if (normalizer == null) {
85 if (!normalizer.isInert(i)) {
H A DCjkBreakEngine.java121 Normalizer normalizer = new Normalizer(prenormstr, Normalizer.NFKC, 0);
124 while (index < normalizer.endIndex()) {
125 normalizer.next();
127 index = normalizer.getIndex();
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DSourceTargetUtility.java31 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) { argument
33 if (normalizer != null) {
70 if (normalizer == null) {
84 if (!normalizer.isInert(i)) {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DIntHashtable.java4 package android.icu.dev.test.normalizer;
H A DIntStringHashtable.java4 package android.icu.dev.test.normalizer;
H A DLongHashtable.java4 package android.icu.dev.test.normalizer;
H A DNormalizerRegressionTests.java11 package android.icu.dev.test.normalizer;
H A DConformanceTest.java11 package android.icu.dev.test.normalizer;
29 Normalizer normalizer; field in class:ConformanceTest
34 normalizer = new Normalizer("", Normalizer.NFC, 0);
373 normalizer.setText(str);
374 normalizer.setMode(mode);
376 normalizer.setOption(-1, false); // reset all options
377 normalizer.setOption(options, true); // set desired options
381 for (ch = normalizer.first(); ch != Normalizer.DONE;
382 ch = normalizer.next()) {
386 for (ch = normalizer
[all...]
H A DNormalizerData.java12 package android.icu.dev.test.normalizer;
H A DNormalizationMonkeyTest.java11 package android.icu.dev.test.normalizer;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DIntHashtable.java3 package com.ibm.icu.dev.test.normalizer;
H A DIntStringHashtable.java3 package com.ibm.icu.dev.test.normalizer;
H A DLongHashtable.java3 package com.ibm.icu.dev.test.normalizer;
H A DNormalizerRegressionTests.java10 package com.ibm.icu.dev.test.normalizer;
H A DConformanceTest.java10 package com.ibm.icu.dev.test.normalizer;
28 Normalizer normalizer; field in class:ConformanceTest
33 normalizer = new Normalizer("", Normalizer.NFC, 0);
372 normalizer.setText(str);
373 normalizer.setMode(mode);
375 normalizer.setOption(-1, false); // reset all options
376 normalizer.setOption(options, true); // set desired options
380 for (ch = normalizer.first(); ch != Normalizer.DONE;
381 ch = normalizer.next()) {
385 for (ch = normalizer
[all...]
H A DNormalizerData.java11 package com.ibm.icu.dev.test.normalizer;
/external/harfbuzz_ng/src/
H A Dhb-icu.cc168 static const UNormalizer2 *normalizer; variable
180 UChar32 ret = unorm2_composePair (normalizer, a, b);
228 len = unorm2_getRawDecomposition (normalizer, ab, decomposed,
364 if (!hb_atomic_ptr_get (&normalizer)) {
367 (void) hb_atomic_ptr_cmpexch (&normalizer, NULL, unorm2_getNFCInstance (&icu_err));
/external/icu/icu4c/source/test/intltest/
H A Dnormconf.h23 Normalizer normalizer; member in class:NormalizerConformanceTest
H A Dnormconf.cpp47 normalizer(UnicodeString(), UNORM_NFC) {}
230 dataerrln("Something is wrong with the normalizer, skipping the rest of the test.");
266 dataerrln("Something is wrong with the normalizer, skipping the rest of the test.: %s", u_errorName(status));
456 normalizer.setText(str, status);
457 normalizer.setMode(mode);
458 normalizer.setOption(-1, 0); // reset all options
459 normalizer.setOption(options, 1); // set desired options
466 for (ch = normalizer.first(); ch != Normalizer::DONE;
467 ch = normalizer.next()) {
471 for (ch = normalizer
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCjkBreakEngine.java120 Normalizer normalizer = new Normalizer(prenormstr, Normalizer.NFKC, 0);
123 while (index < normalizer.endIndex()) {
124 normalizer.next();
126 index = normalizer.getIndex();
/external/libopus/silk/fixed/
H A Dpitch_analysis_core_FIX.c105 opus_int32 cross_corr, normalizer, energy, shift, energy_basis, energy_target; local
199 normalizer = silk_inner_prod_aligned( target_ptr, target_ptr, SF_LENGTH_8KHZ, arch );
200 normalizer = silk_ADD32( normalizer, silk_inner_prod_aligned( basis_ptr, basis_ptr, SF_LENGTH_8KHZ, arch ) );
201 normalizer = silk_ADD32( normalizer, silk_SMULBB( SF_LENGTH_8KHZ, 4000 ) );
204 (opus_int16)silk_DIV32_varQ( cross_corr, normalizer, 13 + 1 ); /* Q13 */
206 /* From now on normalizer is computed recursively */
217 normalizer = silk_ADD32( normalizer,
[all...]

Completed in 333 milliseconds

12