aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Offer to add any OOV typed word to the dictionary."Jean Chalard2013-04-092-7/+11
|\
| * Offer to add any OOV typed word to the dictionary.Jean Chalard2013-04-092-7/+11
| | | | | | | | | | | | | | That includes gestures, which used not to work. Bug: 8532637 Change-Id: I04606565d7000faadf954c4a806c39d4d162a2c1
* | Merge "Fix bugs and add tests"Jean Chalard2013-04-091-9/+20
|\ \
| * | Fix bugs and add testsJean Chalard2013-04-051-9/+20
| | | | | | | | | | | | Change-Id: I6b56b91ace57f4a49584b5dceb71b145859f839e
* | | Merge "Do not record log split time when handling separator"Kurt Partridge2013-04-091-1/+0
|\ \ \ | |_|/ |/| |
| * | Do not record log split time when handling separatorKurt Partridge2013-04-011-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | Previously handleSeparator() caused the ResearchLogger to mark the time at which a LogUnit should be broken. However, this causes the motion data associated with a separator to be associated with the LogUnit of the previous word. This change corrects this bug. Change-Id: I8b4d4fa6de2a013de9e2a28bb668c446a07f1957
* | | Update commentsKen Wakasa2013-04-081-1/+1
| |/ |/| | | | | Change-Id: I6aef328ec9041666cc168c8323bed04d39591b71
* | Move a generic string utility to StringUtilsJean Chalard2013-04-053-36/+36
| | | | | | | | Change-Id: I9cc2e9a7ac0b3346af40bcb083f939333336cf09
* | Revert "[DO NOT MERGE] Activate hardware keyboard handling"Jean Chalard2013-04-021-1/+1
| | | | | | | | | | | | | | This reverts commit c741f1f83b98293bf0040b6b81e95b75ecf3f6bc DO NOT MERGE is ignored and this is merged anyway :( Change-Id: Ie044cdfc6021933379ec97ad7346c5c8591f70bf
* | [DO NOT MERGE] Activate hardware keyboard handlingJean Chalard2013-04-021-1/+1
| | | | | | | | Change-Id: Ifdec9338a454291621b2b87c899f5d4301480b27
* | Merge "Reorder ResearchLogger call"Kurt Partridge2013-04-011-2/+2
|\ \
| * | Reorder ResearchLogger callKurt Partridge2013-03-261-2/+2
| | | | | | | | | | | | | | | | | | | | | Previously, ResearchLogger#onWordFinished() was called with an outdated parameter value for isBatchMode, causing it to report false even for gestures. This changes fixes this problem. Change-Id: Ifcabee236ba5fe20376ad882155d3f3142cd7613
* | | am b8869ec1: am 0fcc4960: Deactivate hardware keyboard handling.Jean Chalard2013-04-011-1/+1
|\ \ \ | |_|/ |/| | | | | | | | * commit 'b8869ec1e39c1751825841e790d21fc854dca9ce': Deactivate hardware keyboard handling.
| * | Deactivate hardware keyboard handling.Jean Chalard2013-04-011-1/+1
| |/ | | | | | | | | | | Bug: 8000119 Change-Id: I021481343d6d87efd8ff6110e9aa0906a1a3d11d
* | Merge "Ask the client to make itself known when it's not"Jean Chalard2013-04-012-1/+74
|\ \
| * | Ask the client to make itself known when it's notJean Chalard2013-04-012-1/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upon invoking the settings of the dictionary pack with an unknown client, we now launch an intent to ask the client to make itself known. This change also includes the code that receives this intent and acts upon it. Bug: 8492879 Change-Id: I2c6496dea845646961ecafcf64e282cb93ee91dc
* | | Merge "Fix two nasty bugs with surrogate pairs."Jean Chalard2013-04-011-13/+13
|\ \ \ | |/ / |/| |
| * | Fix two nasty bugs with surrogate pairs.Jean Chalard2013-04-011-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The important bug is in findWordInTree. The problem, which is not obvious, is that we were calling codePointAt() with the code point index in the string, instead of the char index. The other bug this change fixes was harmless in the practice, because it's in the iteration which is only used for debug and pretty printing purposes. It's very similar in that it would substract a length in code point to a length in chars and truncate a StringBuilder at that length, so it would fail in a quite similar manner. This changes the meaning of the "length" attribute in Position, but it's clearer this way anyway. Bug: 8450145 Change-Id: If396f883a9e6449de39351553ba83f5be5bd30f0
* | | Fix an NPEJean Chalard2013-03-291-18/+10
|/ / | | | | | | | | | | | | | | Also remove an unused method and make 2 private variables final. Bug: 8461093 Change-Id: I676d93fda28e82eb5a6978f2e7ad5a0add2cbecf
* | Merge "Fix Possible NPE"Satoshi Kataoka2013-03-271-1/+6
|\ \
| * | Fix Possible NPESatoshi Kataoka2013-03-261-1/+6
| |/ | | | | | | | | Bug: 8448448 Change-Id: Ibe89c9abd24c4debb33a69c372eadf2afb09ea1c
* | Merge "Fix possible SIOOBE"Satoshi Kataoka2013-03-271-2/+9
|\ \
| * | Fix possible SIOOBESatoshi Kataoka2013-03-271-2/+9
| |/ | | | | | | | | | | Bug: 8461021 Change-Id: I8b0385610b80b5a672ec380935c485a0e01ae984
* | Merge "Close ResearchLogger upon onFinishInputView"Kurt Partridge2013-03-261-5/+3
|\ \ | |/ |/|
| * Close ResearchLogger upon onFinishInputViewKurt Partridge2013-03-251-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | Previously, ResearchLogger#stop() was called both in LatinIME#onFinishInputView() and in LatinIME#onWindowHidden(). This resulted in multiple logs being written. Since onFinishInputView is the more reliable of the two (it is called in InputMethodService#onDestroy; onWindowHidden is not), the code now uses onFinishInputView as a stopping signal. Change-Id: Iae4b8c3bdab226027624eeab19b3737367e4a108
* | Merge "Fix possible NPE"Satoshi Kataoka2013-03-261-19/+21
|\ \
| * | Fix possible NPESatoshi Kataoka2013-03-251-19/+21
| |/ | | | | | | | | Bug: 8457109 Change-Id: I321fbef53e20a7c36ef4bd9f544b50abe6a52be9
* / Clean up XmlParserUtilsTadashi G. Takaoka2013-03-261-13/+16
|/ | | | Change-Id: I636e8f359d47f39e61a7f77e3e686f2721779b6f
* Fix possible ArrayIndexOutOfBoundsExceptionTadashi G. Takaoka2013-03-251-1/+1
| | | | | Bug: 8461864 Change-Id: Icd8f4f51ec064461c08d00c1c58bedf5fbae2553
* Fix appnameSatoshi Kataoka2013-03-224-1/+33
| | | | | Bug: 6789579 Change-Id: Ic4694e36e0846af95fa8dcdef919be251983b528
* Use correct appname resourceSatoshi Kataoka2013-03-221-7/+8
| | | | | Bug: 6789579 Change-Id: Id11435a28d6c5b6c72867814e23f5e62429080f8
* Support feedbackSatoshi Kataoka2013-03-193-0/+51
| | | | | Bug: 8143554 Change-Id: If0a6bafc94da040f97f27c6d046fb58bed9fd615
* am 1061bfdb: Break dependencies to allow offdevice tests to buildJean Chalard2013-03-194-14/+7
|\ | | | | | | | | * commit '1061bfdb34bbcb63bf0046eec42313d264ac33fa': Break dependencies to allow offdevice tests to build
| * Break dependencies to allow offdevice tests to buildJean Chalard2013-03-194-14/+7
| | | | | | | | Change-Id: Ia9a2e8f0672b3f72943f26fb15de1d3c7c5ce7f1
* | am 0cc0544a: Merge the dictionary pack in Latin IME.Jean Chalard2013-03-196-30/+48
|\| | | | | | | | | * commit '0cc0544a2995c7eb54a830ae54db60af89d4073d': Merge the dictionary pack in Latin IME.
| * Merge the dictionary pack in Latin IME.Jean Chalard2013-03-196-30/+48
| | | | | | | | | | Bug: 8161354 Change-Id: I17c23f56dd3bc2f27726556bf2c5a9d5520bd172
* | resolved conflicts for merge of 5b048292 to masterTadashi G. Takaoka2013-03-196-54/+59
|\| | | | | | | Change-Id: I67ebab46954cd7b8e3e79e7fed523bafb15f8835
| * Rename ProductionFlag.IS_EXPERIMENTAL to USES_DEVELOPMENT_ONLY_DIAGNOSTICSKen Wakasa2013-03-186-53/+58
| | | | | | | | | | bug: 8393568 Change-Id: Ie5edf44a3627aca9416145aff56bf05bbf2a05f3
* | am 5cb0560b: Merge "Access the dictionary pack only if have INTERNET ↵Jean Chalard2013-03-181-2/+8
|\| | | | | | | | | | | | | permission" into jb-mr2-dev * commit '5cb0560b000f37b3fb3937f01b6d3e928afef57a': Access the dictionary pack only if have INTERNET permission
| * Merge "Access the dictionary pack only if have INTERNET permission" into ↵Jean Chalard2013-03-181-2/+8
| |\ | | | | | | | | | jb-mr2-dev
| | * Access the dictionary pack only if have INTERNET permissionJean Chalard2013-03-181-2/+8
| | | | | | | | | | | | | | | Bug: 8161354 Change-Id: I68ee3acb2955a017d25666cc2dad791798f9064a
* | | am e0e67373: Refactor parameters by naming conventionSatoshi Kataoka2013-03-181-2/+2
|\| | | | | | | | | | | | | | * commit 'e0e67373735918c78eaeaf24f127e1d28816aa29': Refactor parameters by naming convention
| * | Refactor parameters by naming conventionSatoshi Kataoka2013-03-181-2/+2
| | | | | | | | | | | | Change-Id: I8bda8075b33f656ecbec08320afcd864b620fe77
* | | am a5067333: Disable the header list of DebugSettingsActivityTadashi G. Takaoka2013-03-152-7/+8
|\| | | | | | | | | | | | | | * commit 'a50673330e012f6cca02b83eca1c047b8da319e0': Disable the header list of DebugSettingsActivity
| * | Disable the header list of DebugSettingsActivityTadashi G. Takaoka2013-03-152-7/+8
| |/ | | | | | | | | | | | | This change addresses the issue that the debug settings on 10-inch tablet doesn't show up. Change-Id: I60540cf21276869a3ca81b7b0154056ce7d93ff1
* | am f0864b1d: Merge "Clean up StaticInnerHandlerWrapper a bit" into jb-mr2-devTadashi G. Takaoka2013-03-141-7/+7
|\| | | | | | | | | * commit 'f0864b1d95411ce9886a5ade13f42cb17f578828': Clean up StaticInnerHandlerWrapper a bit
| * Merge "Clean up StaticInnerHandlerWrapper a bit" into jb-mr2-devTadashi G. Takaoka2013-03-141-7/+7
| |\
| | * Clean up StaticInnerHandlerWrapper a bitTadashi G. Takaoka2013-03-141-7/+7
| | | | | | | | | | | | Change-Id: Ib07efe6da1eb2f0fd9ef68ca71502c98f7e19f4b
* | | am 0d5f214a: Fix NPE found in monkey testTadashi G. Takaoka2013-03-141-0/+3
|\| | | | | | | | | | | | | | * commit '0d5f214aa774ab0ab7c17521984caae11c9f4c2b': Fix NPE found in monkey test
| * | Fix NPE found in monkey testTadashi G. Takaoka2013-03-141-0/+3
| |/ | | | | | | | | Bug: 8383127 Change-Id: Ifd70acabe118b477f103937c7f1e99e38e210833