- Aug 23, 2013
-
-
Yuichiro Hanada authored
Bug: 10434720 Change-Id: I14690a6e0f922ed1bab3a4b6c9a457ae84d4c1a4
-
Tadashi G. Takaoka authored
Bug: 9059539 Change-Id: I7fe6520e4eafcb7e1748b8bf011333c7e0da7ac2
-
- Aug 22, 2013
-
-
Yuichiro Hanada authored
Change-Id: I41049b9118b58838e5dedf8e5618d939ca70c5ef
-
Tadashi G. Takaoka authored
Change-Id: Ib747828aeec20c1ebb4087169a7eb373deb163c3
-
- Aug 21, 2013
-
-
Yuichiro Hanada authored
Change-Id: I4dabf17da7003b1d8204a83dbd10e5be6e8fd805
-
- Aug 20, 2013
-
-
Yuichiro Hanada authored
Change-Id: Ibf9b95b658df6e2c2218bdb62e2380f326a03832
-
- Aug 19, 2013
-
-
Yuichiro Hanada authored
BinaryDictReader -> BinaryDictDecoder. BinaryDictDecoder -> BianryDictDecoderUtils. Change-Id: Iadf2153b379b760538ecda488dda4f17225e5f37
-
- Aug 16, 2013
-
-
Jean Chalard authored
Bug: 10247660 Change-Id: I1a0ac19f58f96adb5efac5fd35c6404831618c99
-
Yuichiro Hanada authored
Change-Id: Ib46da6efeaa8f83a9cda24c947fc2e667a1468e8
-
- Aug 15, 2013
-
-
Yuichiro Hanada authored
Change-Id: I80d177f3c9bff1fb90029edeafa4a62d0b99e09e
-
Yuichiro Hanada authored
Change-Id: I7c3269d77e3e3b567e459dcaa1bc029903941744
-
Jean Chalard authored
Bug: 10100269 Change-Id: I883992c2033e7d9e7c754c0bf653767728b221b6
-
Ken Wakasa authored
Revert "[Refactor] Divide BinaryDictInputOutput into BinaryDictInputUtils and BinaryDictOutputUtils." This reverts commit 4c63d061. Change-Id: I1fa277d720bab4d895259df7d6d82eebfa5eb6c5
-
Yuichiro Hanada authored
Change-Id: I0d476abe763c11ba9005152f928e8dccf15ac9de
-
- Aug 13, 2013
-
-
Yuichiro Hanada authored
Bug: 9618601 Change-Id: Ief07fa0c3c4f7f5999a3fafcef4e47b6b6fd8143
-
Tadashi G. Takaoka authored
Change-Id: Icceda22aec75f9e3602da8775c0e94b110283575
-
Tadashi G. Takaoka authored
Bug: 10284912 Change-Id: Ie0fc09b101034482a775961c8f8f1fcdf6dbec8f
-
- Aug 05, 2013
-
-
Jean Chalard authored
Bug: 10064334 Change-Id: Ie4e6c333566eee9000fa5c8e59e9df8b9b56a5b3
-
- Aug 01, 2013
-
-
Tadashi G. Takaoka authored
- Place "ç" (U+00E7) insteand of "ñ" (U+00F1). - Place "L·L" (L/U+00B7/L) instead of "Ŀ" (U+013F) in more keys of "L". - Add "·" (U+00B7) to more keys of "." in main keyboard and "-" in symbols keyboard. Change-Id: I60e4aa6716f8166ca60ab5687b0faf2d84cd846b
-
- Jul 31, 2013
-
-
Tadashi G. Takaoka authored
Bug: 10098472 Change-Id: I60e4aa6716f8166ca60ab5687b0faf2d84cd846b
-
- Jul 19, 2013
-
-
Ken Wakasa authored
Change-Id: Ia14a2011d79bad7cd02697b9254705f6e2099442
-
- Jul 17, 2013
-
-
Ken Wakasa authored
bug: 9889653 Change-Id: I2630c56548f9146ade85b17f891932dae2082a85
-
Ying Wang authored
Change-Id: I51c0b7ba5641c1e7c1d63a4e5a6307b08d6f4886
-
- Jul 04, 2013
-
-
Jean Chalard authored
If there is any two-args constructor with the right arg types in a test class, use it. Also, add a test suite to dicttool test. Also, have the return value of dicttool reflect success or failure. Change-Id: I51ab2a4abb93a0a483e8d6ef3c39d1ff1bce1dbd
-
Tadashi G. Takaoka authored
Bug: 7963448 Change-Id: I39c192b342278e82e30ac6ef12c6d150c817ae70
-
Tadashi G. Takaoka authored
Bug: 9697273 Change-Id: Ic9943569ed60d601f093181bf135e45a25399121
-
- Jul 03, 2013
-
-
Tadashi G. Takaoka authored
This is a folowup of I1c5b27c8ed. Change-Id: I12c422a26e599923cadf21c3ab24e4b901cf94cc
-
- Jul 01, 2013
-
-
Jean Chalard authored
Change-Id: I0667e0a5a6f6db3964cfcca5c8f083b9ceb41a2e
-
- Jun 24, 2013
-
-
Ken Wakasa authored
Change-Id: I1c5b27c8edf231680edb8d96f63b9d04cfc6a6fa
-
- Jun 20, 2013
-
-
Jean Chalard authored
Bug: 8526576 Change-Id: Idd6f9cd076d5915361c68f5c29afbba67dd54eba
-
- Jun 19, 2013
-
-
Jean Chalard authored
Also fix some warnings This is a preliminary change to help track b/8526576 Bug: 8526576 Change-Id: If2ed74bb92f9b5fb7bbaf9c4851d9d0b5514b405
-
- Apr 01, 2013
-
-
Jean Chalard authored
The important bug is in findWordInTree. The problem, which is not obvious, is that we were calling codePointAt() with the code point index in the string, instead of the char index. The other bug this change fixes was harmless in the practice, because it's in the iteration which is only used for debug and pretty printing purposes. It's very similar in that it would substract a length in code point to a length in chars and truncate a StringBuilder at that length, so it would fail in a quite similar manner. This changes the meaning of the "length" attribute in Position, but it's clearer this way anyway. Bug: 8450145 Change-Id: If396f883a9e6449de39351553ba83f5be5bd30f0
-
- Mar 22, 2013
-
-
Tadashi G. Takaoka authored
This is a follow up of I062c076f. Change-Id: Ic3a83d95aed1f86121ed552a6f20f0d24f9d6d83
-
Tadashi G. Takaoka authored
Bug: 6789579 Change-Id: I062c076f0ca16cc39274e20955aa83d667b7380d
-
- Mar 12, 2013
-
-
Tadashi G. Takaoka authored
The natural way of marking quoted text vary from language to language. This change introduces the following variations. * LEFT and RIGHT quotations (English etc.) * LOW-9 and LEFT quotations (German etc.) * LOW-9 and RIGHT quotations (Dutch etc.) * RIGHT and RIGHT quotations (Swedish etc.) * LEFT ANGLE and RIGHT ANGLE quotations (French etc.) * RIGHT ANGLE and LEFT ANGLE quotations Bug: 8356419 Change-Id: I75726ab7ed783d02f189b46236c9d5079737bcff
-
- Jan 21, 2013
-
-
Tadashi G. Takaoka authored
Change-Id: Ic56167f952a7f4449da366e1e81610e72c966086
-
- Jan 15, 2013
-
-
Tadashi G. Takaoka authored
Bug: 8001868 Change-Id: I0e5aab266bbaad8c68e4a900b8d5572977a0379d
-
- Dec 13, 2012
-
-
Tadashi G. Takaoka authored
This change moves the following string from resources to KeyboardTextsSet. - label_to_alpha_key - label_to_symbols_key - label_to_symbols_with_microphone_key Bug: 7697799 Change-Id: Icf9b8848de4c70f792e336f2ae274dab12be79ee
-
- Nov 29, 2012
-
-
Ken Wakasa authored
bug: 7635215 Change-Id: Ie50297ab592261390885c593341b6c46161b2e63
-
- Nov 20, 2012
-
-
Tadashi G. Takaoka authored
Add Rial(ar), Indian Rupee(hi), Tugrik(mn), Baht(th), Hryvnia(uk), Dong(vi) currency sign keys to symbol layout. Bug: 7455289 Change-Id: I0f819631ff05c4a31d3a6868dea5e18a1797f103
-