Skip to content
Snippets Groups Projects
  1. Mar 11, 2015
  2. Mar 09, 2015
  3. Mar 05, 2015
  4. Mar 03, 2015
  5. Feb 26, 2015
    • Dan Zivkovic's avatar
      Don't assume that correctable words are invalid · 5551302d
      Dan Zivkovic authored
      Currently, the Delight3DictionaryFacilitator sets a boolean flag when the top
      suggestion score exceeds the auto-correction threshold. This flag is used to
      trigger auto-correction of the typed word. Also, the existing logic assumes
      that if allowsToBeAutoCorrected then the word is invalid, which is no longer
      true after we stopped using whitelists.
      
      Bug 19518376.
      
      Change-Id: Ifa7f6a09c07d25ac68c6cf3aec91f358bd88689f
      5551302d
    • Mario Tanev's avatar
      Use Keyboard in several interfaces. · 487e038f
      Mario Tanev authored
      Simplify interfaces by passing Keyboard instead of
      KeyboardLayout and ProximityInfo directly.  Also require
      the Keyboard passed be non-null and change the SpellChecker
      to bail out if there is no keyboard for the locale.
      
      Change-Id: I960f15ff60171f55d3e0a96fd6469b7dc3a045e2
      487e038f
  6. Feb 25, 2015
  7. Feb 24, 2015
  8. Feb 20, 2015
  9. Feb 19, 2015
  10. Feb 12, 2015
    • Jatin Matani's avatar
      Refactor content provider code from ContactsDict · 4084fa5c
      Jatin Matani authored
      Break contacts binary dictionary into two parts
      - one that talks to contacts content provider and maintains
        local state. Includes a manager class and a content observer
      - other one that just manages the dict code.
      
      Change-Id: Ie8f89ac9ce174c803ff3168ee0bee5cbe7721d5b
      4084fa5c
  11. Feb 10, 2015
  12. Feb 09, 2015
  13. Feb 06, 2015
  14. Feb 05, 2015
  15. Feb 04, 2015
  16. Feb 03, 2015
  17. Jan 27, 2015
  18. Dec 16, 2014
    • Jatin Matani's avatar
      Passing account info to dictionaryFacilitator · bc4ae6bd
      Jatin Matani authored
      Attempt to use dictionary facilitor without invoking
      preference manager. Instead use account from settings only when
      things are being reset/changed. Discussion forked from ag/591663
      
      Overall, the idea here is to maintain an account information
      inside dictionary groups. Reset the dictionary groups if
      account changes (the way we do for locale). Since only user
      history dictionary is currently affected, the check to reset user
      history dictionary also includes the check to verify the account.
      For other things remain the same.
      
      SettingsValues holds the current account (and is updated if prefs change
      due to change in account settings). The updated settings are then
      propagated to dictionary facilitator via LatinIME#loadSettings.
      
      Bug:18104749,18469539
      Change-Id: I553e776e7ea125d0fb7a1fe70a4c7eb0b2277fb8
      bc4ae6bd
  19. Nov 28, 2014
  20. Nov 26, 2014
    • Jean Chalard's avatar
      Use confidence to fix whitelist · e752aab7
      Jean Chalard authored
      With this the most obvious problem is fixed. However there
      are two remaining items : we should still enforce whitelist
      when there are no close candidates at all, and we should
      start in confident mode when pressing the globe key.
      
      Bug: 18063142
      Bug: 18130489
      Bug: 18132240
      Bug: 18136721
      Bug: 18200415
      Change-Id: Ibc0571ae35fc28f8d13760aa86b25db1163d3e31
      e752aab7
  21. Nov 25, 2014
    • Jean Chalard's avatar
      Add confidence. · d06dd0ca
      Jean Chalard authored
      Bug: 18063142
      Bug: 18130489
      Bug: 18132240
      Bug: 18136721
      Bug: 18200415
      Change-Id: Ica09d11cb95308dd014c4e4e0d99a30dd66bfea9
      d06dd0ca
  22. Nov 21, 2014
  23. Nov 20, 2014
    • Jean Chalard's avatar
      Fix a NPE · 0e00f5fe
      Jean Chalard authored
      Bug: 18451316
      Change-Id: Ia20bf388471f84c963354df050182e722d966a02
      0e00f5fe
  24. Oct 29, 2014
  25. Oct 23, 2014
  26. Oct 21, 2014
    • Tadashi G. Takaoka's avatar
      Fix some compiler warnings · 5f00fe09
      Tadashi G. Takaoka authored
      This CL fixes the following compiler warnings.
      
      - Indirect access to static member
      - Access to a non-accessible member of an enclosing type
      - Parameter assignment
      - Method can be static
      - Local variable declaration hides another field or variable
      - Value of local variable is not used
      - Unused import
      - Unused private member
      - Unnecessary 'else' statement
      - Unnecessary declaration of throw exception
      - Redundant type arguments
      - Missing '@Override' annotation
      - Unused '@SuppressWarning' annotations
      
      Bug: 18003991
      Change-Id: Icfebe753e53a2cc621848f769d6a3d7ce501ebc7
      5f00fe09
    • Adrian Velicu's avatar
      Renaming "blacklist" flag to "possibly offensive" · 05172bf1
      Adrian Velicu authored
      No behaviour changes.
      Unified the overloaded FusionDictionary::add method to always take an
      isPossiblyOffensive argument.
      
      Bug: 11031090
      Change-Id: I5741a023ca1ce842d2cf10d4f6c926b0efabaa78
      05172bf1
  27. Oct 09, 2014
  28. Oct 07, 2014
  29. Oct 06, 2014
    • Jean Chalard's avatar
      [ML14] Forward the locale list to relevant places, again · bc051a56
      Jean Chalard authored
      Diff:
      +++ b/java/src/com/android/inputmethod/keyboard/internal/KeyboardBuilder.java
      @@ -735,7 +735,7 @@ public class KeyboardBuilder<KP extends KeyboardParams> {
      
           private boolean matchLocaleCodes(TypedArray caseAttr, final Locale[] locales) {
               // TODO: adujst this for multilingual input
      -        return matchString(caseAttr, R.styleable.Keyboard_Case_languageCode, locales[0].toString());
      +        return matchString(caseAttr, R.styleable.Keyboard_Case_localeCode, locales[0].toString());
           }
      
           private boolean matchLanguageCodes(TypedArray caseAttr, Locale[] locales) {
      
      Change-Id: Icefac18dd6d5fea97f591177cf8df1ba6de7f4f0
      bc051a56
Loading