Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/format/
DDateTimeParseContext.java241 boolean charEquals(char ch1, char ch2) { in charEquals() method in DateTimeParseContext
DDateTimeFormatterBuilder.java2295 while (pos < endPos && context.charEquals(text.charAt(pos), padChar)) { in parse()
3881 if (context.charEquals(nextChar, 'U') && context.charEquals(nextNextChar, 'T')) { in parse()
3882 … if (length >= position + 3 && context.charEquals(text.charAt(position + 2), 'C')) { in parse()
3886 } else if (context.charEquals(nextChar, 'G') && length >= position + 3 && in parse()
3887 … context.charEquals(nextNextChar, 'M') && context.charEquals(text.charAt(position + 2), 'T')) { in parse()
3897 if (context.charEquals(nextChar, 'Z')) { in parse()
3934 context.charEquals(text.charAt(position), 'Z')) { in parseOffsetBased()