aboutsummaryrefslogtreecommitdiffstats
path: root/java/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge "Postponing memory deallocation after onFinishInputView"Adrian Velicu2014-10-061-9/+31
|\
| * Postponing memory deallocation after onFinishInputView•••Bug: 17559789 Change-Id: I1d4b1524028164d27ec4eadd3960b567148f2b84 Adrian Velicu2014-10-061-9/+31
* | Fix missing prediction words on contextual strip•••Bug: 17874801 Change-Id: Iaba935a6b2548376f10a0ecd80f07ea7ada6c60a Tadashi G. Takaoka2014-10-077-21/+31
* | Merge "Add a utility method to SuggestionSpanUtils"Yohei Yukawa2014-10-061-0/+28
|\ \
| * | Add a utility method to SuggestionSpanUtils•••This is a ground work for subsequent CLs. BUG: 16995261 Change-Id: Icbb708a35412a635a0d625b520069840c0bb0904 Yohei Yukawa2014-10-061-0/+28
* | | Merge "[ML14] Forward the locale list to relevant places, again"Jean Chalard2014-10-0611-90/+126
|\ \ \ | |_|/ |/| |
| * | [ML14] Forward the locale list to relevant places, again•••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 Jean Chalard2014-10-0611-90/+126
* | | Merge "Remove ENABLE_CURSOR_ANCHOR_INFO_CALLBACK"Yohei Yukawa2014-10-062-12/+8
|\ \ \
| * | | Remove ENABLE_CURSOR_ANCHOR_INFO_CALLBACK•••We can now start relying on L APIs even in unbundled release. This means ENABLE_CURSOR_ANCHOR_INFO_CALLBACK can be always true. Hence we simply remove it. Change-Id: I0353e992e97e252059f83accea100504594bf171 Yohei Yukawa2014-10-062-12/+8
* | | | Merge "Update setup wizard video and image of AOSP"Tadashi G. Takaoka2014-10-062-4/+5
|\ \ \ \ | |/ / / |/| | |
| * | | Update setup wizard video and image of AOSP•••Bug: 17769384 Change-Id: I23748bce17566aad1693ff56e8c04f493f957f84 Tadashi G. Takaoka2014-10-062-4/+5
* | | | Merge "Refactor custom input style settings"Tadashi G. Takaoka2014-10-061-31/+23
|\ \ \ \ | |_|_|/ |/| | |
| * | | Refactor custom input style settings•••This CL removes references of Pair class. Change-Id: I7cda0ac438ac1d5026599cb52ac2ea8845339da9 Tadashi G. Takaoka2014-10-061-31/+23
| |/ /
* | | Merge "Add unittest for SuggestionSpanUtils"Yohei Yukawa2014-10-061-1/+6
|\ \ \
| * | | Add unittest for SuggestionSpanUtils•••This adds unittest for SuggestionSpanUtils for subsequent CLs. No behavior change is intended in this CL. BUG: 16995261 Change-Id: I90d1591cab893a1421ca633963b7c8f00a5fe4b4 Yohei Yukawa2014-10-061-1/+6
| | |/ | |/|
* | | Make UserHistoryDictionary use updateEntriesForWordWithNgramContext()•••Bug: 14425059 Change-Id: I409ebf90f68f4a0f1638128ac5ee6af859323d30 Keisuke Kuroyanagi2014-10-064-49/+52
| |/ |/|
* | Make unit tests use new entry updating method.•••Bug: 14425059 Change-Id: Ie7d92e92822a0d3a8b654d213e55d45aab799f5d Keisuke Kuroyanagi2014-10-061-0/+20
|/
* Revert "[ML14] Forward the locale list to relevant places"•••This reverts commit 15dbd38283fc9c8fdfd2540f1d94d4dbf2eabcb5. Bug: 11230254 Reverting due to unit test breakage. Change-Id: Icf29ba5c808c754515aef2d1b4162d72f606acfe Ken Wakasa2014-10-0311-126/+90
* [ML14] Forward the locale list to relevant places•••Bug: 11230254 Change-Id: Idf3ed27b396d63ade9800c72c5ce0ed613f5f669 Jean Chalard2014-10-0311-90/+126
* Use Devanagari Danda letter as full stop on Nepali keyboard•••Bug: 17741882 Change-Id: I62e8c9a3f194b9a3a6724c7d1a92292b150ddeb9 Tadashi G. Takaoka2014-10-031-98/+102
* Merge "Fix a behavior change in dicttool"Jean Chalard2014-10-031-8/+23
|\
| * Fix a behavior change in dicttool•••The behavior change was introduced by I8b3458ad. Concretely, empty bigram lists would end up as empty lists instead of null. Change-Id: Ibcdf7e6aabc6aba3f5db0477335882394e050ce5 Jean Chalard2014-10-031-8/+23
* | Merge "[ML13] Fix the locale passing in ProximityInfo"Jean Chalard2014-10-032-22/+13
|\ \
| * | [ML13] Fix the locale passing in ProximityInfo•••The locale is used to determine additional proximity characters. This is dependent on the dictionary language, but was passed as a function of the layout, which is wrong and would have given bad suggestions in multi-lingual mode. Ideally, additional proximity characters should be inserted in the dictionary header, but for now it's a rather simple change to get it from the dictionary's locale instead of the proximity info locale. Also, that allows us to remove completely the locale parameter from proximity info, which is a much needed change. This change has zero effect on unit tests and on regression tests. Bug: 11230254 Change-Id: If95157155db7dccd1f00b8ba55ccb3600283f9e4 Jean Chalard2014-10-032-22/+13
| |/
* / Fix when to show input view•••Bug: 15922840 Bug: 17788786 Change-Id: I69aea682202650b601a295d9da583ef8e05a3982 Tadashi G. Takaoka2014-10-032-6/+27
|/
* Add calls to stub for API to consume gesture data.•••Bug: 17400259 Change-Id: Ib3511afffe1d14662e7dd14611f384689516e664 David Faden2014-10-036-4/+138
* Fix ellipsizing and text scale x calculation•••Bug: 17742721 Bug: 11158757 Change-Id: I98b55a8e661804e84f75e75675c6f2ef33ac1a11 Tadashi G. Takaoka2014-10-021-57/+62
* Merge "Preserve spans when splitting sentences"Yohei Yukawa2014-10-021-3/+2
|\
| * Preserve spans when splitting sentences•••This CL fixes a bug that span information was unintentionally removed when given sentences are split into words. Nothing is changed in KitKat and prior because TextInfo never returns spanned text until L. Note that the spell checker service still doesn't rely on span information even with this CL. BUG: 16419551 Change-Id: I6ffb75ee6add4ae20e9d3dcfb90b65f097d70fba Yohei Yukawa2014-10-021-3/+2
* | Merge "[ML12] Add a getPrimaryLocale function and some refactoring"Jean Chalard2014-10-022-17/+52
|\ \
| * | [ML12] Add a getPrimaryLocale function and some refactoring•••Bug: 11230254 Change-Id: Ic579b93702c24f47e6cdb0c9a4da6b11f1fa76c8 Jean Chalard2014-10-022-17/+52
* | | Merge "Include a code point table in the binary dictionary."Akifumi Yoshimoto2014-10-021-1/+3
|\ \ \
| * | | Include a code point table in the binary dictionary.•••Bug:17097992 Change-Id: I677a5eb3a704e4386f6573360e44ca335d81d2df Akifumi Yoshimoto2014-10-021-1/+3
* | | | Merge "Fix unnecessary touch event handling"Tadashi G. Takaoka2014-10-021-0/+6
|\ \ \ \ | |_|/ / |/| | |
| * | | Fix unnecessary touch event handling•••Bug: 17762449 Change-Id: I698ca91ab977aa65c7bd8a5fb82b3d91264cfbca Tadashi G. Takaoka2014-10-021-0/+6
* | | | Merge "Avoid downloading the metadata in quick succession."Jean Chalard2014-10-024-26/+79
|\ \ \ \ | |/ / / |/| | |
| * | | Avoid downloading the metadata in quick succession.•••Bug: 17668298 Bug: 8651816 Bug: 17709442 Change-Id: Ib232f9d95d7c01a028be85d10f974a5a570c0ed5 Jean Chalard2014-10-014-26/+79
* | | | Merge "Never include the typed word in recorrections"Jean Chalard2014-10-012-32/+11
|\ \ \ \ | |_|_|/ |/| | |
| * | | Never include the typed word in recorrections•••Bug: 17623275 Change-Id: I2461e5e8baf06fb80a05b87f9d3db7a4d1952a01 Jean Chalard2014-10-012-32/+11
* | | | Merge "Make a better effort to detect a framework lie."Jean Chalard2014-10-013-17/+35
|\ \ \ \
| * | | | Make a better effort to detect a framework lie.•••Bug: 17130496 Change-Id: I1a3631670c152d9b7667c9c4e08e14c48569eef5 Jean Chalard2014-10-013-17/+35
| |/ / /
* | | | Merge "Fix an NPE on ICS factory rom."Jean Chalard2014-10-011-2/+4
|\ \ \ \
| * | | | Fix an NPE on ICS factory rom.•••In ICS factory rom and MR0, there was a bug where calling the constructor for SuggestionSpan that doesn't take a context as an argument would always return in a crash. Don't call it, and pass an explicit context instead. Bug: 13552505 Change-Id: I5c919499b9d086c2cf283795b2af5b91cb425933 Jean Chalard2014-10-011-2/+4
| |/ / /
* | | | Add Uzbek keyboard•••Bug: 13222403 Change-Id: I9a4cf447a8ab0c26c4dc7f7794c57390024660cc Tadashi G. Takaoka2014-10-011-239/+304
* | | | Merge "Use Devanagari Danda letter as full stop on Hindi keyboard"Tadashi G. Takaoka2014-10-011-110/+120
|\ \ \ \
| * | | | Use Devanagari Danda letter as full stop on Hindi keyboard•••Bug: 17418371 Change-Id: I22bb2913015a83604301576e68095974c38b7c9a Tadashi G. Takaoka2014-10-011-110/+120
* | | | | Merge "Add jni method to update entries for a word efficiently."Keisuke Kuroyanagi2014-10-011-0/+3
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Add jni method to update entries for a word efficiently.•••Bug: 14425059 Change-Id: Ic628939ea68cdee17573409883a8403c73b78905 Keisuke Kuroyanagi2014-10-011-0/+3
* | | | | Merge "Add Akkhor Layout for Bengali Bangladesh"Tadashi G. Takaoka2014-10-011-160/+180
|\ \ \ \ \
| * | | | | Add Akkhor Layout for Bengali Bangladesh•••Bug: 16143057 Change-Id: I0b4a3d0d1125f9af25a98ee7a1852129ae1c1d2c Tadashi G. Takaoka2014-09-261-160/+180