/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...] |
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/java/android/bordeaux/learning/ |
StochasticLinearRanker.java | 129 public boolean setModelWeights(String[] keys, float [] values, float normalizer){ 130 return nativeSetWeightClassifier(keys, values, normalizer, mNativeClassifier); 149 Log.i(TAG, "Normalizer is " + model.weightNormalizer); 180 private native void nativeGetWeightClassifier(String [] keys, float[] values, float normalizer, 189 float normalizer, int classifierPtr);
|
/external/harfbuzz_ng/src/ |
hb-icu.cc | 167 static const UNormalizer2 *normalizer; variable 179 UChar32 ret = unorm2_composePair (normalizer, a, b); 227 len = unorm2_getRawDecomposition (normalizer, ab, decomposed, 363 if (!hb_atomic_ptr_get (&normalizer)) { 366 hb_atomic_ptr_cmpexch (&normalizer, NULL, unorm2_getNFCInstance (&icu_err));
|
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/ |
jni_stochastic_linear_ranker.h | 144 jfloat normalizer,
|
jni_stochastic_linear_ranker.cpp | 373 jfloat normalizer, 382 normalizer = M_weights.GetNormalizer();
|
/external/ceres-solver/include/ceres/ |
rotation.h | 411 T normalizer = q[0]*q[0] + q[1]*q[1] + q[2]*q[2] + q[3]*q[3]; local 412 CHECK_NE(normalizer, T(0)); 413 normalizer = T(1) / normalizer; 416 R[i] *= normalizer;
|
/external/icu4c/common/ |
dictbe.cpp | 778 Normalizer::quickCheck(inputString, norm_mode, status) == UNORM_YES || 779 Normalizer::isNormalized(inputString, norm_mode, status); 797 Normalizer::normalize(inputString, norm_mode, 0, normalizedString, status); 802 Normalizer normalizer(charString.elems(), inputLength, norm_mode); 805 while(index < normalizer.endIndex()){ 806 /* UChar32 uc = */ normalizer.next(); 807 charPositions[++numChars] = index = normalizer.getIndex(); [all...] |