- Dec 15, 2011
-
-
Tadashi G. Takaoka authored
Change-Id: Ie93c7437fb9a3fe63adaa48c2d4a723f96c0a0e1
-
- Oct 04, 2011
-
-
Tadashi G. Takaoka authored
This change also gets rid of several compiler warnings. Change-Id: I23962edaadad18a6e0395d528af17b909dcf5dad
-
- Aug 29, 2011
-
-
Jean Chalard authored
This fixes a race condition that would end up with the spell checker not finding some words in the user dictionary when it just booted. Bug: 5194627 Change-Id: I1ba911cc53e6ae3b111d54a6f91d1d5feef3f5de
-
- Aug 19, 2011
-
-
Jean Chalard authored
Bug: 5175868 Change-Id: I165eee4c865caa5ee1daf3e0b1acde8788b996ef
-
- Aug 04, 2011
-
-
Jean Chalard authored
This is a preparative change for inserting the spell checker. Change-Id: Ie441879cac4f67078ec27a95f1fcbbf3ef373df7
-
- May 23, 2011
-
-
Jean Chalard authored
Bug: 4464446 Change-Id: If7b6d73fb408d53f941c82ed4f47221e85c845d8
-
- May 02, 2011
-
-
Jean Chalard authored
Picking a suggestion inserts a space after the word. This change makes this space a magic space. Incidentally, do some minor cleanup: add CODE_DASH, CODE_SINGLE_QUOTE and CODE_DOUBLE_QUOTE to Keyboard and use them throughout the code, and remove a useless import directive in some unrelated file. Bug: 4319740 Change-Id: I245f396c34dd0af820bca91edc4ec363238a4ae4
-
- Apr 06, 2011
-
-
Jean Chalard authored
- Have user-history based bigrams used as soon as they are entered, not after 6 times. - Limit bigram frequency to 255 (this limits the multiplier to 1.8, and has no effect on main dict bigrams which already have this limit) - Some TODO resolving bug: 4192129 Change-Id: I4777f1a58c43dd55381c4b01252d722ab3a70547
-
- Mar 16, 2011
-
-
Tadashi G. Takaoka authored
This change also corrects usage of "frequency", "priority" and "score" * Frequency is the relative probability in dictionary. * Score is the relative probability in suggestions. * Priority is kind a sorted score. Change-Id: Iafb135a4ecdb401cc505014a07c74dfcac44d699
-
- Mar 05, 2011
-
-
Jean Chalard authored
Words that matched user input with skipped characters used to be demoted in BinaryDictionary by a constant factor and not at all in those dictionaries implemented in java code. To represent the fact that the impact of a skipped character gets larger as the word is shorter, this change will implement a demotion that gets larger as the typed word is shorter. The demotion rate is (n - 2) / (n - 1) where n is the length of the typed word for n >= 2. It implements it for both BinaryDictionary and java dictionaries. Bug: 3340731 Change-Id: I3a18be80a9708981d56a950dc25fe08f018b5b89
-
Ken Wakasa authored
bug: 3514797 Change-Id: Ie1056745ded1f848d1e4f70c5344d6969de509b0
-
- Feb 17, 2011
-
-
Tadashi G. Takaoka authored
Bug: 3428942 Change-Id: Id62f467ce4e50c60a56d59bf96770e799a4659e2
-
- Jan 09, 2011
-
-
Ken Wakasa authored
bug: 3325065 Change-Id: Ic3d2dca5b2aa1681d472c7f96b31737e15f4952d
-
- Dec 10, 2010
-
-
Tadashi G. Takaoka authored
This change also cleanups compiler warnings. Bug: 2897373 Change-Id: If972cf45c1eb40436adbddbf71969e5409f4c9c5
-
- Nov 29, 2010
-
-
Tadashi G. Takaoka authored
This change also fixes wrong file mode. Change-Id: Ifcf4c9444ddcdc62d2e4b394891d6eee135c1e8f
-
- Aug 20, 2010
-
-
satok authored
TODO: Cleanup will follow. Change-Id: I4a68ba9f2f55760aa24187f1f13fdfa8a0b70963
-
- Aug 10, 2010
-
-
Jae Yong Sung authored
-UnitTest for UserBigram -Changes for number of bigrams to load Change-Id: I2c6fbe6194d34112ccc52c7e199461d2350e8516
-
- Jul 28, 2010
-
-
Jae Yong Sung authored
- retrieve bigrams that only starts with character typed and neighbor keys - contacts bigram - performance measure bug: 2873133 Change-Id: If97c005b18c82f3fafef50009dd2dfd972b0ab8f
-
- Jul 13, 2010
-
-
Jae Yong Sung authored
- after first character, only suggests bigram data (but doesn't autocomplete) - after second character, words from dictionary gets rearranged by using bigram - compatible with old dictionary - added preference option to disable bigram Change-Id: Ia8f4e8fa55e797e86d858fd499887cd396388411
-
- Jun 02, 2010
-
-
satok authored
- Added counters for suggestions by dictionarys - Added a counter for cancelled suggestions Change-Id: Ia7d3a73855b1e82b60a010f18dba4e1c0fe1c2bb
-
- Mar 10, 2010
-
-
Amith Yamasani authored
This is to avoid ANRs during bootup, as some of the providers may not have been initialized yet. Refactored the ContactsDictionary and moved the async loading code to ExpandableDictionary to share with the other dicts. Bug: 2501133 Change-Id: I20393edb6fdf5df2f54ebac8dd04419a592177a2
-
- Mar 09, 2010
-
-
Amith Yamasani authored
Move java code to a different directory so that the unbundled version doesn't try to compile the native code again. Change-Id: I05cf9e643824ddc448821f69805ccb0240c5b986
-
- Mar 04, 2010
-
-
Amith Yamasani authored
dictionary. Example, "ho9" would match "Shoemaker", if "Shoemaker" existed in your contacts. This was due to premature switch to completions mode when trying to insert a missing letter. This syncs up the Java version to what the native one was doing.
-
- Feb 08, 2010
-
-
Amith Yamasani authored
This increases the chance of hitting the correct letter when typing a word that exists in the dictionary, rather than only correct it after the fact. It is most effective after 2 or 3 letters of a word have been typed and gets more accurate with more typed letters in the word. If 2 adjacent letters have similar probabilities of occuring, then there is no hit correction applied.
-
- Jan 12, 2010
-
-
The Android Open Source Project authored
-
- Dec 07, 2009
-
-
Amith Yamasani authored
When there is more than one instance of a name in the Contacts, it gets a very high weightage and can override corrections for very high frequency words such as "the". This fix prevents multiple occurences from increasing the frequency of a contact and also from bumping it above 255, which is the frequency of "the", "is", etc.
-
- Nov 13, 2009
-
-
Jean-Baptiste Queru authored
-
- Aug 14, 2009
-
-
Amith Yamasani authored
First pass at automatically adding new words that the user types and deliberately accepts. After typing the word 4 times, the word gets promoted to being valid. After typing the word 7 times, the word gets added into the UserDictionary and can be removed from the UserDictionary Settings UI. Also add a second row of symbols to the period popup.
-
- Mar 13, 2009
-
-
The Android Open Source Project authored
-