Skip to content
Snippets Groups Projects
  1. Nov 17, 2012
  2. Nov 16, 2012
  3. Nov 15, 2012
  4. Nov 14, 2012
  5. Nov 13, 2012
    • Jean Chalard's avatar
      Make sure all FDs are correctly closed. · 5c32b6da
      Jean Chalard authored
      In this kind of series of calls, it's possible that an outer call to a
      constructor fails, but the inner succeeded.
      Example:
      try {
          is = new A(new B());
      } finally {
          if (null != is) is.close();
      }
      In this case, if new B() succeeds but new A() throws an
      exception, is stays null and the intermediate object is never
      closed. This is what was happening in this instance.
      
      Bug: 7377336
      Change-Id: I3fae9fec1135244982fcf5098c76d93f3e0f2add
      5c32b6da
    • Jean Chalard's avatar
      Refactor all phantom-space-inserted spaces in one place · 0e84041b
      Jean Chalard authored
      Bug: 7164981
      Change-Id: If1635c212b2d5d9cf51f5fb074f3b20dd7ec7b2a
      0e84041b
  6. Nov 12, 2012
  7. Nov 09, 2012
  8. Nov 06, 2012
    • Ken Wakasa's avatar
      Reset the IME if requested by the app. · 5d2556b9
      Ken Wakasa authored
      Specifically, reset the KeyboardState to the main Alphabet layout in
      LatinIME.onStartInputViewInternal() if a keyboard layout set doesn't get
      reloaded in the method.
      
      Please note TextView.setText() calls up resetInput(), then the IME should
      reset with it.
      
      bug: 7482086
      
      Note that bug: 6851364 needs to be revisited.
      
      Change-Id: I5d448c10963d3dd952dd13cb587085ec7b014e69
      5d2556b9
  9. Nov 01, 2012
  10. Oct 31, 2012
  11. Oct 29, 2012
  12. Oct 25, 2012
  13. Oct 24, 2012
Loading