aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/accessibility/KeyCodeDescriptionMapper.java (unfollow)
Commit message (Expand)AuthorFilesLines
2013-12-02Quit recording LastUserHistoryWriteTime.•••Change-Id: I0f2b408b4976d8119c932654e23836803d42c568 Keisuke Kuroyanagi10-169/+34
2013-12-02Fix tests.•••This fixes a few bugs that became apparent with the reinstating of a test. Bug: 11954718 Change-Id: I1127bc3180f856566429f40d14c944e6f0007e09 Jean Chalard5-13/+25
2013-12-02Avoid NPE by checking•••Bug: 11956240 Change-Id: I3de1ebbf96fa2422124e4d8e50190adfa09b8a49 Tadashi G. Takaoka1-0/+3
2013-12-02Move methods of MultiBigramMap to cpp file.•••Change-Id: Icf10795037a7e966ac843cd168fe45955b6aef56 Keisuke Kuroyanagi2-59/+79
2013-12-02Fix: ver4 bigram GC.•••Bug: 11073222 Change-Id: I1637525ead60026cdf75ac90d40f97d02ce44ea1 Keisuke Kuroyanagi1-0/+19
2013-12-02Rename spacing and punctuations resource file names•••Change-Id: Ia3ae5dbaa2d5495f01cbc5da26ec8deb523442a5 Tadashi G. Takaoka11-33/+53
2013-12-02Separate auto correction and spellchecker configurations•••Change-Id: If65e19725da941fd36d566cdcf3bc9c343c04cbb Tadashi G. Takaoka4-36/+82
2013-12-02Revised screen metrics value of LatinImeLogger•••Bug: 11955386 Change-Id: Id8896acaa2c82d68fad59628d12e229c9d86c17e Tadashi G. Takaoka6-22/+92
2013-12-02Make forceCommit true for gesture shortcut score.•••Bug: 11951198 Change-Id: I18e450378d8a21b51eb02ab31b57467c8a9b1ac8 Keisuke Kuroyanagi1-1/+4
2013-12-02Separate dictionary pack configuration values•••Change-Id: I0112eb55798a36c8e3c6ed6f7363345724c1935d Tadashi G. Takaoka2-9/+30
2013-12-02Remove unused resources•••Change-Id: Ie0fdf019373557b3f5cc4d93159d10e4092edaa3 Tadashi G. Takaoka37-66/+0
2013-12-02Add device form and oriantation comments•••Change-Id: I455ef79862a0e5f7c6a4c4095d0f1ee3d632a7f6 Tadashi G. Takaoka13-0/+13
2013-11-29Fix bugs of GC.•••- All PtNodes were treated as terminal during GC. - Cannot delete Ver4 PtNode. Bug: 11073222 Change-Id: I26e012cc7154b6267e3499559b457dfee601748f Keisuke Kuroyanagi6-27/+20
2013-11-29Fix auto-detection of format 4.•••Bug: 11073222 Change-Id: I76e47d0399cf43fc3cc18cb1252f166be86b9a69 Jean Chalard9-63/+76
2013-11-29Clean up PointerTracker a bit•••Change-Id: I227501607ee1476c2f6faceca1c3c0833778a0ee Tadashi G. Takaoka1-28/+38
2013-11-29Extend unigram probability field to support historical info.•••Bug: 11073222 Change-Id: I9668db89ae5e90271f3d70c86cea458832275bff Keisuke Kuroyanagi8-48/+208
2013-11-29Use interfaces instead of MainKeyboardView class•••Change-Id: I760b107d804fc84153f08667f20061fedd308841 Tadashi G. Takaoka3-38/+63
2013-11-29Rename StaticInnerHandlerWrapper to LeakGuardHandlerWrapper•••Change-Id: I024f0ee9c7f7718afc8a4ca0c6c49f2e88b035ad Tadashi G. Takaoka6-51/+60
2013-11-28Add timestamp as an argument to updating methods.•••Bug: 11073222 Change-Id: I791787a6af3c920996920cad4e302ac50cf7b568 Keisuke Kuroyanagi27-96/+127
2013-11-28Add version check to open binary dictionary.•••Bug: 11073222 Change-Id: Iabae12b8f14a9da3cdc804dcc6af443cedeb3f99 Keisuke Kuroyanagi10-8/+97
2013-11-28Add parameter descriptions•••Change-Id: Ib4b883abbf7828cf042329523933190d05447564 Jean Chalard1-10/+17
2013-11-28Move MainKeyboardView.KeyTimerHandler to top level class•••Change-Id: Iec310b7fc6127a8a5491dbb9f8f073e455e7ba29 Tadashi G. Takaoka2-192/+219
2013-11-28Move MainKeyboardView.DrawingHandler to top level class•••Change-Id: I7a785725d5eb0b594485ceb25695a89c017cc60f Tadashi G. Takaoka2-45/+71
2013-11-28Change the timing of reading the previous word.•••Bug: 11328842 Change-Id: I08229e895fc34403932648b9b931583d965f0e01 Jean Chalard3-32/+121
2013-11-28Refactoring to extend probability field.•••Bug: 11073222 Change-Id: I147c3ea32834c3c5b9709df502a7dcb5b0180fef Keisuke Kuroyanagi13-200/+296
2013-11-28Fix updating list preference summary for unknown value•••Change-Id: I86d3162a90e0068e787a906c0d3d64102487620a Tadashi G. Takaoka1-1/+1
2013-11-28Fix getNthPreviousWord.•••This should take into accounts word connectors. Change-Id: Ic7fa5c837cd65a43ba43d7ae9d299b8d20019892 Jean Chalard3-19/+22
2013-11-27Disable mic key on more keys when voice IME is disabled•••Bug: 11883501 Change-Id: Ie3f496935f9600e2bde51cbebed2b4f8c90c25b2 Tadashi G. Takaoka12-59/+64
2013-11-27Fix messages in tests•••They are not failing because of this right now, but future tests would fail without this. Concretely, since the Handler for any given main thread is a singleton managed by the framework, the messages won't be removed automatically. In particular, messages posted with a delay have a large destructive potential, because they will go through before the startInputViewInternal method is called, because it's called with a message too (in turn, this is because of working around framework bugs). Bug: 11142685 Change-Id: If81a168efcfd7d93806ddc4ea432d438c45a3e1d Jean Chalard2-0/+10
2013-11-27Remove voice-on-main related code and resources•••Change-Id: I3a1b06fa028dbf130c7aa2c83e9ec1a180aa1f5c Tadashi G. Takaoka75-492/+31
2013-11-27Small optimizations for single code point strings•••Change-Id: I299c7622db291ea411e2b48dfdb622b407912ea6 Ken Wakasa3-3/+3
2013-11-27Start using Ver4 dictionary format.•••Bug: 11073222 Change-Id: Idd836ee15501e2f8c57c8eebc1fef7f103b01d18 Keisuke Kuroyanagi1-3/+5
2013-11-27Have ver4 support decaying dictionary•••Bug: 11073222 Change-Id: I7f0002c4743ab3bb1ebaac1bca6e367e6b220010 Keisuke Kuroyanagi7-36/+142
2013-11-27Remove compiler warnings from emoji related code•••Change-Id: I88ed0d25bee87c4dabcbc425589215b901345908 Tadashi G. Takaoka5-157/+177
2013-11-26Extend jni interface to support time stamp and shortcut.•••Bug: 11073222 Change-Id: I19e0501850917a13ddc756d3e78fc6f6cf3f33c4 Keisuke Kuroyanagi2-8/+42
2013-11-26Cleanup SettingsFragment•••Change-Id: Ic7dac203c17b34e1555ba2c91e3f8c057e85a4b5 Tadashi G. Takaoka1-71/+35
2013-11-26Fix a settings dependency in tests•••Bug: 11142685 Change-Id: I1db3488cee153358fa391817b3c03cad16eefdb7 Jean Chalard1-4/+28
2013-11-26Fix caps mode upon gesture-after-type-period.•••Bug: 11630231 Change-Id: Id5626a2f5b7294e4fda0bf9b82ff85537500a104 Jean Chalard1-0/+1
2013-11-26Implement addMultipleDictionaryEntries as a jni method.•••Bug: 11757169 Change-Id: Ie1569e0b3c0503588ebfe5d09c7ca06116f54485 Keisuke Kuroyanagi6-65/+175
2013-11-26Use InputMethodSubtypeCompatUtils to create subtypes•••This change adds fixed subtypeId to dummy NO_LANGUAGE and EMOJI subtypes. Bug: 11142698 Change-Id: Ie633b5dea77f17a9981bd999df6e1957bde740ee Tadashi G. Takaoka1-14/+26
2013-11-26Fix extraValue of DUMMY_NO_LANGUAGE_SUBTYPE•••This is a follow up of I9cf3d94825. Change-Id: I2646a045d21f2a7a3bb89c76d431be844e739af3 Tadashi G. Takaoka1-1/+1
2013-11-26Fix build.•••Change-Id: I28bd3d737def01e62100b86d8c837853da696aef Keisuke Kuroyanagi1-0/+0
2013-11-26Fix offdevice build.•••Bug: 11859139 Change-Id: I2fdad2d1166fba0141db3377c247e1c548c956d3 Keisuke Kuroyanagi5-63/+104
2013-11-25Import translations. DO NOT MERGE•••Change-Id: Id9ad9ed8c1d148569d7d0079a3b7ec5282280aa6 Auto-generated-cl: translation import Geoff Mendal2-4/+4
2013-11-25BinaryDictionaryTests uses ver4 dictionary, too.•••Bug: 11073222 Change-Id: Ib6a6cca7f5835f18405c5e81a1afa9b5bb931aa6 Keisuke Kuroyanagi2-359/+108
2013-11-25Fix a flaky test.•••Corrections depend on the proximity info, which depends on the layout, which in turn depends on the subtype and not only the language. Thus, we need to force the whole subtype for meaningful tests. Bug: 11142685 Change-Id: I9cf3d948259e0236061454a93ffc2e28c7e0768f Jean Chalard3-20/+49
2013-11-25Implement Ver4PatriciaTriePolicy::getProperty.•••Bug: 11073222 Change-Id: I49ecb406113e9ce09550056cdcbed51729531f23 Keisuke Kuroyanagi10-19/+52
2013-11-25Fix a failing test•••Bug: 11846748 Change-Id: Ieda55477201c11fb31b0f84e70ecd081211c78fc Jean Chalard1-0/+3
2013-11-25Implement GC for ver4 dict contents.•••Bug: 11073222 Change-Id: Ia4dff07c7f4576897e0d3fc4840aed0ccb535299 Keisuke Kuroyanagi11-41/+210
2013-11-22Use Google Feedback•••Change-Id: Icc39898fc9216a91e5a75958a959aa52d0ccea73 Kurt Partridge1-7/+1