Skip to content
Snippets Groups Projects
  1. Jun 30, 2011
  2. Jun 21, 2011
    • Jean Chalard's avatar
      New dict format, step 6 · 85a1d1ea
      Jean Chalard authored
      Copy the modified functions to be able to see the diff
      
      Bug: 4392433
      Change-Id: Ic9b83b4b4b7b89cc922eed1825507d7d516aff24
      85a1d1ea
    • Jean Chalard's avatar
      New dict format, step 5 · bc90c72f
      Jean Chalard authored
      Move functions that will be modified and enclose those that will
      be replaced into #ifdefs.
      This change does not modify any code, only move some code around.
      
      Bug: 4392433
      Change-Id: Ibefbda1eb8bdc8a0c72de47ad9c67a08d0aca960
      bc90c72f
  3. Jun 18, 2011
  4. Jun 17, 2011
  5. Jun 16, 2011
    • Jean Chalard's avatar
      New dict format, step 3 · 17e44a72
      Jean Chalard authored
      Some refactoring and add of a parameter that will be necessary.
      
      Bug: 4392433
      Change-Id: I17f001a7efd4f69f4c35f94ee1ca8e97391b81d5
      17e44a72
    • Jean Chalard's avatar
      New dict format, step 2 · 8124e64d
      Jean Chalard authored
      Move some methods around and make static some methods
      
      Bug: 4392433
      Change-Id: I2bbe98aec118a416d21d1e293638e1d324505b9b
      8124e64d
    • Jean Chalard's avatar
      New dict format, step 1 · 293ece0f
      Jean Chalard authored
      This renames some variables and removes dependancies to values that
      will disappear
      
      Bug: 4392433
      Change-Id: I79a44462d6bf25248cc2de0d63d7918fc6925d68
      293ece0f
  6. Jun 02, 2011
  7. May 24, 2011
  8. May 23, 2011
  9. May 18, 2011
  10. Apr 27, 2011
    • satok's avatar
      Enable fast power · 0b6b0a5a
      satok authored
      Change-Id: I00a91381f63cde62d9e7cf7e17f75869294cf2df
      0b6b0a5a
  11. Apr 26, 2011
  12. Apr 20, 2011
  13. Apr 19, 2011
  14. Apr 18, 2011
  15. Apr 14, 2011
  16. Apr 13, 2011
    • satok's avatar
      Promote a word with only one proximity character. · 72bc17ec
      satok authored
      Bug: 4271049
      
      Change-Id: I755986f582f43417fda6b117207530c519233baf
      72bc17ec
    • satok's avatar
      Change the formula of the missing character. · dc5301e5
      satok authored
      - Bug: 4271049
      - Due to the result of the recent user study, a word with a missing character needs to be promoted a bit.
      
      so I changed the formula from:
      - freq * 70 * (n - 2) / (n - 1)
      to:
      - freq * 90 * (10n - 12) / (10n - 2)
      
      Change-Id: Ibff72cbdb0f2d7b91460a06a0fd39a9f5749aa46
      dc5301e5
  17. Mar 19, 2011
  18. Mar 08, 2011
  19. Mar 05, 2011
    • satok's avatar
      A bug fix for the mistyped space algorithm · 3c4bb774
      satok authored
      Bug: 3311719
      
      -- also fixed compiler warnings
      
      Change-Id: I6941c0d02f10d67af88bc943748dde8d8783fabb
      3c4bb774
    • satok's avatar
      Add the suggestion algorithm of words with space proximity · 817e517e
      satok authored
      Bug: 3311719
      
      Change-Id: Ide12a4a6280103c092fa0f563dd5b9e3f7f5c89b
      817e517e
    • Jean Chalard's avatar
      Demote skipped characters matched words with respect to length. · 07a8406b
      Jean Chalard authored
      Words that matched user input with skipped characters used to be demoted
      in BinaryDictionary by a constant factor and not at all in those dictionaries
      implemented in java code. To represent the fact that the impact of a skipped
      character gets larger as the word is shorter, this change will implement a
      demotion that gets larger as the typed word is shorter. The demotion rate
      is (n - 2) / (n - 1) where n is the length of the typed word for n >= 2.
      It implements it for both BinaryDictionary and java dictionaries.
      
      Bug: 3340731
      Change-Id: I3a18be80a9708981d56a950dc25fe08f018b5b89
      07a8406b
  20. Mar 04, 2011
  21. Mar 03, 2011
  22. Feb 23, 2011
  23. Feb 22, 2011
    • Jean Chalard's avatar
      Rename variables with obscure names. · f5f834af
      Jean Chalard authored
      The `snr' variable has a very obscure name. Rename it to `matchWeight'.
      Also, the `toLowerCase' function is error-prone, since it actually returns
      a lower case version of the BASE char, that is without diacritics. Hence,
      rename it to `toBaseLowerCase' and update variables with similar names.
      
      Change-Id: Ibdbe73018a33ee864db59a51d664c3b104d5fb3f
      f5f834af
    • Jean Chalard's avatar
      Force autocorrection of matching words with different accents. · a5d58497
      Jean Chalard authored
      When entering a word without accents the user expects the system to
      add accents automatically if there is no other matching word. This
      patch ensures the accented version is promoted accordingly and
      autocorrection really takes place.
      
      Issue: 3400015
      
      Change-Id: I8cd3db5bf131ec6844b26abecc1ecbd1d6269df4
      a5d58497
Loading