fee149abe0358ff0efcebff3d0b60d8be83af437 |
|
06-Oct-2011 |
Jean Chalard <jchalard@google.com> |
Use the whitelist as a dictionary in the spell checker. Bug: 5402436 Change-Id: If89b8bbdebf6751697c4788270d01d4639cff665
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
3458d61807a03ed7fb8571488ee0fcbff39e07f8 |
|
06-Oct-2011 |
Jean Chalard <jchalard@google.com> |
Make the whitelist an instanciable class. This goes together with I6b8628b9acc32449e4147a2a754b222fbb76c754 or it will break the build Bug: 5402436 Change-Id: I07c6266b713773a8de80bb22afdd4c566261f78a
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
904baab25a4c6ec5d9c4bf7e562154e3f544d296 |
|
03-Oct-2011 |
satok <satok@google.com> |
Remove code related to AutoText Bug: 5245751 Change-Id: Ic02f951e8e1dbde9d8964d2c16e4928fb374ca41
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
5c08151c227d98031abe27c3f0a8f43a7126ae9d |
|
15-Sep-2011 |
Jean Chalard <jchalard@google.com> |
Avoid returning an object that's still used internally There is no definite path known for this to end up being touched by other classes, but we could imagine through some way or some other it ends up shoved in the stringbuilder pool, leading to catastrophic results. Hopefully related to Bug: 5248688 Change-Id: Ib8abfc31263cbf31d515ed607ced5d8253971938
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
358e1327d8d1c392ab711778d8e616400360e313 |
|
31-Aug-2011 |
Jean Chalard <jchalard@google.com> |
Fix a bug where autotext would occasionally not work Autotext correction would check whether the first suggestion so far was the same as what Autotext would return, and if it was indeed the same, would not send its result as autocorrect. However, the first suggestion is not guaranteed to have a high enough score to trigger autocorrection, and there would be cases where a word in autotext would not get autocorrected because the word came out of bigram suggestions. These occurrences would be extremely rare, as they would require concomitant insert between autotext for one char and bigram suggestion. It is, in fact, probably limited to the capitalization of "I". This did not happen in gingerbread because gingerbread would not register 1-letter words as valid bigrams. This fix works by just always sending the result of autotext regardless of whether it is already the first suggestion or not. This is okay because duplicates are removed afterwards anyway - and this processing is absolutely necessary because the autotext'd word may actually be somewhere else in the suggestion, so it made really no sense checking for only the first one. Please note that there is also a race condition that can result in "i" not being converted to "I": at the moment, Latin IME relies on having the suggestions evaluated at the time autocorrection is performed, but when typing very, very fast, those messages may have been canceled. This is not limited to the autocorrection of "i", but affects all autocorrections. It requires a nearly inhumane typing speed to trigger, but hitting "i" and space in turn as fast as one can it's possible to reproduce occasionally. Bug: 5135113 Change-Id: I530ea6212487300001a2c0fc5b25a5c7716bdf63
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
a6e912cf9849f5c979303042ce83820a8dc560d0 |
|
23-Aug-2011 |
Jean Chalard <jchalard@google.com> |
Fix a bug with the string pool. This also adds some optional debug code to detect more easily possible future occurrences of the same problem. Bug: 5195017 Change-Id: I2558b468e46f7090de868f1ec2dc9e24895d670f
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
6da8b74582b1c70cae02558c605c5a224329cf7a |
|
19-Aug-2011 |
Jean Chalard <jchalard@google.com> |
Move the dupes-removing method to the Utils class This is preparation for bug: 5175740 Change-Id: I18b2042317f740cb1e021d3dfbf90ecfbb1a1d37
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
4e01afc520da212b73804164d4d5a1c62239b02a |
|
17-Aug-2011 |
Jean Chalard <jchalard@google.com> |
Make the string builder pool in Suggest a singleton. This is internal refactoring, done as preliminary work to fix Bug: 5175740 Change-Id: I21bd4c001c27e7b925ddb87a152105b4dcab320a
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
3016863f86279d0be04c0285fefce6861415f242 |
|
17-Aug-2011 |
Jean Chalard <jchalard@google.com> |
Refactor string removal to make it static The next step is to move this over to the Utils class. The ultimate goal is to make use of the duplicate removal code also in the spell checker as per Bug: 5175740 Change-Id: Ica36691b843b0713b832c56ffc65e5b2ec427c4a
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
14051e2b5343db4b0531b7b4b806da0c09d6e251 |
|
09-Aug-2011 |
Jean Chalard <jchalard@google.com> |
Stop reloading contacts when not appropriate. A recent change had the contacts reloaded every time a new field is touched. This change not only fixes the problem, but also removes reloading contacts when changing language, which should make language switch within LatinIME lighter. Bug: 5125034 Change-Id: Ia61c4f75a8617113cdce88a2e2c6fdf073146a2d
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
c769ef4dd17ff9561e99528624f74b9072a09fbb |
|
08-Aug-2011 |
Ken Wakasa <kwakasa@google.com> |
Correction mode should not rely on the existence of the main dic bug: 5114094 Change-Id: I2088918ec2c9ad6f8db13b55e58d3e73e180aef8
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
043f7841985916717f4fa821fe3e423daf3ff2f5 |
|
03-Aug-2011 |
Jean Chalard <jchalard@google.com> |
Create a way to pass the proximity info to the dictionary This is a preparative change for inserting the spell checker. Change-Id: Ie441879cac4f67078ec27a95f1fcbbf3ef373df7
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
3af9f05f2916e376f265974c820c369a6c63a780 |
|
21-Jul-2011 |
Jean Chalard <jchalard@google.com> |
Load the binary dictionary asynchronously. This should help with LatinIME opening performance. It should not be merged before Ia9e4741f (if it is, there is a race condition where the wrong dictionary is opened). Bug: 5023141 Change-Id: I39c52de70a449929a622dddfdd92b38425ad9416
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
f4223452119f9ff8b52f026f7ef92d961736dc51 |
|
15-Jul-2011 |
Jean Chalard <jchalard@google.com> |
Rename AutoDictionary to UserUnigramDictionary. ...and adjust internal functions, variables and constant names. Bug: 3459274 Change-Id: I1b11c6adfee360ac0fc22d627955688b3dbdcffc
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
35f20916e5348d7fa485ba8eb0a5cf2e67f4f354 |
|
21-Jun-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Support Turkish keyboard I left TODOs in Suggest.java because we must pay attention to locale when changing character's case. Filed another Bug: 4769095 to track that. Bug: 4768050 Change-Id: I1ae2c4ffd2208403a8c2a25dd3a56b71dcefc826
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
3439c72639d50921a87ab6f9d3aa1bf941aef8d2 |
|
20-Jun-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Close dictionary appropriately The dictionary that extends ExpandableDictionary must be closed when it becomes unused. Bug: 4725930 Change-Id: Ib5d2c39771fb7010d303a26d1ea1c8e237c0101f
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
86e815a142c8aa13213151e381a8a24ef23073d3 |
|
14-Jun-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Implement expandable candidates pane This change removes horizontal scroll from candidates strip. Instead of that this change introduces "fixed 3 items candidates strip" and "expandable candidates pane". Bug: 4175031 Change-Id: Ia367d9074436fdea76d3b653d81798ce2749170e
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
699094f9b6e0a4621e8b3cfab70b59c0c7c086bb |
|
10-Jun-2011 |
Jean Chalard <jchalard@google.com> |
Add an option to use or not the contacts dictionary. Bug: 4586840 Change-Id: If62cd57e5ab661e6a51a5442d09bf0af8f08f263
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
4250eb27f54f8fedc388fe4825b0646a88778744 |
|
26-Apr-2011 |
Jean Chalard <jchalard@google.com> |
Create a dictionary collection and a dictionary factory. The dictionary collection is a class complying to the Dictionary interface that acts as a front end to a collection of arbitrarily many dictionaries of any type. The dictionary factory is a helper class for creating various dictionaries and get some meta information about them. At the same time, this change makes the BinaryDictionary class not a singleton any more. This also needs I9afe61a9 to not break the build. Change-Id: I61fdcc4867fcda18342807bf1865e6e46979e5d5
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
0c8d5ca023d54b7c9ef6c20eb7988288132bacb5 |
|
26-Apr-2011 |
Jean Chalard <jchalard@google.com> |
Fix Eclipse warnings. This change is only there to fix warning issued by Eclipse. It should have absolutely no impact on the program logic. Change-Id: Ie0e242ac6c167297d33de19902340b0f6ecae9e1
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
89bd776cf68150202d774d62cc1c88664aea5e9f |
|
20-Apr-2011 |
Jean Chalard <jchalard@google.com> |
Use user-history bigrams when no input if available. This also fixes a small inconsistency upon clicking on whitespace twice in a row. Also add some unit tests for an introduced and an existing method. Change-Id: I1be2fb53c9624f4d0f5299009632cb4384fdfc15
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
15a0ba6d74feed57124938336f951ae14aa47ad9 |
|
21-Apr-2011 |
satok <satok@google.com> |
Check the availability of layouts for showing the input languages in the settings Bug: 4316889 Change-Id: I746b3ff79c2a6cd4925fca1817d5b209623b5108
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
c899038eee5c01d520a2707cca01ee093a674d05 |
|
20-Apr-2011 |
Jean Chalard <jchalard@google.com> |
Move language-specific keyboard setting to resources. Some flag settings used to be stored in a keyboard layout extravalue setting. This change: - Introduces the capability of setting such specific flags in values/config.xml - Retains the ability to use extravalues (for layout-specific settings), though there is no more any such setting at the moment. - Fixes a bug where loading a dictionary from outside does not initialize the flags. - Moves Flag to another class. Note: this needs I705ec68c to avoid breaking the build Change-Id: Ia7703aae3215b06c0b3cb792821649806e8998c1
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
cba93f50c3d46ada773ec49435689dc3e2094385 |
|
14-Mar-2011 |
Jean Chalard <jchalard@google.com> |
Add different ways of reading the dictionary file. This change adds basic support for an external dictionary provider. It adds methods for reading the dictionary itself from an asset in the dictionary provider package directly, obtaining the file name through the ContentProvider interface; it also adds a way of getting the data through an InputStream and copying the file locally. Incidentally this change also adds the code needed to listen for updating the dictionary provider package and reloading it in time. This change also goes hand-in-hand with Iab31db6e, which implements the small closed part of this. Issue: 3414944 Change-Id: I5e4fff99a59bb99dbdb002102db6c90e6cb41c8a
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
071f47140cec02197de5e163f45c77990b39457d |
|
15-Mar-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Refactor BinaryDictionary a bit This changes: * Flag initialization code in BinaryDictionary to be more unit test friendly. * Removing unnecessary class hierarchy of LatinIME inner class WordAlternatives. * Formatting normalized score neatly. Change-Id: I9f10c093d4f36258fe883cf3fb10cbbda2770497
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
e7a2512aa3666e1b891dc7dfc5a0cb28fd66bea9 |
|
15-Mar-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Add Utils.equalsIgnoreCase methods This change also corrects usage of "frequency", "priority" and "score" * Frequency is the relative probability in dictionary. * Score is the relative probability in suggestions. * Priority is kind a sorted score. Change-Id: Iafb135a4ecdb401cc505014a07c74dfcac44d699
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
d631651b1291aef52bdd6ea7caaf9b95c9704506 |
|
15-Mar-2011 |
Jean Chalard <jchalard@google.com> |
Avoid the removal of high-ranking exactly typed candidates. It used to be the case that the scoring system turns up the same word that was entered with a different capitalization, but with a lower score than some other, more frequent word. To cope with this, there was code that would order such candidates in the first slot no matter what. This processing is now useless because fully matching words now have a huge boost that ensures they will get to the top of the list, before any non-fully matching word (which means, differing only by capitalization or accents). The bug that did happen with this was, if a fully-matching word got matched by several processing passes, and the (chronologically) later score affected to this word was weaker, it would result in the duplicate removal pass removing the stronger score. This in turn would mess with autocorrect. In an effort to keep the risk at a minimum for MR1, this change does not actually remove the useless code, but adds a check in the odd case to avoid the bad situation. Another change will remove the code for ICS release. bug: 4100269 Change-Id: I18c0575332981ffec0e257e26a360995838d521e
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
bcfce3b3b9dbd4f5db736948b74bd820fc639a08 |
|
04-Mar-2011 |
satok <satok@google.com> |
Add whitelist dictionary Bug: 3447571 Change-Id: I538e4e706982129b666ca1ab1085f1b68b69f87f
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
c2c44f94e705e74598ec944ab51f3bd13eb50dbf |
|
04-Mar-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Cleanup Suggest to be able to be unit test ready Bug: 3414081 Change-Id: Ia76afac4b1a61b8953a215b7cbdb7557736f7b9c
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
9f67e12a0e3f77985fb8bafe0db4c00e32317b9a |
|
02-Mar-2011 |
satok <satok@google.com> |
Move the auto correction functionalities to AutoCorrection.java - Also removed a quick fix for 2nd or more suggestions. Change-Id: I7bf46a9cd6a727473e68836954fca160c9d853e6
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
7e99a28dfcc14f5b19220442db972ca8d786b4fe |
|
02-Mar-2011 |
Ken Wakasa <kwakasa@google.com> |
Clear suggestion strip when the suggestion starts bug: 3488704 bug: 3480132 Change-Id: Ie895d2ad1b58dc65fe16d65baa6fccafd4a142bb
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
887f11ee43ad621aa6ad93d535ab7f48dec73fc7 |
|
10-Feb-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Remove next letters frequency handling Bug: 3428942 Change-Id: Id62f467ce4e50c60a56d59bf96770e799a4659e2
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
33e0b1e79e464ac48a09433bbfcbb17ded620452 |
|
08-Feb-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Add unit test helper method to BinaryDictionary and Suggest Bug: 3414081 Change-Id: Idee64010f2f423d3c7c548d0279c7bf287088762
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
5ef096f5f601c759e8a4a888aaca91ac5ccd9974 |
|
07-Feb-2011 |
Tadashi G. Takaoka <takaoka@google.com> |
Move and rename computeProximityThreshold Move and rename KeyboardView.computeProximityThreshold to KeyDetector.getMostCommonKeyWidth. And make it public for unit test use. This is a part of multi-project change (If751659a, Idb18f362) Bug: 3414081 Change-Id: If751659a53c7412f836d6d28866760ffe84b179b
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
8553b5ec315660ab53dd9234e64e1e39ea09ec0f |
|
31-Jan-2011 |
Jean Chalard <jchalard@google.com> |
Add debugging info for Latin IME. Add frequency of candidates in the candidates view when the debug mode is active. Bug: 3312867 Change-Id: Ie911f14ef11b2fa02af8f3a74302129f16ed0604
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
b5d7857fbc28d311d93de10d9e99f26045a518f0 |
|
27-Jan-2011 |
satok <satok@google.com> |
Merge "Fix auto-correction threshold and promote full matched words" into honeycomb
|
14e427d5bb13d59d23fb317ef90a6c44ae279425 |
|
26-Jan-2011 |
satok <satok@google.com> |
Fix safety net not to be enabled at aggressive autocompletion mode Bug: 3374359 Change-Id: I7b1dbeb64a87dda05397c236bb58da292f819471
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
58c49b91322847dc453742cb34c2899da9b44479 |
|
26-Jan-2011 |
satok <satok@google.com> |
Fix auto-correction threshold and promote full matched words Bug: 3374359 Bug: 3278422 "zbe" will be auto corrected to "be" by fixing s-line "teh" will be auto corrected to "the" by promotion of full matched words Change-Id: I314c632820e4e0b1501edeca60ada205d291451f
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
6f7218627eda110a8454053f8ecb7b80edfdc8ce |
|
19-Jan-2011 |
satok <satok@google.com> |
Dim previously suggested words Change-Id: Id673c03bfa22ea9ce1bedb5174d8309a37a2a460
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
82411d47ba7e8133ed2390c6920945e139a738ce |
|
18-Jan-2011 |
satok <satok@google.com> |
Add a safety net for auto-correction. Bug: 3353956 Change-Id: I6a32632b2f986f0d9a07aa72f256a2c41cc09873
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
da50e1e98dadc3733c615dfb8d87fe8b4688c782 |
|
17-Jan-2011 |
Ken Wakasa <kwakasa@google.com> |
Fixes in close() in BinaryDictionary. Avoid using 'synchronized' in finalizer as well. bug: 3340837 Change-Id: I9b28f54e4490ecb844ba33a379f71b625e4246a2
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
e90b333017c68e888a5e3d351f07ea29036457d0 |
|
07-Jan-2011 |
Ken Wakasa <kwakasa@google.com> |
Load main dic in native Follow up to Id57dce51 bug: 3219819 Change-Id: I00e11ef21d0252ffa88c12dffb9c55b0f2e19a66
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
458249e703bded3a1cbd25a2ab2249f9366a8188 |
|
04-Jan-2011 |
Ken Wakasa <kwakasa@google.com> |
Consolidate main dictionary files. This change is a preparation for upcoming optimizations on dictionary file loading. * We can consolidate dictionary files because we are no longer relying on Asset Manager. * Stopping compressing dictionary files as planning to use mmap() on the region in the apk file. * Probably we won't rely on Asset Manager. Instead we'll probably use offset and size obtained from AssetFileDescriptor. Change-Id: Id57dce512fd3d2397a58628f8264bd824194da76
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
9fb8c6dd48dfa4e45827628a866d9b13c4c6c799 |
|
19-Dec-2010 |
Tadashi G. Takaoka <takaoka@google.com> |
Suppress punctuation suggestions if not needed Bug: 3294256 Bug: 3284745 Change-Id: I77d54cbfcc2e809315bab59ecb808ae944982501
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
9ecad8c2e8571ece6f3f7fbb19ceda5be7866cf0 |
|
12-Dec-2010 |
Tadashi G. Takaoka <takaoka@google.com> |
Fix auto correction threshold values array reference This change also removes unused argument from Suggest.getSuggestions(). Change-Id: I512f8695d22898bb906e136a66e0ee6b521cd1d1
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
1b1f7f907f6c7d6e849c88ca06c3608bc84d7c5f |
|
11-Dec-2010 |
Tadashi G. Takaoka <takaoka@google.com> |
Cleanup unused string resources This change also renames some "completion" to "correction". Change-Id: I156dd7ccafe99a632721f20769d5f0ea5915a564
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
7e181fe1010c8eac7814cc67a0c4b3864a10b151 |
|
10-Dec-2010 |
Tadashi G. Takaoka <takaoka@google.com> |
Introduce SuggestedWords class to represent suggestions list Change-Id: I81677a785640d37296be8b42c7a74bd0c00edf46
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
9502cc177cc53678c9ddcc01d4d046f69220e13b |
|
09-Dec-2010 |
Tadashi G. Takaoka <takaoka@google.com> |
Remove LatinIME prefix from classes This change also cleanups preference key string constants Change-Id: I58510f220a90d00d71a935731abeab87384675bb
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
cdbbea735f590784791f0c1fe33a514c4e864836 |
|
08-Dec-2010 |
satok <satok@google.com> |
Suggest excessive characters bug: 3193883 Change-Id: Iea7a0fce7ce62d8779a7c7e4613d50db30d82b07
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
5a309f57155fb95667c2ccdda730eaf175de8876 |
|
02-Dec-2010 |
Tadashi G. Takaoka <takaoka@google.com> |
Move some inner static class to top class in new package This change introduces new package com.android.inputmethod.keyboard which hosts keyboard related classes. Also adds missing @Override and @SuppressWarning("unused") annotation Change-Id: I0317f5cfa317e13f3c77815f48ffc69b5d1ade05
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
fa086c90760bc2bedf0b74eacb0fed3bf7ebc2b7 |
|
29-Nov-2010 |
Tadashi G. Takaoka <takaoka@google.com> |
Cleanup unused Java import This change also fixes wrong file mode. Change-Id: Ifcf4c9444ddcdc62d2e4b394891d6eee135c1e8f
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
200ece79070750ba702a071908d990f8d1c41f02 |
|
01-Nov-2010 |
Ken Wakasa <kwakasa@google.com> |
Capitalization for "Quick Fixes" words doesn't work bug: 3151706 Change-Id: I7770a1d26edb1ea72ee93396181953a724dcc4bf
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
b1abda8d62d654e876c4f781a07d724922c736e4 |
|
27-Sep-2010 |
Mitsuhiro Shimoda <halwhite@google.com> |
Add an auto complete's threshold option. Change-Id: I3a6821ced8642ab8f954e79a25e31766e4a18eb8
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
0b4ae1f578e768eec4ada90aeb81d11acb10eb2e |
|
27-Sep-2010 |
Ken Wakasa <kwakasa@google.com> |
Capitalize the displayed text in the suggestion bar when all of the user typed chars are upper case bug:3014227 Change-Id: Ic453e2fde57ce51be00f3a506e1c9328103ca99a
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
525141a402ac9a3fb3495cb069ad25b9ba1fc970 |
|
23-Aug-2010 |
satok <satok@google.com> |
Clean up LatinIME java - remove unused code - add @Override - change the inappropriate cast Change-Id: Ib25b4939e5b4273794ab0f6349776b5b62d89894
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
979f8690967ff5409fe18f5085858ccdb8e0ccf1 |
|
20-Aug-2010 |
satok <satok@google.com> |
DO NOT MERGE. Backport LatinIME from master to Gingerbread TODO: Cleanup will follow. Change-Id: I4a68ba9f2f55760aa24187f1f13fdfa8a0b70963
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
443c360d0afdbab091994244f045f4756feaf2b4 |
|
26-Mar-2010 |
Jean-Baptiste Queru <jbq@google.com> |
Clarify licensing -use AOSP copyright instead of Google -add NOTICE and tag file Bug: 2548782 Change-Id: If50b2e9e9cc4b4876b0d047fc9f34e2d537a6da4
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
0c05902e331b03426754a1cfffe28d185dd8338c |
|
25-Mar-2010 |
Amith Yamasani <yamasani@google.com> |
Don't auto-add when in suggest-only mode. Bug: 2521344 Also don't highlight quickfixes when in suggest-only mode In general, reduce the situations where words are auto-added. It was too eagerly adding even words that were in the dictionary.
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
1e5374e98b2707aecd774f495350a74be55ec5dc |
|
17-Mar-2010 |
Amith Yamasani <yamasani@google.com> |
Remove popup for extension keyboard in landscape. bug: 2519903 Also add a summary text in the input language list for languages with a dictionary so that users don't feel cheated when they pick a language that doesn't happen to have a dictionary. Remove greek as it isn't an extension of the QWERTY keyboard.
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|
07b1603a3f9611f6d15dd7fcedf883d6ef8e5817 |
|
09-Mar-2010 |
Amith Yamasani <yamasani@google.com> |
Don't let the native code target be included twice when unbundling. Move java code to a different directory so that the unbundled version doesn't try to compile the native code again. Change-Id: I05cf9e643824ddc448821f69805ccb0240c5b986
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Suggest.java
|