aboutsummaryrefslogtreecommitdiffstats
path: root/java/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-02-23Hide app icon when keyboard is a system app.Dan Zivkovic2-15/+38
The objective is to show an app icon when the user installs the keyboard from the Play Store, but not show the icon when it comes from the system image. The latter rule applies to AOSP keyboards and to the Google Keyboard on a Nexus device. This change partially reverts ag/613096. Bug 19001197. Change-Id: Icb202deffe9f1ab2bde9b3c9d221347da6793a19
2015-02-20Remove unused APIs in DIctionaryFacilitatorJatin Matani2-44/+4
Change-Id: Iae20a0a3b7c1aa0c2f6d29cef780fb50dc9010cb
2015-02-20Spell checker uses cache of size 1.Dan Zivkovic3-93/+21
This is a step in the direction of removing the LRU cache completely. Change-Id: I8886f7ef74e6b1b35135e68f169cb461682964e9
2015-02-20Add tests for Contact* classesJatin Matani7-3/+304
Also add empty implementation for dictionary facilitator iteration APIs Change-Id: Ia847e3faa75075c819fcfda89193d1024d2d5aca
2015-02-19Rename in preparation of caching an instance.Dan Zivkovic3-3/+3
Change-Id: I112c957e20d4573daaa71aa218b575037585385c
2015-02-19Schedule with 0 delay is the same as execute.Dan Zivkovic1-2/+1
Change-Id: Ifadae8aee668edbe2b507735d3ed6e68d52ef329
2015-02-19Add more options for calling removeWordFromPersonalizedDicts.Tom Ouyang4-5/+68
Bug: 19441205 Change-Id: I41aff536a64271d2dc9489a20df33d64170756cc
2015-02-19If contacts observer is running, return early.Dan Zivkovic1-5/+13
Change-Id: I084a251b0f72288243c73b6166d992b427449635
2015-02-19Sanitize the usage of executors.Dan Zivkovic6-70/+102
There should be 1 executor each for static and dynamic language models. This prevents too many dynamic LM updates from running in parallel, competing for resources. Change-Id: I8ec439e0ea2d92fba275bc20a0b8c9193346a0c1
2015-02-18Add StatsUtils method for handling subtype change.Chieu Nguyen2-0/+8
Change-Id: I0f334ab5e6f5aa41ad780641276dc3d2aa232f48
2015-02-12Add Decoder specific dictionary suffix to resource lookupMohammadinamul Sheik2-3/+7
Change-Id: Ia2c74acdc8ac6f7b605bb06a1078d23b32f388a1
2015-02-12Switch from script to language codes.Dan Zivkovic1-27/+29
Unfortunately, our Locale objects don't always have a script code. But we can get almost the same functionality by specifying script codes for some languages, and defaulting the rest to Latin. Change-Id: Id81ff67bf44c84f44707a2e167c2787c60c6ecee
2015-02-12Map ISO 15924 codes to internal IME script codes.Dan Zivkovic1-33/+34
This way we can support all the languages for which we define a script code. Bug 19340741. Change-Id: Ia80eca4cc2511b70f11058f73bd31746948ded19
2015-02-11Refactor content provider code from ContactsDictJatin Matani8-202/+424
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
2015-02-11Fix master build.Dan Zivkovic10-28/+23
For some reason, we can't import android.os package in our Constants. Change-Id: I357ed72d13c5039a83c6e2489cdf5ef74d0ffea8
2015-02-11Remove shortcut support from LatinIME.Dan Zivkovic36-968/+177
Note this change does not affect the native decoder interface. Change-Id: I73b7dc008a5acaf75a31a36a2d332b5afabd82d0
2015-02-10Add a addOrIncrement term api to DicFacilitatorJatin Matani3-1/+20
The API is used by the decoder to add term to the dictionary. Change-Id: I607c8c676b7650f3052b2d3ed3f7f656573fca45
2015-02-10Add new class spellcheck.UserDictionaryLookup that can look up theMario Tanev3-0/+742
system "Personal dictionary" in the event that the DictionaryFacilitator doesn't. Change-Id: Ib4f15ec4d8f06ea43c2e063f5a13a2f699afbb8a
2015-02-09Remove distracter filter from client.Dan Zivkovic14-823/+25
Bug 19296201. Change-Id: Ic834e5956347cd86a96bd14024c42ad8ee258659
2015-02-06Cleanup in preparation of distracter change.Dan Zivkovic8-61/+34
Bug 19296201. Change-Id: If016da2b7f4b3ecb9afd6d7aed9d19fbd4938758
2015-02-05Move decoder specific constants to DecoderSpecificConstants.javaMohammadinamul Sheik17-49/+76
Change-Id: Ie4d325b3152e1e7e424b8b436e222e194e4d9da0
2015-02-04Use shared constants in old+new facilitators.Dan Zivkovic3-31/+32
Change-Id: I18b701df6ecbcc20ff0c664c218289179c4b2b2d
2015-02-04Add accessor methods for typed word info to SuggestedWords and for wordChieu Nguyen1-0/+16
and source dictionary to SuggestedWordInfo. Change-Id: Ic3bdf67a9edd5352f3b911f5cb72a25986e31e2c
2015-02-04Fix accidentally inverted if check.Dan Zivkovic1-1/+1
Change-Id: I9c28f4154f69c63564a2bda357c16cef4e68dc0d
2015-02-04Don't check user dictionary, except for spelling.Dan Zivkovic4-36/+57
We check different lists of dictionaries based on the use case. Bug 19270992. Change-Id: Ide69f2855978ebad32a58e9689b3a8d47e095994
2015-02-04Removing code from RichInputConnection.Dan Zivkovic2-55/+4
Followup CL that removes some more unused methods and variables. Change-Id: I4163c7cd017f59d1fd445adb6294fc89dcaafe6e
2015-02-04Selections spans should not split surrogate pair.Dan Zivkovic4-4/+98
When committing a span after a revert, the offset logic was such that it split a surrogate unicode pair used to express an emoji. Checking the last character of the span lets us avoid this problem. Fix for bug 19255233. Change-Id: I07d18d9002b5075f7925319dd05962011656c311
2015-02-04AOSP changes to use KeyboardLayout to support the new DictionaryFacilitatorMohammadinamul Sheik13-24/+125
Change-Id: Ie0c9ce805d9ad009fc9bbaac37b715aff90cd844
2015-02-04Remnant of green [+] feature.Dan Zivkovic1-38/+5
Change-Id: I059b1062e1d73b2fa439d9d4ee04ff0182795335
2015-02-04Remove last vestiges of contextual+personal dictionary.Dan Zivkovic3-29/+2
Change-Id: I20746381583ee8a4d7d42b1243f5c7ba45529e5e
2015-02-04Import translations. DO NOT MERGEGeoff Mendal1-1/+1
Change-Id: I3e9a864efab46895ffc21f73f5d78b7937d701fc Auto-generated-cl: translation import
2015-02-03Fix delete handling in Emoji keyboard.Dan Zivkovic1-2/+55
Bug 19113652. Change-Id: I4255c248a25bb92f5c12da6a185d17cc13a9a69d
2015-02-03LatinIME portion of "green plus" feature.Dan Zivkovic19-1400/+29
Removes the feature that adds strings to the user dictionary, aka the "green highlight with a plus sign". Bug 19237189. Change-Id: I2387129a3add2d69d625f2ff16ed8cab3f10a735
2015-02-02Nuke AmanattoJatin Matani13-791/+5
Change-Id: Ieff2cd37f869dca69abf53ac32a576c2e45cc1e3
2015-02-02Remove custom code for Emoji keyboard Delete key.Dan Zivkovic1-131/+1
The code tries to implement a completely separate touch handler for the Delete key, so it can do fancy things like suppress haptic feedback during long press. This is not really necessary. Change-Id: I0eae758b617e94605035c40e0df15d972ae733c1
2015-02-02Import translations. DO NOT MERGEGeoff Mendal1-1/+1
Change-Id: I2785f4af2bee0b126e71b1fa22925e478611857f Auto-generated-cl: translation import
2015-01-30Create a new KeyboardLayout class to represent the layout.Mohammadinamul Sheik5-1/+201
Change-Id: Ia08c8194f460271c831702675cfb687ab9f6678b
2015-01-29LatinIME portion of multi-lang option removal.Dan Zivkovic16-159/+7
Bug 19188067. Change-Id: Ic9a3637f59dda30c699141222b9dcac3cd624b99
2015-01-29Disable the Burmese keyboard.Dan Zivkovic18-1475/+4
We'll resurrect this effort in the new code base. Bug 16900511. Change-Id: Iae4cd27cb29cb8f991e97cffd88ed59c30d66628
2015-01-28Import translations. DO NOT MERGEGeoff Mendal14-612/+312
Change-Id: Id4c91d74424104f77e25d07e8852339caa6a0f97 Auto-generated-cl: translation import
2015-01-28Import translations. DO NOT MERGEGeoff Mendal73-3771/+1530
Change-Id: I678822c97755e3f9bf00aa0d6622b082bee74335 Auto-generated-cl: translation import
2015-01-28Import translations. DO NOT MERGEGeoff Mendal4-0/+108
Change-Id: I40995ffa826f56b4bb210d274395b67c80c0db7e Auto-generated-cl: translation import
2015-01-28Import translations. DO NOT MERGEGeoff Mendal10-76/+41
Change-Id: I03f9178e637255e5e3bd3f6ca75b922c49bb0ce1 Auto-generated-cl: translation import
2015-01-28Import translations. DO NOT MERGEGeoff Mendal6-1/+121
Change-Id: I2e23417560e24487e2421c632b956acecb78685a Auto-generated-cl: translation import
2015-01-28Import translations. DO NOT MERGEGeoff Mendal65-17/+47675
Change-Id: Ib3c761dfca6acc7b2ca23838e777ed702f49f7e8 Auto-generated-cl: translation import
2015-01-28Import translations. DO NOT MERGEGeoff Mendal2-2/+2
Change-Id: Ib4a377f96214ed7292cb0ff3e2815f1c864cc1bb Auto-generated-cl: translation import
2015-01-27Change DictionaryFacilitator.java to an interface, create itsMario Tanev8-839/+1044
implementation DictionaryFacilitatorImpl.java and add a java-overridable factory DictionaryFacilitatorProvider.java used to create a DictionaryFacilitator. Change-Id: Id4a58ae31feaa4d12a048a772c8d76ff82fdee45
2015-01-21Import translations. DO NOT MERGEGeoff Mendal1-1/+1
Change-Id: Ifd6ac19adb46ebd6aefb94814bc2f5fba14a61e8 Auto-generated-cl: translation import
2015-01-20Re-enable new keyboard layouts in Fava.Dan Zivkovic10-41/+25
This reverts commit da27faeb87dc47656f82ba90ee590872a3993985. Change-Id: I08e2b2510efcafd20743679de4a1ef7f09d9949a
2015-01-19Import translations. DO NOT MERGEGeoff Mendal2-2/+2
Change-Id: Iac5b20265c265d76c26833b36321702c34d1f50b Auto-generated-cl: translation import