- Feb 02, 2013
-
-
Kurt Partridge authored
Now applies yellow bars if recording, green bars if replaying. Change-Id: I39d39de6254fd57107ea5355c43b154244520985
-
- Feb 01, 2013
-
-
Kurt Partridge authored
Change-Id: Iae04115921aaf6bbc3c6ad6e7d2d0e7401af41f8
-
- Jan 31, 2013
-
-
Kurt Partridge authored
- Start with just a smoke test. - Sets up a private SharedPreferences multi-project commit with I81cceba23692d64c2ea58a46351fc36d118ff825 Change-Id: I96e02d9a8de70cb5c03fd7411b886903e7a83673
-
Kurt Partridge authored
multi-project commit with Ia2dd81afb4ea124094a20a39e31ffd193edff3d2 Change-Id: I80fe8f2ce137fedf48038955d5f3d9deed04f763
-
Kurt Partridge authored
Change-Id: I1983095058d004476065328ad34bb9e325af7062
-
- Jan 29, 2013
-
-
Kurt Partridge authored
- Also, internal flag for automatically replaying after a recording is made (off by default) - RLog key to "Bug?" multi-project commit with I0c2fababd73eed5a341af487bca04ddd650d4cc2 Change-Id: I162c96a715de7180f276e08b4686a20f29dabafb
-
Kurt Partridge authored
- Add support for replaying log files to the ResearchLogger. This will let users preview data that they choose to upload. - When the user explicitly requests that the system record their action, it will record everything up to, and including, the motion involved in shutting off the recording. This change also removes the stop-recording motion commands. Change-Id: Ib1df383bbf1881512cb111fab9f6749c25e436ba
-
- Jan 22, 2013
-
-
Kurt Partridge authored
Heuristic to determine whether a word was a typo correction or a complete replacement by examining a correction to see if it falls within the list of suggested words of the original. Change-Id: Ieec4861a811e96aef0d14622e662b589ef8b4772
-
- Jan 21, 2013
-
-
Kurt Partridge authored
multi-project commit with I0a293f392bd605c8203dc9a62993345ad58dcfbe Change-Id: Ief5b940a62dbaeaecdf1c55f2ffdd1e0fdaea2b9
-
Kurt Partridge authored
Previously, words were pushed out of a LogBuffer one at a time. The receiving code had to keep state to know whether a n-gram was safe to log. This patch looks at the entire n-gram and makes a single decision based on it alone. mult-project commit with I3c40d7e02c77943d2668094ddb1d03efb942c74f Change-Id: Id7d90bbd551b1a2f4e0e35f38852652f68f273f8
-
Tadashi G. Takaoka authored
Change-Id: Ic56167f952a7f4449da366e1e81610e72c966086
-
- Jan 18, 2013
-
-
Kurt Partridge authored
Change-Id: I4b2ebaa2398ac2f669e1e009e00842e55979e866
-
- Jan 17, 2013
-
-
Kurt Partridge authored
If the user makes a correction to a word, this is now explicitly indicated in the logUnit. Change-Id: I8638aadd7b8c8e32bbc9c4b020548d786513d887
-
Kurt Partridge authored
- No longer suggests that it is called from a non-existent method in RichInputConnection Change-Id: I25fe4a0f232a4320ca113598bbcdd029ca319944
-
Kurt Partridge authored
The feedback string was not being inserted in the feedback logs. Also changed the tag to "UserFeedback" from "UserTimestamp" to better reflect the data recorded. Change-Id: Iccf781b25e2573168c36e729419468f5bd73903e
-
- Jan 16, 2013
-
-
Kurt Partridge authored
Change-Id: I55b61d9ca6eecd56181b8d2913f71559555cd89e
-
- Jan 15, 2013
-
-
Kurt Partridge authored
ResearchLogger.latinIME_handleSeparator wasn't doing anything really specific to the separator, so its implementation has been renamed according to its role. Change-Id: I24e8691c7dc440dd067e96d23e50463683e17cfc
-
- Jan 14, 2013
-
-
Kurt Partridge authored
Change-Id: If21222aa678a827c1fcad5cacac0fa20655e4e5e
-
Kurt Partridge authored
multi-project commit with If6b9f8990d7cdbf570740a81096513698d0e0f4c Change-Id: I124aed24be0beb4c472869594184ecf003c2fed4
-
Kurt Partridge authored
Change-Id: I5ef20476318979f99f543f9300cf6198d18f6244
-
- Jan 12, 2013
-
-
Kurt Partridge authored
- Normal delete events are recorded - Includes number of characters deleted for both batch and normal delete Change-Id: I422da3ddc94fa0ccd6c7586eaacf14c62dd16679
-
- Jan 11, 2013
-
-
Kurt Partridge authored
Change-Id: Ia6f793611d4b18aecb1a635655af5edb639e1ecf
-
Kurt Partridge authored
- Fix function calls to happen at more resilient times - In the case of phantom spaces, ensure that the logStatement goes to the correct logUnit Change-Id: Ida8f6eba1e4f33d9f9b4735316e3c6316ed316c0
-
Kurt Partridge authored
Normally logUnits are committed to a log when the word that their data corresponds to is complete. However, if the user reverts a word, or goes back to edit it, then the system may "uncommit" the logUnit, and append additional editing steps to the end of it. When this happens, we want to make a note of it in the log, which is what this patch does. Change-Id: If2bbb948469824c76facf5f06ed8a6da8ff9777c
-
Kurt Partridge authored
Change-Id: I7802f07192a4cba4f3cfb5c08ce6d5d2d85a46c1
-
Kurt Partridge authored
Change-Id: I65ecdead7e7bdeb8a5f1748e27068ddbd5d3ce00
-
Kurt Partridge authored
Change-Id: I07b18b5db81784dca32683e5f208088181c5eed9
-
- Jan 10, 2013
-
-
Kurt Partridge authored
Change-Id: I07c817061a0cc060197e0fea45195ca07a9bf276
-
Kurt Partridge authored
Previously, a logbuffer only held an n-gram. Data went in and out of it, FIFO, until privacy conditions were met (i.e. data not collected too frequently), and then an n-gram was saved. E.g., if n=2, and only 10% of data is collected, then 18 words went through the logbuffer before it captured the next 2 words. However, if a user then went back and edited the n-gram, these edits were not captured. This change changes the logbuffer size to temporarily hold data about words that are not recorded, so that if the user backs up over them, the edits to an n-gram that we do eventually capture are stored. If the example above, instead of a logbuffer holding 2 words, it holds 20. The system waits until all the words not needed for the n-gram have been gathered (i.e. the buffer is full), so the user has adequate time to edit, before shifting out the n-gram. The buffer is still flushed when the user closes the IME. See the comment for MainLogBuffer for an explanation. multi-project commit with I45317bc95eeb859adc1b35b24d0478f2df1a67f3 Change-Id: I4ffd95d08c6437dcf650d866ef9e24b6af512334
-
Kurt Partridge authored
Change-Id: Ia3fca4881370ffcdd5f2b14d2d1094c51f4330ae
-
Kurt Partridge authored
multi-project commit with Ia4ec213e8356897807cb6a278fccdbaa945732f0 Change-Id: Ib3fe886dc889954a31586ab81d00a21d8d55efd2
-
- Jan 08, 2013
-
-
Kurt Partridge authored
- Now includes all historical data stored in a motionEvent - Simpler API, refactored to move extraction code to JsonUtils Change-Id: I52d9756ddbeaa14d1704787da59bf1aad18f0335
-
Kurt Partridge authored
multi-project commit with I684ba5fed8c653777942e6b0366113ca40dfa37c Change-Id: Id3804e6cfa97b4cdde212b8eebc413f76fa4772c
-
- Jan 07, 2013
-
-
Tadashi G. Takaoka authored
Change-Id: I16a27f2ed6ea66184bfdc9903180372cd7ea2fd1
-
- Jan 04, 2013
-
-
Kurt Partridge authored
Cleanup and prepare for replaying Change-Id: Ie09e912c6e9c0d7375168c575ccf1cfd9375dd31
-
- Dec 23, 2012
-
-
Kurt Partridge authored
multi project commit with I5847d4aba97a7224ae170a7153811c5a11816449 Change-Id: Ie6fbf6f19f0193451fe6f3ddf9d4ef1637a35db1
-
Kurt Partridge authored
Change-Id: I73a6009294a4f559a93b6ea9ceb4ea2683d97486
-
Kurt Partridge authored
Change-Id: Ic46c91374ae0177cafad4579d28d6980af0d8d3a
-
Kurt Partridge authored
Change-Id: I73b7765c764e5f1035f1c37df45345f26aa5acb1
-
- Dec 22, 2012
-
-
Kurt Partridge authored
Upcoming changes require LatinIME class, not just InputMethodService Change-Id: Ia5b3a716ac02a99749fb2ba0164ba46c8a0c559a
-