Skip to content
Snippets Groups Projects
  1. Mar 30, 2024
  2. Mar 21, 2024
  3. Mar 13, 2024
  4. Mar 05, 2024
  5. Feb 20, 2024
  6. Jan 30, 2024
  7. Jan 28, 2024
  8. Jan 23, 2024
  9. Jan 22, 2024
  10. Jan 16, 2024
  11. Dec 19, 2023
  12. Dec 04, 2023
  13. Nov 28, 2023
  14. Nov 25, 2023
  15. Nov 14, 2023
  16. Nov 07, 2023
  17. Nov 06, 2023
  18. Oct 10, 2023
  19. Sep 28, 2023
  20. Jul 06, 2023
  21. Mar 19, 2023
    • Jing Mike's avatar
      Remove unused variables · 03eef94a
      Jing Mike authored
      
      Since some variables with module LatinIME are defined but not used,
      when compiled with build combination "sdk_pc_x86_64-userdebug" and
      build command "mmm packages/inputmethods/LatinIME", the following
      code lines will be reported that "variable 'XXX' set but not used".
      (should be similar for all the other build combinations)
      
      Repeated 10 times for each:
      terminal_position_lookup_table.cpp:74:9 removedEntryCount
      terminal_position_lookup_table.cpp:85:9 removedEntryCount
      proximity_info_state_utils.cpp:493:9 tempTime
      trie_map.cpp:56:9 unusedRegionSize
      suggestion_results.cpp:100:9 index
      
      Repeated 80+ times:
      proximity_info_utils.h:75:25 proximityChar
      
      With this patch we are removing some of the unused variables and
      putting the C++ 17 attribute [[maybe_unused]] to the others which
      are used for logging. Then all the related build warnings have been
      eliminated.
      
      Test: mmm packages/inputmethods/LatinIME, presubmit check.
      
      Change-Id: Ia66766322d6ae8a010b1cb55cc22993fbc6d012c
      Signed-off-by: default avatarJing Mike <jingyangliu@eswincomputing.com>
      03eef94a
  22. Jul 31, 2020
  23. Dec 11, 2018
  24. Sep 25, 2018
  25. Jul 26, 2018
    • Yohei Yukawa's avatar
      Fix lint warnings in LatinIME JNI code · 3d74fc73
      Yohei Yukawa authored
      This CL addresses compiler warnings when building libjni_latinime.so
      with NDK from Android Studio.
      
      There should be no behavior change.
      
      Bug: 110741422
      Bug: 110757803
      Test: tapas LatinIME LatinIMETests arm64 userdebug && make -j
      Change-Id: Icc711dd46511a167b1fd90028552def5b2f9941f
      3d74fc73
  26. Dec 17, 2014
  27. Dec 15, 2014
  28. Dec 09, 2014
  29. Nov 25, 2014
    • Keisuke Kuroyanagi's avatar
      Enable Quadgram for personalized dicts. · 60021bbd
      Keisuke Kuroyanagi authored
      Before:
      Total words: 1134659, Success Num: 944709, Success Percentage: 83.259%
      Bad Failures, with auto-correction (typed word == expected word, output word != expected word): 1258, Bad Failure Percentage: 0.111%
      Failures, with auto-correction (F-C): 28013, F-C Percentage: 2.469%
      Max Keystrokes: 6072844, Min Keystrokes: 3347332, Keystroke Saving Percentage:44.880%
      
      After:
      Total words: 1134665, Success Num: 945026, Success Percentage: 83.287%
      Bad Failures, with auto-correction (typed word == expected word, output word != expected word): 1271, Bad Failure Percentage: 0.112%
      Failures, with auto-correction (F-C): 27756, F-C Percentage: 2.446%
      Max Keystrokes: 6072850, Min Keystrokes: 3290996, Keystroke Saving Percentage:45.808%
      
      Change-Id: I16af52a3e9c371b95fd6f0741f45ee6b2443bea6
      60021bbd
    • Keisuke Kuroyanagi's avatar
      Use enum to specify ngram type. · 78212a6d
      Keisuke Kuroyanagi authored
      Change-Id: Ie28768ceadcd7a2d940c57eb30be7d4c364e509f
      78212a6d
  30. Nov 19, 2014
  31. Nov 11, 2014
Loading