aboutsummaryrefslogtreecommitdiffstats
path: root/java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix keypress vibration duration of HTC One XTadashi G. Takaoka2013-05-131-1/+1
| | | | | Bug: 8556975 Change-Id: I793dd90223f4da091a212ff54a02d19f03e49d6c
* Add device specific keypress vibration duration databaseTadashi G. Takaoka2013-05-132-15/+33
| | | | | Bug: 8556975 Change-Id: I11260a64dc13c102bac7a9742dc66f2b05fd32de
* Fix landscape override value expressionTadashi G. Takaoka2013-05-131-6/+8
| | | | | | | This is a follow up of I275c99db8a. Bug: 8556975 Change-Id: Ia6c2ab878760523da767036ce0bfc6c8350e1a92
* Merge "Disable long press timer while sliding input mode"Tadashi G. Takaoka2013-05-133-5/+11
|\
| * Disable long press timer while sliding input modeTadashi G. Takaoka2013-05-133-5/+11
| | | | | | | | | | Bug: 8915171 Change-Id: Id8685f90766c7de55b56476de83abf97150a186d
* | Disable delete key repeating while in slide input modeTadashi G. Takaoka2013-05-131-4/+7
|/ | | | | Bug: 8915171 Change-Id: I04f84c29f10abc0207072d2165c75dd20f053f92
* Support regular expression for condition patternTadashi G. Takaoka2013-05-131-6/+6
| | | | | Bug: 8556975 Change-Id: Iffc53d6a40dd77860434c5f7f4f59af5cd1ba92b
* Merge "Support multiple condition for getDeviceOverrideValue"Tadashi G. Takaoka2013-05-137-36/+118
|\
| * Support multiple condition for getDeviceOverrideValueTadashi G. Takaoka2013-05-137-36/+118
| | | | | | | | | | Bug: 8556975 Change-Id: I29d3a305b6ac3d8e3620c6d8592d85047d62bf48
* | Rename GesturePreviewTrail.java -> GestureTrail.javaKen Wakasa2013-05-1311-120/+118
|/ | | | | | Try reducing some confusions between GesturePreviewTrail.java and GestureTrailsPreview.java Change-Id: I5fe2ee740cf1b32210530188153f6f6937e34b68
* Avoid JsonWriter multi-write errorKurt Partridge2013-05-104-49/+55
| | | | | | | | | | | JsonWriter requires that its clients pass it only a single top-level object. The existing implementation tries to make code cleaner by having mJsonWriter never be null, and instead use a global static "NULL_JSON_WRITER" that just discards data. But because JsonWriter complains if more than one top-level object is passed, making this a global object does not work. This change instead copes with mJsonWriter being null. Change-Id: Ia37ccfc8646e91f11a64713dd92d2846eb86ac54
* Merge "Remove unused code"Kurt Partridge2013-05-101-11/+1
|\
| * Remove unused codeKurt Partridge2013-05-091-11/+1
| | | | | | | | Change-Id: I192c67e9e8de44f073abc70ec85ebcdb36356c2e
* | Merge "Remove ref to LatinImeLogger preference."Kurt Partridge2013-05-101-5/+0
|\ \
| * | Remove ref to LatinImeLogger preference.Kurt Partridge2013-05-091-5/+0
| |/ | | | | | | | | | | | | This is a bug; the ResearchLogger uses ResearchSettings.readResearchLoggerEnabledFlag() instead, which the user cannot change. (We assume they will just switch to a different keyboard.) Change-Id: Ib5731c9eeb2bc29d9cf8608033326674f5eb6f7b
* | Merge "Avoid NPE by fixing ResearchLogger initialization"Kurt Partridge2013-05-101-93/+62
|\ \
| * | Avoid NPE by fixing ResearchLogger initializationKurt Partridge2013-05-091-93/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, mMainResearchLog and mMainLogBuffer were set up when the user moved to a new TextView, and set to null when the user left the TextView. This change causes mMainResearchLog, mMainLogBuffer, mFeedbackLog, and mFeedbackLogBuffer to be non-null forever after init() is called. start() no longer sets up these fields; instead they are cleared and reset every time stop() is called. Checks for null values are now removed. The earlier code just didn't initialize these variables if the user disabled logging, but since the new version invariantly keeps these variables valid, we add a check for whether the user has enabled logging in publishLogUnits(). Change-Id: Ifde3517f1cf924cfa33cda95fec24529b52b3c08
* | | Merge "Refactor StringUtils.findPrefixedString to findValueOfKey"Tadashi G. Takaoka2013-05-107-37/+44
|\ \ \
| * | | Refactor StringUtils.findPrefixedString to findValueOfKeyTadashi G. Takaoka2013-05-107-37/+44
| | | | | | | | | | | | | | | | | | | | Bug: 8556975 Change-Id: I275c99db8a0d10594a5a8c0c27ebc1a87495c307
* | | | Fix screen flash when launching settings activityTadashi G. Takaoka2013-05-102-10/+17
| | | | | | | | | | | | | | | | | | | | Bug: 8336068 Change-Id: I90a0f259129a3f3319b158b060154cc43960c234
* | | | Introduce another activity to launch setup wizardTadashi G. Takaoka2013-05-103-427/+477
|/ / / | | | | | | | | | | | | Bug: 8336068 Change-Id: I35b94dd87c5b01d3e927da8f918a5398dd565d33
* | | Merge "Keep SetupActivity alive to check re-launching from launcher"Tadashi G. Takaoka2013-05-101-18/+32
|\ \ \
| * | | Keep SetupActivity alive to check re-launching from launcherTadashi G. Takaoka2013-05-101-18/+32
| | | | | | | | | | | | | | | | | | | | Bug: 8336068 Change-Id: I183b8e3fd1b3898d5f8dbbb13a0c93c64341fc38
* | | | Merge "Reuse old preferences if possible."Jean Chalard2013-05-102-7/+28
|\ \ \ \
| * | | | Reuse old preferences if possible.Jean Chalard2013-05-102-7/+28
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an optimization. It also happens to work around what seems to be a framework bug in JB MR1 / MR1.1. Bug: 8771179 Change-Id: I62cc7acdc8656d75f8a50c068c4e9d8c6ceb74a0
* | | | Merge "Tweak a label in the personal dictionary settings"Satoshi Kataoka2013-05-101-6/+0
|\ \ \ \
| * | | | Tweak a label in the personal dictionary settingsSatoshi Kataoka2013-05-101-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | Bug: 8897600 Change-Id: Ibf245e32468e5740ad9d65b8ff1f1e87b430d287
* | | | | Fix detecting out of keyboard areaTadashi G. Takaoka2013-05-101-1/+1
| |/ / / |/| | | | | | | | | | | | | | | Bug: 8885165 Change-Id: I85c78b23955169972fb0f5395463b6fe47f12c9c
* | | | Merge "Import translations. DO NOT MERGE"Baligh Uddin2013-05-097-95/+105
|\ \ \ \
| * | | | Import translations. DO NOT MERGEBaligh Uddin2013-05-087-95/+105
| | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I77a0aed9771ecc28a56226bb5f9776c1e1cf8b4d Auto-generated-cl: translation import
* | | | | Tweak gesture debugSatoshi Kataoka2013-05-091-3/+3
| |/ / / |/| | | | | | | | | | | Change-Id: Iea11a095adb15fbf4be38f34542119f8bc7bcbff
* | | | Don't resize debug array if productionSatoshi Kataoka2013-05-091-1/+3
| | | | | | | | | | | | | | | | | | | | Bug: 8556775 Change-Id: I46a10f8dc938cab493933f0f2b4e1f7779b24f6f
* | | | Add debug facilities for gestureSatoshi Kataoka2013-05-092-2/+29
| |_|/ |/| | | | | | | | | | | Bug: 8556775 Change-Id: I9069b2b44356bbae9fa4aaf0b99c3d723a8c9c58
* | | Fix usages of getEnabledInputMethodSubtypeListSatoshi Kataoka2013-05-092-7/+12
| | | | | | | | | | | | | | | Bug: 8450279 Change-Id: Ib8433442ae6ca6c28da2652bff687cdeaf7c196e
* | | Use revised Google Keyboard iconTadashi G. Takaoka2013-05-0913-4/+2
| | | | | | | | | | | | | | | Bug: 8159728 Change-Id: I458df60cb39f81cde3c08190af0ab08d304f9d98
* | | Launch setup wizard as single top activityTadashi G. Takaoka2013-05-091-1/+3
|/ / | | | | | | | | Bug: 8336068 Change-Id: Ifac84361e4e37b4aa106cbdbfffb83883ec2f8e6
* | Merge "Optimizations and safeguards."Jean Chalard2013-05-082-4/+13
|\ \
| * | Optimizations and safeguards.Jean Chalard2013-05-082-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Don't call finishComposingText when useless. - Add safeguards against calling setComposingRegion when the data returned by the editor is inconsistent. - Cancel pending recorrection messages when new messages arrive. Bug: 8842941 Bug: 8845001 Change-Id: I939701033cf5c2bbd85871ecf83e329021ddeb91
* | | Merge "Add account e-mail addresses to the user dictionary"Satoshi Kataoka2013-05-082-0/+66
|\ \ \
| * | | Add account e-mail addresses to the user dictionarySatoshi Kataoka2013-05-082-0/+66
| |/ / | | | | | | | | | | | | Bug: 8683365 Change-Id: Id72540c515e61c3dd854892599645dd6d22b496d
* | | Merge "Move gesture preview trail parameters to resource"Tadashi G. Takaoka2013-05-085-33/+85
|\ \ \ | |/ / |/| |
| * | Move gesture preview trail parameters to resourceTadashi G. Takaoka2013-05-085-33/+85
| | | | | | | | | | | | | | | Bug: 7167303 Change-Id: I22b56588dc5a1c9d5eaec3a39b5f32c9e5a8a5b4
* | | Merge "Add owner's info to the dictionary"Satoshi Kataoka2013-05-081-3/+14
|\ \ \
| * | | Add owner's info to the dictionarySatoshi Kataoka2013-05-081-3/+14
| | | | | | | | | | | | | | | | | | | | Bug: 8683365 Change-Id: I1c30eac128b4172526423ebeeb45bc6cee7fb67b
* | | | Merge "Fix an issue on the transition between the setup and the settings"Satoshi Kataoka2013-05-081-8/+9
|\ \ \ \
| * | | | Fix an issue on the transition between the setup and the settingsTadashi G. Takaoka2013-05-081-8/+9
| |/ / / | | | | | | | | | | | | | | | | | | | | Bug: 8853220 Change-Id: I99b6c46d900e9391f77986d1ae6e3edeaeff01e5
* / / / Fix labels in the personal dictionary settingsSatoshi Kataoka2013-05-082-4/+5
|/ / / | | | | | | | | | | | | | | | Bug: 8855738 Bug: 8853764 Change-Id: I03383bb5d6d72645f511cc6175dec747eb13a840
* / / Consolidate dummy proximity info to the spell checker infoSatoshi Kataoka2013-05-089-544/+142
|/ / | | | | | | | | | | Bug: 8783170 Change-Id: I067486e5ec1ae7cdef8e2121392464ba71ee8add
* / Fix looping logic bugs.Kurt Partridge2013-05-072-24/+30
|/ | | | | | shiftOut() is getting called once too often through these for loops. Change-Id: I9a68b49e6cc1469bcddd673ab1567e238cf192b8
* Merge "Avoid drawing too long gesture preview trails"Tadashi G. Takaoka2013-05-071-6/+17
|\