Home
last modified time | relevance | path

Searched refs:tzid (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DTimeZone.java602 String tzid = zoneId.getId(); // throws an NPE if null in getTimeZone() local
603 char c = tzid.charAt(0); in getTimeZone()
605 tzid = "GMT" + tzid; in getTimeZone()
606 } else if (c == 'Z' && tzid.length() == 1) { in getTimeZone()
607 tzid = "UTC"; in getTimeZone()
609 return getTimeZone(tzid); in getTimeZone()