HomeSort by relevance Sort by last modified time
    Searched refs:sApplyMethod (Results 1 - 3 of 3) sorted by null

  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 29 private static Method sApplyMethod; // final
33 sApplyMethod = cls.getMethod("apply");
35 sApplyMethod = null;
40 if (sApplyMethod != null) {
42 sApplyMethod.invoke(editor);
  /packages/apps/Music/src/com/android/music/
SharedPreferencesCompat.java 29 private static final Method sApplyMethod = findApplyMethod();
42 if (sApplyMethod != null) {
44 sApplyMethod.invoke(editor);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SharedPreferencesCompat.java 29 private static final Method sApplyMethod = findApplyMethod();
41 if (sApplyMethod != null) {
43 sApplyMethod.invoke(editor);

Completed in 507 milliseconds