Searched defs:editor (Results 1 - 2 of 2) sorted by relevance

/frameworks/ex/common/java/com/android/common/
H A DSharedPreferencesCompat.java39 public static void apply(SharedPreferences.Editor editor) { argument
42 sApplyMethod.invoke(editor);
50 editor.commit();
/frameworks/base/core/java/android/preference/
H A DPreference.java1196 private void tryCommit(SharedPreferences.Editor editor) { argument
1199 editor.apply();
1204 editor.commit();
1212 * This will check if this Preference is persistent, get an editor from
1230 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1231 editor.putString(mKey, value);
1232 tryCommit(editor);
1276 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1277 editor.putInt(mKey, value);
1278 tryCommit(editor);
[all...]

Completed in 671 milliseconds