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.java2298 while (pos < endPos && context.charEquals(text.charAt(pos), padChar)) { in parse()
3931 if (context.charEquals(nextChar, 'U') && context.charEquals(nextNextChar, 'T')) { in parse()
3932 … if (length >= position + 3 && context.charEquals(text.charAt(position + 2), 'C')) { in parse()
3936 } else if (context.charEquals(nextChar, 'G') && length >= position + 3 && in parse()
3937 … context.charEquals(nextNextChar, 'M') && context.charEquals(text.charAt(position + 2), 'T')) { in parse()
3947 if (context.charEquals(nextChar, 'Z')) { in parse()
3984 context.charEquals(text.charAt(position), 'Z')) { in parseOffsetBased()