aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Move the UserUnigramDictionary functionality over"Jean Chalard2012-03-163-20/+57
|\
| * Move the UserUnigramDictionary functionality overJean Chalard2012-03-163-20/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | UserBigramDictionary now assumes both functionalities. It will be renamed to UserHistoryDictionary in a future change. There are several reasons to do this. First, there is a lot of duplicate code in User{Unigram,Bigram}Dictionaries that are factored by the few lines of code in this change. Also, other dictionaries like BinaryDictionary or ContactsDictionary all assume both responsibilities, as should be the case theoretically. It is also possible to do this because previous versions don't write any unigram data that we'd want to reuse. For even older versions that do write data, we can't really make any sense out of it. Bigram data however can be useful, and this allows us to reuse it easily. Change-Id: I755525f92744e1536eaef097527e8151b7859a30
* | Merge "Do not change the proximity orders"satok2012-03-151-16/+0
|\ \ | |/ |/|
| * Do not change the proximity orderssatok2012-03-161-16/+0
| | | | | | | | | | Bug: 4343280 Change-Id: I4e2dfb00d9c843a8a285d409ac5ab8fca5fb1694
* | Streamline some user history dictionary codeJean Chalard2012-03-163-42/+13
|/ | | | | | | | A lot of things don't really make sense in the old code. Let's streamline it for now so that we have a cleaner interface to work with. This is preliminary work for bug 4192129. Change-Id: If01a5974cfadc43afced610c57fcf7fde67c1346
* Merge "Remove touch dead zone"Tadashi G. Takaoka2012-03-151-2/+2
|\
| * Remove touch dead zoneTadashi G. Takaoka2012-03-151-2/+2
| | | | | | | | | | | | | | | | KeyDetector should use the distance from the hit box to detect the key. Bug: 6174250 Change-Id: Id1745d90222d1d1a10467f194b45307c12449944
* | Extract an annoying method callJean Chalard2012-03-151-2/+3
| | | | | | | | Change-Id: I78f22bb38222fea54a55e460fcf728bf941d15e9
* | Fix a bug where quotes and dashes are considered lettersJean Chalard2012-03-151-2/+4
|/ | | | | Bug: 6174065 Change-Id: I702760d44ead0eeb60d06360aa3bb03c2ec73325
* Small cleanupJean Chalard2012-03-151-11/+9
| | | | | | Exit-fast, update comment, make a method private Change-Id: Id103bf03aeef43a1a4d064ecabb819490dc5d39a
* Remove useless codeJean Chalard2012-03-151-1/+1
| | | | | | | I tracked all the calls to the constructor, and the passed list is never null. It's also final, so it's safe. Change-Id: I320f907acee0b237bb286a9a183c18106809174a
* De-duplicate a methodJean Chalard2012-03-153-27/+16
| | | | Change-Id: Ia1c80eeff00a55573bb311f07e1275da23bdcf98
* Remove useless codeJean Chalard2012-03-151-2/+0
| | | | Change-Id: I58de87c1ba4cd1130419191f63ff83b685604356
* OptimizationJean Chalard2012-03-152-5/+5
| | | | | | | All calls to this methods are made with an actual String. No sense beating ourselves with an interface stick. Change-Id: I6ef98286be6f81f73864b04f3a17e68f36a6e542
* Stop meaningless explicit null passingJean Chalard2012-03-151-9/+6
| | | | Change-Id: I6950897d262f610d502b7f8293b9dd8d2b53e6e8
* Remove a now-useless flag.Jean Chalard2012-03-152-17/+8
| | | | | | | This has been moved to the SuggestedWords object and is now represented by a single flag instead of a flag in each suggestion. Change-Id: I6e9a7cff5a7701de7e61b4de13baac25c9a87b1b
* Use the unique flag in SuggestionsViewJean Chalard2012-03-151-1/+1
| | | | | | | Also, the first word in a sugestions list can never be obsolete. Change-Id: Ib21439aac8db4e6ce5b15b7a2aabe4222bc354db
* Add info for obsolete suggestions in SuggestedWordsJean Chalard2012-03-154-7/+15
| | | | Change-Id: I9684c7b08244b34853ce8a99b6e9d885389f6687
* Remove useless stuffJean Chalard2012-03-151-35/+0
| | | | Change-Id: I43dae30774c40a9d6e7396f8fa73ed4b82a7c777
* Move a computation closer to where it's used.Jean Chalard2012-03-151-8/+8
| | | | Change-Id: I5aee4c36ceaacbb1dbfc47c011f1e4aec4b9dca6
* Merge "Some readability improvement"Jean Chalard2012-03-141-14/+7
|\
| * Some readability improvementJean Chalard2012-03-141-14/+7
| | | | | | | | | | | | In-place replacements of visibly identical things. Change-Id: I02b51bd7f63597e3428f0650b239e9a39ef5a7c7
* | Merge "Cut out a private method to make things more readable"Jean Chalard2012-03-141-24/+32
|\|
| * Cut out a private method to make things more readableJean Chalard2012-03-141-24/+32
| | | | | | | | Change-Id: I791700890338e023bd86b8794dbc90379b91dc7d
* | Merge "Minor optimization"Jean Chalard2012-03-141-3/+2
|\|
| * Minor optimizationJean Chalard2012-03-141-3/+2
| | | | | | | | | | | | We know the size in advance, this may save a few allocations Change-Id: I2fb9a725f34ba2da4f34ed335652f10447d5d166
* | Merge "Some code simplification"Jean Chalard2012-03-141-6/+6
|\|
| * Some code simplificationJean Chalard2012-03-141-6/+6
| | | | | | | | | | | | Just write the same thing in a more succint manner Change-Id: I08a2c5edd52a3502914541061fd5b6ee7a92ebc4
* | Merge "Really pass the y - touch correction to the native code"satok2012-03-141-1/+1
|\ \
| * | Really pass the y - touch correction to the native codesatok2012-03-141-1/+1
| |/ | | | | | | | | | | | | | | Bug: 4343280 Test: I11f8518d9ee Change-Id: I4b90bdffffed9736af223ac83c1a54019add70bb
* / Fix SuggestedWords.toStringTadashi G. Takaoka2012-03-141-1/+14
|/ | | | Change-Id: Ide3f605ce40e8c230f217bbf37ab016457ee91f1
* Cleanup & optimizationJean Chalard2012-03-141-28/+24
| | | | | | Renaming some variables, and obvious optimizations. Change-Id: Ib716748e9f3d602cf276dcd4e73f3bcfb819585e
* Remove a useless parameterJean Chalard2012-03-144-18/+11
| | | | Change-Id: I03005240238fb004c20b2df0d836796e2e8b307f
* Remove a useless methodJean Chalard2012-03-144-29/+13
| | | | Change-Id: I208dd2e725e37c2fb3cd51fe48194679e5912f6b
* Remove the BuilderJean Chalard2012-03-141-31/+2
| | | | Change-Id: Idef22e6a82d59e3ec95b95ad237debcb07daf000
* Match the constructor of SuggestedWords to the Builder call.Jean Chalard2012-03-141-11/+11
| | | | | | | We have to match one way or another, and the argument order to the Builder call is more logical. Change-Id: Iac7c3a351c2687cb294d6a4924fd9cb20ca95177
* Make the Builder privateJean Chalard2012-03-144-17/+30
| | | | Change-Id: I2184084f4b7729c4324f8291d548bd4c4c2872a1
* Re-sequence the last calls to build()Jean Chalard2012-03-142-13/+10
| | | | Change-Id: If77ee5aa9483d3ca03c52812f31665dee6468e99
* Move up the static methods of the BuilderJean Chalard2012-03-143-40/+40
| | | | Change-Id: Ic3e07b745b7b24cae0f772ea49e0de615b44caf9
* Kill the last place where the Builder was being usedJean Chalard2012-03-142-29/+6
| | | | | | I had missed that one Change-Id: I9a5040a7a61e294396aa424de96a69dbb15f037a
* Make the Builder fully immutable at lastJean Chalard2012-03-134-16/+16
| | | | Change-Id: Ie399ca7a9e76ccab44a92bc378d11f92392fed2c
* Straighten out the last bastion of the BuilderJean Chalard2012-03-132-3/+10
| | | | | | ...and go for the kill Change-Id: I5ad57211b250d2578ca22a5dae93344d52f9da80
* Add to SuggestedWords a missing parameter, and use it.Jean Chalard2012-03-132-8/+14
| | | | | | | Also stop using Builder between its creation and the call to the #build() method. Change-Id: Ie1fc3ec7b6f4c7c3789f672f4e26b4bf58c3e062
* Make still more members of the Builder final.Jean Chalard2012-03-134-22/+22
| | | | Change-Id: Ic455f97247da5e40d4939555ab639ecffef36e2d
* Some code reorganization.Jean Chalard2012-03-132-9/+6
| | | | | | Use the same local variable inside both branches of an if. Change-Id: I61f7d506d984f3723ec90604416d1875dd97cd8c
* Make some more Builder attributes final.Jean Chalard2012-03-134-27/+29
| | | | Change-Id: I3132b7fe4ee97c566736bfc21c3783cfc79fc7ff
* Make the suggested word list final in Builder.Jean Chalard2012-03-134-22/+12
| | | | Change-Id: I2ddfab00dc8c141fc989a051f16eb2b3571b7e86
* Remove unused stuff.Jean Chalard2012-03-132-26/+3
| | | | | | | | | Remove 2 methods that were left only for tests to compile in another project, but are not used any more now that the tests have been updated. Also remove an attribute that is never read. Change-Id: Ic9ba1f52a465199c82c923d77ed7450460e8a4b9
* Make an add into a set.Jean Chalard2012-03-134-12/+13
| | | | | | | | | This method now only sets words, so it should be named set. The functionality is identical since there are no more places where the list is reused. This will also allow to make the list final in an upcoming change. Change-Id: I25b0c7d7f13c3fa5d89806f01f48f1026769603f
* CleanupJean Chalard2012-03-132-27/+8
| | | | | | | Remove an unused method, make others static, fix a formatting issue Change-Id: I40cb0b5e01a6f8e2f7b953bd9aad3168dfee71d1