aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/accessibility/KeyCodeDescriptionMapper.java (unfollow)
Commit message (Expand)AuthorFilesLines
2017-10-16Import translations. DO NOT MERGE•••Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bug: 64712476 Change-Id: Ia202e0a2ec22ae94fe39c97003524d116b39ce37 Bill Yi5-8/+8
2017-09-11Remove LOCAL_CLANG•••clang is the default compiler since Android nougat Change-Id: I52d7f1ded227b21cd88d2d292f0af4adecb800f4 Signed-off-by: Lennart Wieboldt <lennart.1997@gmx.de> Lennart Wieboldt5-9/+0
2017-08-06Import translations. DO NOT MERGE•••Change-Id: I0c096a8d2547723cb86d2b4eeeb1ae23af27abff Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi27-64/+64
2017-08-06Import translations. DO NOT MERGE•••Change-Id: Iedf4ea3ed578b904fa9cc269909dab7ff7d26af1 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi8-9/+9
2017-08-06Import translations. DO NOT MERGE•••Change-Id: Idfea205cf778dcf8ca4a0e7794fb4b9632441c1f Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi13-22/+22
2017-08-06Import translations. DO NOT MERGE•••Change-Id: I27db96d1703710e6a8417a3020cc4039979c6086 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi1-1/+1
2017-08-06Import translations. DO NOT MERGE•••Change-Id: I1eca86b7e2669a50f3f63eace03aa6eae1ea7e75 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi1-2/+2
2017-08-06Import translations. DO NOT MERGE•••Change-Id: I308e6ef94dbffe4df11934adff18eaee5101e42b Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi1-1/+1
2017-08-05Import translations. DO NOT MERGE•••Change-Id: Ic0b774fdb8cbc8507e6534c13b3d64db79031dea Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi5-8/+8
2017-08-05Import translations. DO NOT MERGE•••Change-Id: I6c77cd10984dd07fe76ae62b4839b801b1aa7650 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi1-1/+1
2017-08-05Import translations. DO NOT MERGE•••Change-Id: I33047c58713582da7ed206b22faa4ff11024cf9d Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi2-2/+2
2017-08-05Import translations. DO NOT MERGE•••Change-Id: Ib837b11a00db2397e55a6258b4ce69bbd7d93442 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi1-1/+1
2017-07-26Import translations. DO NOT MERGE•••Change-Id: I83d6d6794644e7bf00bcd3e9d24f801dd0f26ec7 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi4-8/+8
2017-07-26Import translations. DO NOT MERGE•••Change-Id: Ie2ee3d601e39084145911761b1204e5f4cafd219 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi3-5/+5
2017-07-26Clean up Makefiles, remove HOST_JDK_IS_64BIT_VERSION•••This builds on Darwin fine, so remove the non-standard darwin checks. Remove HOST_JDK_IS_64BIT_VERSION, it's always true now, and this is the only user. Test: mmm packages/inputmethods/LatinIME/tools/dicttool:liblatinime-aosp-dicttool-host Change-Id: I750c6baa29cf1d27a885ff064f0daf9d986db0b9 Dan Willemsen2-19/+0
2017-07-26Import translations. DO NOT MERGE•••Change-Id: Ib4e62fdb016fe7a1bf1af921ca278c6163e7da01 Auto-generated-cl: translation import Exempt-From-Owner-Approval: translation import Bill Yi1-1/+1
2017-06-14Fix dependencies of packages that target earlier releases•••A previous change added legacy-android-test as a static dependency to all packages that build against the current, test_current or system_current and failed to compile when the junit and android.test classes were removed from the API. Unfortunately, those changes did not take into account that some of those packages target earlier API versions and so will always have the classes available at runtime. This change replaces those static dependencies with dynamic dependencies for any package that targets an earlier API version. The file changes were made automatically by a tool that constructed and then analyzed a full dependency graph of all the Android Java modules. The individual changes were checked manually to ensure that the changes matched the intent. The affected modules were built against an API with the junit and android.test classes removed. Any issues found during this process resulted in either the tool being updated to address the issue or a separate change being made to fix an existing problem with the build. A sample of the affected packages were run to ensure that they worked as expected at runtime; no issues were found during testing. The following change descriptions were generated automatically and so may be a little repetitive. They are provided to give the reviewer enough information to check the comments match what has actually been changed and check the reasoning behind the changes. * tests/Android.mk Removed legacy-android-test from LOCAL_STATIC_JAVA_LIBRARIES because LatinIMETests's manifest file (AndroidManifest.xml) targets API level 21 and dynamically includes the android.test.runner library at runtime so there is no point in statically including the classes. Added 'android.test.mock.sdk' and 'legacy-android-test' to LOCAL_JAVA_LIBRARIES because module LatinIMETests builds against 'LOCAL_SDK_VERSION := current' and uses classes from packages android.test and android.test.mock (possibly indirectly) so will no longer compile once they are removed from the API. Dependency 'android.test.mock.sdk' is used instead of 'android.test.mock' because module LatinIMETests builds against the API not internal jars and so should use libraries that build against the API not internal jars. A future change will replace the dependency on 'legacy-android-test', which builds against the internal jars with a dependency on 'android.legacy.test' which will build against the API. Bug: 30188076 Test: make checkbuild and ran a sample of tests Change-Id: I63f1a8ad16a76aba0da89b69a64cdae4400af5a0 Merged-In: Icab8a4c4801536f112e29dfd2dc66be8b90b811d Paul Duffin1-2/+3
2017-06-13Fix dependencies of packages that target earlier releases•••A previous change added legacy-android-test as a static dependency to all packages that build against the current, test_current or system_current and failed to compile when the junit and android.test classes were removed from the API. Unfortunately, those changes did not take into account that some of those packages target earlier API versions and so will always have the classes available at runtime. This change replaces those static dependencies with dynamic dependencies for any package that targets an earlier API version. The file changes were made automatically by a tool that constructed and then analyzed a full dependency graph of all the Android Java modules. The individual changes were checked manually to ensure that the changes matched the intent. The affected modules were built against an API with the junit and android.test classes removed. Any issues found during this process resulted in either the tool being updated to address the issue or a separate change being made to fix an existing problem with the build. A sample of the affected packages were run to ensure that they worked as expected at runtime; no issues were found during testing. The following change descriptions were generated automatically and so may be a little repetitive. They are provided to give the reviewer enough information to check the comments match what has actually been changed and check the reasoning behind the changes. * tests/Android.mk Removed legacy-android-test from LOCAL_STATIC_JAVA_LIBRARIES because LatinIMETests's manifest file (AndroidManifest.xml) targets API level 21 and dynamically includes the android.test.runner library at runtime so there is no point in statically including the classes. Added 'android.test.mock.sdk' and 'legacy-android-test' to LOCAL_JAVA_LIBRARIES because module LatinIMETests builds against 'LOCAL_SDK_VERSION := current' and uses classes from packages android.test and android.test.mock (possibly indirectly) so will no longer compile once they are removed from the API. Dependency 'android.test.mock.sdk' is used instead of 'android.test.mock' because module LatinIMETests builds against the API not internal jars and so should use libraries that build against the API not internal jars. A future change will replace the dependency on 'legacy-android-test', which builds against the internal jars with a dependency on 'android.legacy.test' which will build against the API. Bug: 30188076 Test: make checkbuild and ran a sample of tests Change-Id: Icab8a4c4801536f112e29dfd2dc66be8b90b811d Paul Duffin1-2/+3
2017-05-31Import translations. DO NOT MERGE•••Change-Id: I8f7f8dd206a91c73781fbcf24900a631f90f3474 Auto-generated-cl: translation import Bill Yi1-1/+1
2017-05-31Import translations. DO NOT MERGE•••Change-Id: I7bc939b0a283fe72d730e9ad0084e1ffa4bd50db Auto-generated-cl: translation import Bill Yi1-1/+1
2017-05-22Import translations. DO NOT MERGE•••Change-Id: Ib413b1988ad8828fdd42b34e9a2ad26c6237ce5a Auto-generated-cl: translation import Bill Yi2-4/+4
2017-05-17Revert "Revert "Use AAPT2""•••This reverts commit af1177453d95d727651cf48a380d7979dc94ae45. Reason for revert: Bug in aapt2 was fixed b/38152130 Change-Id: I2701d67f581165d371a745749367c0c825168e22 Adam Lesinski1-1/+6
2017-05-16Import translations. DO NOT MERGE•••Change-Id: I59054386d3666143821916c57c3ce9b6cbb3aaa1 Auto-generated-cl: translation import Bill Yi1-1/+1
2017-05-16Import translations. DO NOT MERGE•••Change-Id: I433c4b65242ec711f0198a52e3041e8e2449f8cc Auto-generated-cl: translation import Bill Yi3-11/+11
2017-05-15Revert "Use AAPT2"•••This reverts commit 0f6f5c017629befcc4b8d9f1111e18d3505bfac1. Change-Id: Ibba7d35846cdbf6086877fd2859c2e2c91dcf2ee Alan Viverette1-6/+1
2017-05-11Import translations. DO NOT MERGE•••Change-Id: I5ff5d90c163bfb05bd4d8db583ed1deee5d844c4 Auto-generated-cl: translation import Bill Yi5-6/+6
2017-05-11Import translations. DO NOT MERGE•••Change-Id: Ifc3bd3ad01d6dc66711756664a51f1340cc8221b Auto-generated-cl: translation import Bill Yi1-1/+1
2017-05-10Import translations. DO NOT MERGE•••Change-Id: Icaa3e3e60a2e632a02a317b0dad32c9c6e3c1072 Auto-generated-cl: translation import Bill Yi13-25/+25
2017-05-10Import translations. DO NOT MERGE•••Change-Id: Id738f4b110ee27a2c18cf8ade15afe67e5b150f8 Auto-generated-cl: translation import Bill Yi3-4/+4
2017-05-10Import translations. DO NOT MERGE•••Change-Id: I79556fca866d6054a2327222d73809e93ba80185 Auto-generated-cl: translation import Bill Yi2-2/+2
2017-05-10Prepare for removal of junit and android.test classes from Android API (step 1)•••In preparation for removing junit and android.test classes from the Android API this change adds explicit dependencies on junit and/or legacy-android-test to ensure that modules will compile properly once it is removed. Care was taken to ensure that any targets that depended, directly or indirectly, on android-support-test did not also depend on junit or hamcrest as they conflict with the versions embedded within android-support-test. Bug: 30188076 Test: make checkbuild Change-Id: Icf844999082db141cffcb099aa4004afc7a7c749 Merged-In: I743f9e20e1e60836ceba9b9051fa17835deba3a2 Paul Duffin1-1/+4
2017-05-08Import translations. DO NOT MERGE•••Change-Id: Ief94504ab531dd149c64aa56ac8ffe1433107e55 Auto-generated-cl: translation import Bill Yi7-17/+17
2017-05-08Import translations. DO NOT MERGE•••Change-Id: I221b061d69263c60affc309dc69ac3e06041e4a8 Auto-generated-cl: translation import Bill Yi1-1/+1
2017-05-08Prepare for removal of junit and android.test classes from Android API (step 1)•••In preparation for removing junit and android.test classes from the Android API this change adds explicit dependencies on junit and/or legacy-android-test to ensure that modules will compile properly once it is removed. Care was taken to ensure that any targets that depended, directly or indirectly, on android-support-test did not also depend on junit or hamcrest as they conflict with the versions embedded within android-support-test. Bug: 30188076 Test: make checkbuild Change-Id: I160c136ecd1089a2b13d5cdba9eee1287aad93f9 Merged-In: I743f9e20e1e60836ceba9b9051fa17835deba3a2 Paul Duffin1-1/+4
2017-05-05Prepare for removal of junit and android.test classes from Android API (step 1)•••In preparation for removing junit and android.test classes from the Android API this change adds explicit dependencies on junit and/or legacy-android-test to ensure that modules will compile properly once it is removed. Care was taken to ensure that any targets that depended, directly or indirectly, on android-support-test did not also depend on junit or hamcrest as they conflict with the versions embedded within android-support-test. Bug: 30188076 Test: make checkbuild Change-Id: I743f9e20e1e60836ceba9b9051fa17835deba3a2 Paul Duffin1-1/+4
2017-05-05Import translations. DO NOT MERGE•••Change-Id: Ie0f5e63446535e0c8ab8652faafc100deeb4b43a Auto-generated-cl: translation import Bill Yi1-1/+1
2017-05-04Import translations. DO NOT MERGE•••Change-Id: I70ca2d22462fff5fade98a1cb96db5ec6d3a0f7b Auto-generated-cl: translation import Bill Yi1-2/+2
2017-05-01Import translations. DO NOT MERGE•••Change-Id: I18120d8f7deddfbf5f6558fc3c0afeddae95017e Auto-generated-cl: translation import The Android Open Source Project3-3/+3
2017-05-01Import translations. DO NOT MERGE•••Change-Id: I3434bfd7ac54492d1f422e43538381b9f1e65fdf Auto-generated-cl: translation import The Android Open Source Project2-2/+2
2017-04-28Import translations. DO NOT MERGE•••Change-Id: I94f1f0ce565431c31168934cb683a69c1bd56125 Auto-generated-cl: translation import Bill Yi11-18/+18
2017-04-28Import translations. DO NOT MERGE•••Change-Id: I0f815e53170075785b3630f1c524be0e99155483 Auto-generated-cl: translation import Bill Yi1-1/+1
2017-04-28Import translations. DO NOT MERGE•••Change-Id: I4df7d6c7347ed92a38fd175c46076994b017223b Auto-generated-cl: translation import Bill Yi1-2/+2
2017-04-28Import translations. DO NOT MERGE•••Change-Id: I0a55a7e4beabfbc1b9810e315112418b3860ab46 Auto-generated-cl: translation import Bill Yi1-2/+2
2017-04-28Import translations. DO NOT MERGE•••Change-Id: Ide2d46f805a5bb36b32d6ebaec8d987973b816ab Auto-generated-cl: translation import Bill Yi14-33/+33
2017-04-28Import translations. DO NOT MERGE•••Change-Id: I98560e277103ff606353cff46889ecdb4d7a3b86 Auto-generated-cl: translation import Bill Yi2-2/+2
2017-04-28Import translations. DO NOT MERGE•••Change-Id: I19cf3418e3bb56a10729741b0d7514533a92f6be Auto-generated-cl: translation import Bill Yi4-6/+6
2017-04-28Import translations. DO NOT MERGE•••Change-Id: I13becab3eb65dbb5466387d2781af7226f8dee0e Auto-generated-cl: translation import Bill Yi1-1/+1
2017-04-28Import translations. DO NOT MERGE•••Change-Id: Ib3dc9dfc6748012de4882a5421993b7bbe825deb Auto-generated-cl: translation import Bill Yi1-2/+2
2017-04-26Use AAPT2•••Test: make checkbuild Change-Id: I8478dd61a2edf8f87437276025ed57092c1b047c Alan Viverette1-1/+6
2017-04-26Import translations. DO NOT MERGE•••Change-Id: Ia60d6804e3876eaddb40917b121aade6dfe7c2f4 Auto-generated-cl: translation import Bill Yi4-15/+15