Skip to content
Snippets Groups Projects
  1. Jul 06, 2023
  2. Feb 27, 2015
    • Dan Zivkovic's avatar
      Race condition in cursor move. · 69c04cad
      Dan Zivkovic authored
      The method WordComposer.moveCursorByAndReturnIfInsideComposingWord() iterates
      through all the code points in the word that's currently being composed, and
      it tries to adjust the cursor position by a given amount (left or right).
      It copies the code points to a new array while processing. But the code point
      count comes from a member variable. If the member variable changes while the
      method is processing the copy of the code points, it can run over the length
      of the code point array.
      
      Bug 18876474.
      
      Change-Id: Ib3a2d90a4e82b76d381efa774e6b3d6bca99c869
      69c04cad
  3. Feb 05, 2015
  4. Feb 04, 2015
  5. Jan 29, 2015
  6. Dec 22, 2014
  7. Nov 07, 2014
  8. Oct 29, 2014
  9. Oct 28, 2014
  10. Oct 23, 2014
  11. Oct 21, 2014
    • Tadashi G. Takaoka's avatar
      Fix some compiler warnings · 5f00fe09
      Tadashi G. Takaoka authored
      This CL fixes the following compiler warnings.
      
      - Indirect access to static member
      - Access to a non-accessible member of an enclosing type
      - Parameter assignment
      - Method can be static
      - Local variable declaration hides another field or variable
      - Value of local variable is not used
      - Unused import
      - Unused private member
      - Unnecessary 'else' statement
      - Unnecessary declaration of throw exception
      - Redundant type arguments
      - Missing '@Override' annotation
      - Unused '@SuppressWarning' annotations
      
      Bug: 18003991
      Change-Id: Icfebe753e53a2cc621848f769d6a3d7ce501ebc7
      5f00fe09
  12. Oct 08, 2014
  13. Oct 03, 2014
  14. Sep 29, 2014
  15. Sep 16, 2014
  16. Aug 04, 2014
  17. Jul 30, 2014
  18. Jul 29, 2014
  19. Jul 30, 2014
  20. Jul 29, 2014
  21. Jul 17, 2014
  22. Jun 16, 2014
  23. Jun 10, 2014
    • Jean Chalard's avatar
      Remove mPrevWordsInfo · 367c199d
      Jean Chalard authored
      This member has outlived its usefulness. It's not clear now that it
      makes things really faster, but it does bring a lot of complexity
      that we can avoid by removing it.
      
      Change-Id: Ifbc8094a45b56b958fe165b1930f4cc358a97721
      367c199d
  24. Jun 02, 2014
  25. May 23, 2014
  26. May 21, 2014
  27. May 20, 2014
  28. May 19, 2014
  29. May 16, 2014
Loading