Searched refs:charEquals (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/time/format/ |
D | DateTimeParseContext.java | 241 boolean charEquals(char ch1, char ch2) { in charEquals() method in DateTimeParseContext
|
D | DateTimeFormatterBuilder.java | 2548 while (pos < endPos && context.charEquals(text.charAt(pos), padChar)) { in parse() 4451 if (context.charEquals(nextChar, 'U') && context.charEquals(nextNextChar, 'T')) { in parse() 4452 … if (length >= position + 3 && context.charEquals(text.charAt(position + 2), 'C')) { in parse() 4462 } else if (context.charEquals(nextChar, 'G') && length >= position + 3 && in parse() 4463 … context.charEquals(nextNextChar, 'M') && context.charEquals(text.charAt(position + 2), 'T')) { in parse() 4464 … if (length >= position + 4 && context.charEquals(text.charAt(position + 3), '0')) { in parse() 4477 if (context.charEquals(nextChar, 'Z')) { in parse() 4514 context.charEquals(text.charAt(position), 'Z')) { in parseOffsetBased()
|