OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:olsonId
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Settings/src/com/android/settings/
ZonePicker.java
235
for (String
olsonId
: TimeZoneNames.forLocale(Locale.getDefault())) {
236
mLocalZones.add(
olsonId
);
252
String
olsonId
= xrp.getAttributeValue(0);
253
addTimeZone(
olsonId
);
269
private void addTimeZone(String
olsonId
) {
271
final TimeZone tz = TimeZone.getTimeZone(
olsonId
);
277
if (mLocalZones.contains(
olsonId
)) {
284
displayName = TimeZoneNames.getExemplarLocation(localeName,
olsonId
);
288
map.put(KEY_ID,
olsonId
);
/libcore/luni/src/main/java/libcore/icu/
DateIntervalFormat.java
66
public static String formatDateRange(long startMs, long endMs, int flags, String
olsonId
) {
68
olsonId
= "UTC";
70
TimeZone tz = (
olsonId
!= null) ? TimeZone.getTimeZone(
olsonId
) : TimeZone.getDefault();
Completed in 1313 milliseconds