OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:recentsstring
(Results
1 - 1
of
1
) sorted by null
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneResultAdapter.java
146
String
recentsString
= prefs.getString(KEY_RECENT_TIMEZONES, null);
147
if (!TextUtils.isEmpty(
recentsString
)) {
148
String[] recents =
recentsString
.split(RECENT_TIMEZONES_DELIMITER);
199
String
recentsString
= prefs.getString(KEY_RECENT_TIMEZONES, null);
200
if (
recentsString
== null) {
201
recentsString
= id;
205
for(String tzId :
recentsString
.split(RECENT_TIMEZONES_DELIMITER)) {
231
recentsString
= builder.toString();
234
prefs.edit().putString(KEY_RECENT_TIMEZONES,
recentsString
).apply();
Completed in 510 milliseconds