Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/format/
DDateTimeFormatterBuilder.java3969 String gmtText = ICU.getGMTZeroFormatString(context.getLocale()); in format() local
3970 if (gmtText == null) { in format()
3971 gmtText = "GMT"; // Default to "GMT" in format()
3973 buf.append(gmtText); in format()
4021 String gmtText = ICU.getGMTZeroFormatString(context.getLocale()); in parse() local
4022 if (gmtText == null) { in parse()
4023 gmtText = "GMT"; // Default to "GMT" in parse()
4025 if (!context.subSequenceEquals(text, pos, gmtText, 0, gmtText.length())) { in parse()
4028 pos += gmtText.length(); in parse()