Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Merge "Move some advanced settings to debug settings" | 2014-04-28 | 4 | -51/+51 | ||
|\ \ | |/ |/| | ||||||
| * | Move some advanced settings to debug settings | 2014-04-25 | 4 | -51/+51 | ||
| | | | | | | | | | | | | | | | | This CL moves "Show slide indicator" and "Key long press delay" advanced options to the debug settings. Bug: 11866784 Change-Id: Iec16e09ba6e7c9f82ce0fa73a0d75766b843b44b | |||||
* | | Merge "Remove unnecessary reference to LatinIME" | 2014-04-25 | 4 | -19/+11 | ||
|\ \ | ||||||
| * | | Remove unnecessary reference to LatinIME | 2014-04-25 | 4 | -19/+11 | ||
| |/ | | | | | | | Change-Id: Idbb45c504499d39bbf272fae84ea71a83bf4dd69 | |||||
* | | Add null check in createDistracterFilter(). | 2014-04-25 | 1 | -1/+5 | ||
| | | | | | | | | Change-Id: Iff2b73081d48f32b1d3a5d5b32c9734979362c23 | |||||
* | | Merge "Prepare to implement distracter filter" | 2014-04-25 | 4 | -5/+67 | ||
|\ \ | |/ |/| | ||||||
| * | Prepare to implement distracter filter | 2014-04-25 | 4 | -5/+67 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was implemented according to the Plan B in the design doc: http://go/ime-misspelling-filter This CL is to create a DistracterFilter instance and pass it to PersonalizationDictionarySessionRegistrar. This patch should be checked in together with Id633b4fd45693 Bug: 13142176 Change-Id: Ia4957e64218c9619fcf9bb91795a187617c72a2e | |||||
* | | Merge "Fix: contains() is wrongly used in hasDict()." | 2014-04-25 | 1 | -1/+1 | ||
|\ \ | ||||||
| * | | Fix: contains() is wrongly used in hasDict(). | 2014-04-25 | 1 | -1/+1 | ||
| | | | | | | | | | | | | Change-Id: I4699b1b75fed9dd479f5135f0a7a2dd098e6f798 | |||||
* | | | Merge "Fix: Wrong null check for user history dict." | 2014-04-25 | 1 | -2/+2 | ||
|\| | | ||||||
| * | | Fix: Wrong null check for user history dict. | 2014-04-24 | 1 | -2/+2 | ||
| | | | | | | | | | | | | Change-Id: Idf0bcc44247e35cd95f9482d2a8017329fc977bb | |||||
* | | | Merge "Handle personalization dictionary as an ExpandableBinaryDictionary." | 2014-04-25 | 3 | -26/+12 | ||
|\| | | ||||||
| * | | Handle personalization dictionary as an ExpandableBinaryDictionary. | 2014-04-24 | 3 | -26/+12 | ||
| | | | | | | | | | | | | | | | Bug: 13755213 Change-Id: I26e070e89e09b37e9dcc200d597c74c591467a66 | |||||
* | | | Merge "Handle contacts dictionary as an ExpandableBinaryDictionary." | 2014-04-25 | 1 | -7/+4 | ||
|\| | | ||||||
| * | | Handle contacts dictionary as an ExpandableBinaryDictionary. | 2014-04-24 | 1 | -7/+4 | ||
| | | | | | | | | | | | | | | | Bug: 13755213 Change-Id: I0eb5055f9cdf5e1df337cdace9bf0919d4d365d3 | |||||
* | | | Merge "Quit creating empty dictionary file in ExpandableBinaryDictionary." | 2014-04-25 | 2 | -10/+9 | ||
|\ \ \ | |/ / |/| | | ||||||
| * | | Quit creating empty dictionary file in ExpandableBinaryDictionary. | 2014-04-22 | 2 | -10/+9 | ||
| | | | | | | | | | | | | | | | Bug: 14166482 Change-Id: I7b7a25141851d7bb14744567639d8e5d8f04a036 | |||||
* | | | Merge "Handle user history dictionary as an ExpandableBinaryDictionary." | 2014-04-25 | 4 | -53/+47 | ||
|\ \ \ | ||||||
| * | | | Handle user history dictionary as an ExpandableBinaryDictionary. | 2014-04-24 | 4 | -53/+47 | ||
| | | | | | | | | | | | | | | | | | | | | Bug: 13755213 Change-Id: I1ea8a6df007af7153852f2d32bf5e8ec669c432b | |||||
* | | | | Merge "Simplify DictionaryFacilitatorForSuggest to be flexible." | 2014-04-25 | 1 | -95/+65 | ||
|\| | | | ||||||
| * | | | Simplify DictionaryFacilitatorForSuggest to be flexible. | 2014-04-24 | 1 | -95/+65 | ||
| | | | | | | | | | | | | | | | | | | | | Bug: 13755213 Change-Id: I151269a7038b72a33b436da4c7596e09949e6d00 | |||||
* | | | | Merge "Announce keyboard language when TalkBack is on" | 2014-04-24 | 1 | -20/+40 | ||
|\ \ \ \ | ||||||
| * | | | | Announce keyboard language when TalkBack is on | 2014-04-23 | 1 | -20/+40 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 13013501 Change-Id: I0595abafbc177f776676cb3560f3990da9328db2 | |||||
* | | | | | Merge "Remove clearAndFlushDictionary() and use clear()." | 2014-04-24 | 4 | -13/+5 | ||
|\ \ \ \ \ | | |/ / / | |/| | / | |_|_|/ |/| | | | ||||||
| * | | | Remove clearAndFlushDictionary() and use clear(). | 2014-04-24 | 4 | -13/+5 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clearAndFlushDictionary() was needed when dictionaries are constructed in java side. All expandable dictionaries now use native code; thus, this method is same to clear() and no longer needed. Bug: 13755213 Change-Id: Ifd836e64f8ff807930f7cd2319b103b65e8fce70 | |||||
* | | | | Merge "Fix handling shift + enter" | 2014-04-24 | 1 | -1/+3 | ||
|\ \ \ \ | ||||||
| * | | | | Fix handling shift + enter | 2014-04-23 | 1 | -1/+3 | ||
| |/ / / | | | | | | | | | | | | | | | | | Bug: 14278758 Change-Id: Id77c99b83cc69855972b27c9cebd482c8cbd3539 | |||||
* / / / | Move simulateKeyPress method to AccessibleKeyboardViewProxy | 2014-04-23 | 2 | -24/+35 | ||
|/ / / | | | | | | | | | | Change-Id: Ic14ff70c7c8475983cf02dc1ba4d5a5f7769aa16 | |||||
* | | | Merge "Fix: Reporting wrong main dictionary availability." | 2014-04-22 | 1 | -4/+4 | ||
|\ \ \ | |/ / |/| | | ||||||
| * | | Fix: Reporting wrong main dictionary availability. | 2014-04-22 | 1 | -4/+4 | ||
| | | | | | | | | | | | | | | | Bug: 13965806 Change-Id: Ida2234ab8cb7785ec5efd433a58949bf21c44351 | |||||
* | | | Merge "Use ArrayList constructor directly" | 2014-04-22 | 1 | -2/+1 | ||
|\ \ \ | ||||||
| * | | | Use ArrayList constructor directly | 2014-04-22 | 1 | -2/+1 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | This is a follow up of I85a0b18d2d. Change-Id: Ia7a642bb6e0015242d6e046019b3973226a0add2 | |||||
* | | | | Fix typo of local variable name | 2014-04-22 | 1 | -5/+6 | ||
|/ / / | | | | | | | | | | Change-Id: I09c0aeee979e883af199f5c533d526a089064987 | |||||
* | | | Merge "Use sorted keys index as virtual view id" | 2014-04-22 | 3 | -66/+73 | ||
|\ \ \ | |_|/ |/| | | ||||||
| * | | Use sorted keys index as virtual view id | 2014-04-22 | 3 | -66/+73 | ||
| | | | | | | | | | | | | Change-Id: Id3f81de1edaacc06362b65aa7b68e9317e6596bd | |||||
* | | | Support creating BinaryDictionary without creating dict file. | 2014-04-22 | 1 | -2/+34 | ||
| |/ |/| | | | | | | | Bug: 14166482 Change-Id: Ic8c78ec2c8f39358a1f085a041b608972a380eef | |||||
* | | Revert "Support creating BinaryDictionary without creating dict file." | 2014-04-22 | 1 | -34/+2 | ||
| | | | | | | | | | | | | This reverts commit 89939b870876b36791a47470ce852e4fcdfe86f2. Change-Id: I8ca1b55609ad305a93178063bd88bd1cede872af | |||||
* | | Support creating BinaryDictionary without creating dict file. | 2014-04-22 | 1 | -2/+34 | ||
| | | | | | | | | | | Bug: 14166482 Change-Id: Ib065279f96e227ab0fee7c8141560c4ada744d3b | |||||
* | | Merge "Add jni interface to use on memory dictionary." | 2014-04-22 | 1 | -0/+2 | ||
|\ \ | ||||||
| * | | Add jni interface to use on memory dictionary. | 2014-04-21 | 1 | -0/+2 | ||
| | | | | | | | | | | | | | | | | | | Bug; 14166482 Change-Id: I33ab08dad1e39aa7617d391f7eb2561d6f2504bb | |||||
* | | | Stop using Configuration.setLocale | 2014-04-22 | 1 | -7/+7 | ||
| |/ |/| | | | | | | | | | | | | | The call for method Configuration.setLocale that is introduce by If60877b29b should be remove to be compatible with API 14 and later. Bug: 14239862 Change-Id: I3815c2b56bd9c655b8bde6f93143adf3ff08c35d | |||||
* | | Merge "Remove unnecessarily getKeyFromOutputText method from Keyboard" | 2014-04-22 | 2 | -17/+9 | ||
|\ \ | ||||||
| * | | Remove unnecessarily getKeyFromOutputText method from Keyboard | 2014-04-21 | 2 | -17/+9 | ||
| | | | | | | | | | | | | Change-Id: I61986ed65ce6696a8b0d885bdeb9668e6087bc47 | |||||
* | | | Merge "Sort keys from top-left to bottom-right order" | 2014-04-22 | 9 | -33/+57 | ||
|\| | | ||||||
| * | | Sort keys from top-left to bottom-right order | 2014-04-21 | 9 | -33/+57 | ||
| | | | | | | | | | | | | Change-Id: I228748824de62e9e46fa43db200d23f41eb6d2ce | |||||
* | | | Merge "Add BinaryDictionary.flushWithGCIfHasUpdated()." | 2014-04-22 | 2 | -1/+11 | ||
|\ \ \ | |/ / |/| / | |/ | ||||||
| * | Add BinaryDictionary.flushWithGCIfHasUpdated(). | 2014-04-21 | 2 | -1/+11 | ||
| | | | | | | | | | | | | Bug: 14166482 Bug: 14161647 Change-Id: I98b0a8b86897b1486491a3aea91729bc9e4cc03c | |||||
* | | Use unmodifiable list to return keys from Keyboard | 2014-04-21 | 5 | -29/+31 | ||
| | | | | | | | | Change-Id: I85a0b18d2d78632e9a9f074eda1de9225001f876 | |||||
* | | Use unmodifiable list to return the nearest keys | 2014-04-21 | 3 | -17/+26 | ||
| | | | | | | | | Change-Id: Ic9084b08fa9a1f25b7f4b98c627350583c401c12 | |||||
* | | Stop using modifiable Key array | 2014-04-21 | 1 | -5/+7 | ||
| | | | | | | | | Change-Id: I0f3e96672da4261ae5628d2d5ea39d60e6287ac0 |