HomeSort by relevance Sort by last modified time
    Searched defs:beforeLength (Results 1 - 11 of 11) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/utils/
edit_distance.h 31 const int beforeLength = policy->getString0Length();
33 float dp[(beforeLength + 1) * (afterLength + 1)];
34 for (int i = 0; i <= beforeLength; ++i) {
41 for (int i = 0; i < beforeLength; ++i) {
57 AKLOGI("IN = %d, OUT = %d", beforeLength, afterLength);
58 for (int i = 0; i < beforeLength + 1; ++i) {
64 return dp[(beforeLength + 1) * (afterLength + 1) - 1];
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionaryUtils.cpp 61 jsize beforeLength = env->GetArrayLength(before);
63 int beforeCodePoints[beforeLength];
65 env->GetIntArrayRegion(before, 0, beforeLength, beforeCodePoints);
67 return AutocorrectionThresholdUtils::calcNormalizedScore(beforeCodePoints, beforeLength,
73 jsize beforeLength = env->GetArrayLength(before);
75 int beforeCodePoints[beforeLength];
77 env->GetIntArrayRegion(before, 0, beforeLength, beforeCodePoints);
79 return AutocorrectionThresholdUtils::editDistance(beforeCodePoints, beforeLength,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
BatchInputArbiter.java 95 final int beforeLength = mRecognitionPoints.getLength();
98 if (mRecognitionPoints.getLength() > beforeLength) {
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 190 milliseconds