Home | History | Annotate | Download | only in latin

Lines Matching refs:Editor

106         SharedPreferences.Editor editor =
108 editor.putLong(PREF_VOICE_INPUT_LAST_TIME_USED, System.currentTimeMillis());
109 SharedPreferencesCompat.apply(editor);
168 SharedPreferences.Editor editor = sp.edit();
169 editor.putInt(PREF_VOICE_HINT_NUM_UNIQUE_DAYS_SHOWN, numUniqueDaysShown + 1);
170 editor.putLong(PREF_VOICE_HINT_LAST_TIME_SHOWN, System.currentTimeMillis());
171 SharedPreferencesCompat.apply(editor);
182 SharedPreferences.Editor editor = sp.edit();
183 editor.putInt(pref, value + 1);
184 SharedPreferencesCompat.apply(editor);