aboutsummaryrefslogtreecommitdiffstats
path: root/native/jni/src/defines.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Support terminal insertion error correctionSatoshi Kataoka2013-07-251-0/+1
| | | | | | Bug: 9421356 Change-Id: I19685763ca487b5636019d62e150708c63ce6fc2
* Replace NOT_VALID_WORD with NOT_A_VALID_WORD_POSKeisuke Kuroynagi2013-07-161-1/+1
| | | | | Bug: 6669677 Change-Id: If5fb58e8a98b04b767eaaf624cb6a40841b64f54
* Dump binary dictionary information when openingJean Chalard2013-07-011-25/+51
| | | | | Bug: 9459517 Change-Id: I122583e734936ae0284e1c7500c6c9242bc7973b
* Use NOT_A_DICT_POS instead of 0 to express not valid ditctionary position.Keisuke Kuroynagi2013-06-271-0/+1
| | | | | Bug: 6669677 Change-Id: I4bf2284f8221a0a2ae4534b4a06b0e59c420a5f9
* Use bloom filter in multi bigram map.Keisuke Kuroynagi2013-06-141-27/+0
| | | | | | | | | | | | | Evaluated with previous word "this". without bloom filter (use only hash_map): Total 147792.34 (sum of others 147771.57) with bloom filter: Total 145900.64 (sum of others 145874.30) always read binary dictionary: Total 148603.14 (sum of others 148579.90) Bug: 8592527 Change-Id: I821dc39454543826adb73b9eeeef6408fad8ae28
* Remove unused macros in defines.hKen Wakasa2013-06-111-13/+0
| | | | | bug: 8550444 Change-Id: I77ae6bd607032def05044e3045aa7cc3746b0a5b
* Cleanups in JNI related codeKen Wakasa2013-06-041-5/+0
| | | | | | | | | | Removed the malloc version in binary dictionary support -- this has not really been tested well so far, and the mmap version has been working pretty well after all. Several cosmetic fixes etc. Change-Id: Iad0da58b300b769fb5946a3e73fc96f56215980e
* Clean up macro variablesKen Wakasa2013-06-041-19/+7
| | | | Change-Id: I0d9983c1a766b97182953328fa45f488e110bc01
* Remove a bunch macros that are no longer usedKen Wakasa2013-06-031-31/+1
| | | | | bug: 8550444 Change-Id: Ib775c0bed27c499dc131c54dfaff34c5a8169276
* Follow up to I907150be994c4f9ffc030c063de521eeb177d3e1Ken Wakasa2013-06-031-1/+0
| | | | Change-Id: I8779d397b0ebe2abbf7c3fbc1a79a1a0939c04f0
* Fix buildSatoshi Kataoka2013-06-031-0/+1
| | | | Change-Id: I907150be994c4f9ffc030c063de521eeb177d3e1
* Purge UnigramDictionarySatoshi Kataoka2013-06-031-1/+0
| | | | | Bug: 8550444 Change-Id: I899f3bdce977c521515e548ca0c4ee6d29d6450b
* Improve bigram frequency lookupTom Ouyang2013-04-261-0/+9
| | | | | | Bug: 8592527 Change-Id: I1908bcb552279b9acb140fe4d8d26b10ed9eda72
* Fix exact match checking for words with digraph.Keisuke Kuroynagi2013-04-251-0/+20
| | | | | Bug: 8624690 Change-Id: I8946d6618609c8e0cb638aa96992b51b435232c7
* Fix proximity/edit correction detection that affects the terminal cost.Keisuke Kuroynagi2013-04-241-0/+9
| | | | | Bug: 8624690 Change-Id: If59305674a781e0fcc284d236e3d8ba9cdf9ed08
* Use additional multi-word cost per language (for Russian)Satoshi Kataoka2013-04-161-3/+2
| | | | | Bug: 7540133 Change-Id: I7eb7b8399746c15452ed2ed5069955e88fb546d3
* add a debug flag to evaluate the most probable stringSatoshi Kataoka2013-04-111-0/+2
| | | | Change-Id: I34dc08c14feb9cbc0304c1d0ff06922e3b65819d
* Add flag to turn on new suggest implementation for typingTom Ouyang2013-04-041-0/+1
| | | | | | Bug: 8277656 Change-Id: I974f560050cc5339d110b97620df1c5b496977fe
* Refactor parameters by naming conventionSatoshi Kataoka2013-03-181-6/+6
| | | | Change-Id: I8bda8075b33f656ecbec08320afcd864b620fe77
* Refactor ProximityType and CorrectionTypeSatoshi Kataoka2013-03-071-10/+11
| | | | | Bug: 8277656 Change-Id: Ia7940bbf81fcf4ff5eb7869b105d98aa34155d33
* refactor MAX_POINT_TO_KEY_LENGTHSatoshi Kataoka2013-03-051-2/+3
| | | | Change-Id: I3b44068bce784531516f3cdfe67b3b46b1f1b805
* Add CorrectionTypeSatoshi Kataoka2013-03-041-0/+14
| | | | Change-Id: Ibbad8476be40e322cadfbf9636a13e575338ec1d
* rename defineSatoshi Kataoka2013-03-011-3/+3
| | | | Change-Id: I4767eff187c76541648cc066a88293e46a90f033
* add a default vaule for getMatchedProximityTypeSatoshi Kataoka2013-03-011-0/+2
| | | | Change-Id: Id940f1226ca493d0a1b82e2810b1882184ef8987
* Merge "Use common incremental decoder output scale."Tom Ouyang2013-02-221-0/+1
|\
| * Use common incremental decoder output scale.Tom Ouyang2013-02-211-0/+1
| | | | | | | | Change-Id: Ib6bd7be45be9229a075b6a8feb46c67ec75a9b06
* | add definesSatoshi Kataoka2013-02-211-0/+4
|/ | | | Change-Id: I8bc009bf258cbdf01e15dc63a7a8afad47db5d96
* Cleanups in defines.hKen Wakasa2013-01-311-25/+2
| | | | Change-Id: I75ab11e0d6374a2d1302d1684453a61b98682b13
* refactorSatoshi Kataoka2013-01-301-1/+1
| | | | Change-Id: If5a59667cf3b9dc0c4d7423d2cf4ab640bdacf49
* Remove MAX_PROXIMITY_CHARS_SIZE_INTERNALKen Wakasa2013-01-221-10/+6
| | | | Change-Id: I18a997503de4033b5341b564145bca862a872098
* Refactor proximity infoSatoshi Kataoka2013-01-211-0/+3
| | | | Change-Id: I668e6abfe202e1a56d59b6b6e58d1b4f003b720a
* Clean up in geometry_utils.hKen Wakasa2013-01-211-0/+2
| | | | Change-Id: I876bceed12cf533cb29d290fbc05a686f4030579
* Follow up to I21b54b35Ken Wakasa2013-01-161-1/+1
| | | | Change-Id: I3dd5fdd0c7f157724c82f6ddd6d3bea9bc853988
* Use -fno-inline for debug builds & small cleanupsKen Wakasa2013-01-151-5/+10
| | | | Change-Id: I24f91d7130f2203715b868d4a82510660939886f
* Remove MAX_WORD_LENGTH_INTERNALKen Wakasa2013-01-151-11/+10
| | | | Change-Id: Ie11ff000675601acff5fbb00e9e9f48eb32c5071
* Remove BinaryDictionary.MAX_PREDICTION and MAX_SPACES, and rename MAX_WORDS ↵Ken Wakasa2013-01-111-6/+1
| | | | | | to MAX_RESULTS Change-Id: Iab2a422b367e7521f346481c7fe5e2575f2e9de3
* add a defineSatoshi Kataoka2013-01-091-0/+3
| | | | Change-Id: I8139d0639d07afd200ba4507768bf76d0054687b
* assert when the touch event goes back to the futureSatoshi Kataoka2013-01-091-0/+3
| | | | | | bug: 7911739 Change-Id: I29db6a5cb6749999666b1c53857ea61bcc19b8f1
* Misc small cleanupsKen Wakasa2013-01-081-2/+2
| | | | Change-Id: Iea61e6c76a9a0437a1b2e8143f6ab5b09a8e211e
* add debugSatoshi Kataoka2012-12-181-39/+29
| | | | Change-Id: I101810d2cdd7c2702c489d76fe8f90da0a87a103
* Small cleanupsKen Wakasa2012-12-111-3/+0
| | | | Change-Id: I29b4dee15d66f8f1372035738658234395001d41
* Calculate isContinuationPossible for typingSatoshi Kataoka2012-12-111-0/+1
| | | | Change-Id: I11edb1e5155e5048a6c95f84b36e2ef34572178c
* Header clean upKen Wakasa2012-12-101-2/+0
| | | | Change-Id: If9b2ea4ed8c1c4cf73463f0ac4bc63d4bb8cba42
* turn off debug flagsSatoshi Kataoka2012-12-061-3/+3
| | | | Change-Id: I08710abe3e158ee48c954289fc6bb1269c4a7126
* Merge "Tweak beeline speed"Satoshi Kataoka2012-11-301-0/+6
|\
| * Tweak beeline speedSatoshi Kataoka2012-11-301-0/+6
| | | | | | | | Change-Id: I77bbd5e1888281e838d87824dc04a574b1a7ecb7
* | Merge "Add utilities to read header values."Jean Chalard2012-11-291-0/+6
|\ \ | |/ |/|
| * Add utilities to read header values.Jean Chalard2012-11-291-0/+6
| | | | | | | | | | Bug: 7540132 Change-Id: I19d85481135e79d8782f711da5cbb3a5a7bc06f8
* | Prep for GCC 4.7Ken Wakasa2012-11-271-4/+4
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Galaxy Nexus (./vendor/google/apps/LatinImeGoogle/tests/etc/run-profile.sh -g) Before ==== test finished, terminate logcat ===== (0) 2506.11 (10.48%) (1) 21289.22 (89.01%) (2) 108.29 (0.45%) (3) 0.00 (0.00%) (4) 0.00 (0.00%) (5) 0.00 (0.00%) (6) 0.00 (0.00%) (20) 0.00 (0.00%) Total 23917.44 (sum of others 23903.62) After ==== test finished, terminate logcat ===== (0) 2499.58 (10.98%) (1) 20145.66 (88.51%) (2) 103.17 (0.45%) (3) 0.00 (0.00%) (4) 0.00 (0.00%) (5) 0.00 (0.00%) (6) 0.00 (0.00%) (20) 0.00 (0.00%) Total 22761.98 (sum of others 22748.42) Change-Id: I662cb361ff9205ef87d640c458b8473df7d54659
* Calculate point to point durationSatoshi Kataoka2012-11-221-0/+2
| | | | Change-Id: I4e0cabdbc628658619b7a71dc66aa3bf8a5030b2