aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge "Fix a bug where a space would not be inserted before a gesture"Jean Chalard2013-04-101-1/+2
|\
| * Fix a bug where a space would not be inserted before a gesture•••Bug: 8583675 Change-Id: I14924fef5663f48481994c02c56be45f9f85be65 Jean Chalard2013-04-101-1/+2
* | Use private lock object instead of synchronized method•••Change-Id: Ifc62bacbd0583a7d102009681a94bdd9ccff7d47 Tadashi G. Takaoka2013-04-101-22/+31
|/
* Fix a bug where autocorrection status would be wrong.•••Change-Id: Ic220129dc59f585164dbf63591cd1c96de17fe6f Jean Chalard2013-04-106-9/+10
* Don't override EXTRA_SHOW_FRAGMENT if exists•••Bug: 8541190 Change-Id: I37d3de12558efd55f157389d2e0b51fc83dc5da1 Tadashi G. Takaoka2013-04-101-1/+4
* Merge "Separate StringUtils.capitalizeFirstCharacter"Tadashi G. Takaoka2013-04-102-4/+12
|\
| * Separate StringUtils.capitalizeFirstCharacter•••Bug: 8582061 Change-Id: Iac8f65defdd92d7df533bdf0e2937ad897d96363 Tadashi G. Takaoka2013-04-102-4/+12
* | Hide Setup Wizard icon for stock keyboard•••Bug: 8581647 Change-Id: Id530f1a33a5c919f4a732ec0d545dfbe76e56316 Tadashi G. Takaoka2013-04-102-1/+12
|/
* Merge "Refactor SpellCheckerProximityInfo as extending ProximityInfo"Tadashi G. Takaoka2013-04-102-39/+44
|\
| * Refactor SpellCheckerProximityInfo as extending ProximityInfo•••Change-Id: I544eec9d661796d57749dbaa2163bc1e2a891353 Tadashi G. Takaoka2013-04-022-39/+44
* | 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.•••That includes gestures, which used not to work. Bug: 8532637 Change-Id: I04606565d7000faadf954c4a806c39d4d162a2c1 Jean Chalard2013-04-092-7/+11
* | | Merge "Fix bugs and add tests"Jean Chalard2013-04-091-9/+20
|\ \ \
| * | | Fix bugs and add tests•••Change-Id: I6b56b91ace57f4a49584b5dceb71b145859f839e Jean Chalard2013-04-051-9/+20
* | | | Merge "Do not record log split time when handling separator"Kurt Partridge2013-04-091-1/+0
|\ \ \ \ | |_|/ / |/| | |
| * | | Do not record log split time when handling separator•••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 Kurt Partridge2013-04-011-1/+0
* | | | Update comments•••Change-Id: I6aef328ec9041666cc168c8323bed04d39591b71 Ken Wakasa2013-04-081-1/+1
| |/ / |/| |
* | | Move a generic string utility to StringUtils•••Change-Id: I9cc2e9a7ac0b3346af40bcb083f939333336cf09 Jean Chalard2013-04-053-36/+36
* | | Revert "[DO NOT MERGE] Activate hardware keyboard handling"•••This reverts commit c741f1f83b98293bf0040b6b81e95b75ecf3f6bc DO NOT MERGE is ignored and this is merged anyway :( Change-Id: Ie044cdfc6021933379ec97ad7346c5c8591f70bf Jean Chalard2013-04-021-1/+1
* | | [DO NOT MERGE] Activate hardware keyboard handling•••Change-Id: Ifdec9338a454291621b2b87c899f5d4301480b27 Jean Chalard2013-04-021-1/+1
* | | Merge "Reorder ResearchLogger call"Kurt Partridge2013-04-011-2/+2
|\ \ \
| * | | Reorder ResearchLogger call•••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 Kurt Partridge2013-03-261-2/+2
* | | | am b8869ec1: am 0fcc4960: Deactivate hardware keyboard handling.•••* commit 'b8869ec1e39c1751825841e790d21fc854dca9ce': Deactivate hardware keyboard handling. Jean Chalard2013-04-011-1/+1
|\ \ \ \ | |_|/ / |/| | |
| * | | Deactivate hardware keyboard handling.•••Bug: 8000119 Change-Id: I021481343d6d87efd8ff6110e9aa0906a1a3d11d Jean Chalard2013-04-011-1/+1
| |/ /
* | | 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 not•••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 Jean Chalard2013-04-012-1/+74
* | | | Merge "Fix two nasty bugs with surrogate pairs."Jean Chalard2013-04-011-13/+13
|\ \ \ \ | |/ / / |/| | |
| * | | Fix two nasty bugs with surrogate pairs.•••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 Jean Chalard2013-04-011-13/+13
* | | | Fix an NPE•••Also remove an unused method and make 2 private variables final. Bug: 8461093 Change-Id: I676d93fda28e82eb5a6978f2e7ad5a0add2cbecf Jean Chalard2013-03-291-18/+10
|/ / /
* | | Merge "Fix Possible NPE"Satoshi Kataoka2013-03-271-1/+6
|\ \ \
| * | | Fix Possible NPE•••Bug: 8448448 Change-Id: Ibe89c9abd24c4debb33a69c372eadf2afb09ea1c Satoshi Kataoka2013-03-261-1/+6
| |/ /
* | | Merge "Fix possible SIOOBE"Satoshi Kataoka2013-03-271-2/+9
|\ \ \
| * | | Fix possible SIOOBE•••Bug: 8461021 Change-Id: I8b0385610b80b5a672ec380935c485a0e01ae984 Satoshi Kataoka2013-03-271-2/+9
| |/ /
* | | Merge "Close ResearchLogger upon onFinishInputView"Kurt Partridge2013-03-261-5/+3
|\ \ \ | |/ / |/| |
| * | Close ResearchLogger upon onFinishInputView•••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 Kurt Partridge2013-03-251-5/+3
* | | Merge "Fix possible NPE"Satoshi Kataoka2013-03-261-19/+21
|\ \ \
| * | | Fix possible NPE•••Bug: 8457109 Change-Id: I321fbef53e20a7c36ef4bd9f544b50abe6a52be9 Satoshi Kataoka2013-03-251-19/+21
| |/ /
* / / Clean up XmlParserUtils•••Change-Id: I636e8f359d47f39e61a7f77e3e686f2721779b6f Tadashi G. Takaoka2013-03-261-13/+16
|/ /
* | Fix possible ArrayIndexOutOfBoundsException•••Bug: 8461864 Change-Id: Icd8f4f51ec064461c08d00c1c58bedf5fbae2553 Tadashi G. Takaoka2013-03-251-1/+1
* | Fix appname•••Bug: 6789579 Change-Id: Ic4694e36e0846af95fa8dcdef919be251983b528 Satoshi Kataoka2013-03-224-1/+33
* | Use correct appname resource•••Bug: 6789579 Change-Id: Id11435a28d6c5b6c72867814e23f5e62429080f8 Satoshi Kataoka2013-03-221-7/+8
|/
* Support feedback•••Bug: 8143554 Change-Id: If0a6bafc94da040f97f27c6d046fb58bed9fd615 Satoshi Kataoka2013-03-193-0/+51
* am 1061bfdb: Break dependencies to allow offdevice tests to build•••* commit '1061bfdb34bbcb63bf0046eec42313d264ac33fa': Break dependencies to allow offdevice tests to build Jean Chalard2013-03-194-14/+7
|\
| * Break dependencies to allow offdevice tests to build•••Change-Id: Ia9a2e8f0672b3f72943f26fb15de1d3c7c5ce7f1 Jean Chalard2013-03-194-14/+7
* | am 0cc0544a: Merge the dictionary pack in Latin IME.•••* commit '0cc0544a2995c7eb54a830ae54db60af89d4073d': Merge the dictionary pack in Latin IME. Jean Chalard2013-03-196-30/+48
|\|
| * Merge the dictionary pack in Latin IME.•••Bug: 8161354 Change-Id: I17c23f56dd3bc2f27726556bf2c5a9d5520bd172 Jean Chalard2013-03-196-30/+48
* | resolved conflicts for merge of 5b048292 to master•••Change-Id: I67ebab46954cd7b8e3e79e7fed523bafb15f8835 Tadashi G. Takaoka2013-03-196-54/+59
|\|
| * Rename ProductionFlag.IS_EXPERIMENTAL to USES_DEVELOPMENT_ONLY_DIAGNOSTICS•••bug: 8393568 Change-Id: Ie5edf44a3627aca9416145aff56bf05bbf2a05f3 Ken Wakasa2013-03-186-53/+58
* | am 5cb0560b: Merge "Access the dictionary pack only if have INTERNET permissi...•••* commit '5cb0560b000f37b3fb3937f01b6d3e928afef57a': Access the dictionary pack only if have INTERNET permission Jean Chalard2013-03-181-2/+8
|\|
| * Merge "Access the dictionary pack only if have INTERNET permission" into jb-m...Jean Chalard2013-03-181-2/+8
| |\