Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/time/test/java/time/format/
DTestReducedParser.java186 …oralField field, int width, int baseValue, String input, int pos, int parseLen, Integer parseVal) { in test_parseAllStrict() argument
192 assertEquals(parsed, parseVal, "unexpected parse result"); in test_parseAllStrict()
195 assertParsed(parsed, YEAR, parseVal != null ? (long) parseVal : null); in test_parseAllStrict()
200 …oralField field, int width, int baseValue, String input, int pos, int parseLen, Integer parseVal) { in test_parseAllLenient() argument
206 assertEquals(parsed, parseVal, "unexpected parse result"); in test_parseAllLenient()
209 assertParsed(parsed, YEAR, parseVal != null ? (long) parseVal : null); in test_parseAllLenient()
279 assertEquals(parsed, strict.parseVal, "unexpected parse result"); in test_parseStrict()
282 assertParsed(parsed, YEAR, strict.parseVal != null ? (long) strict.parseVal : null); in test_parseStrict()
294 assertEquals(parsed, strict.parseVal, "unexpected parse result"); in test_parseStrict_baseDate()
297 assertParsed(parsed, YEAR, strict.parseVal != null ? (long) strict.parseVal : null); in test_parseStrict_baseDate()
[all …]
DTestNumberParser.java308 …(String input, int min, int max, SignStyle style, int parseLen, Integer parseVal) throws Exception… in test_parseSignsStrict() argument
315 assertEquals(parsed.getLong(DAY_OF_MONTH), (long)parseVal); in test_parseSignsStrict()
417 …(String input, int min, int max, SignStyle style, int parseLen, Integer parseVal) throws Exception… in test_parseSignsLenient() argument
425 assertEquals(parsed.getLong(DAY_OF_MONTH), (long)parseVal); in test_parseSignsLenient()
508 …(String input, int min, int max, SignStyle style, int parseLen, Integer parseVal) throws Exception… in test_parseDigitsLenient() argument
516 assertEquals(parsed.getLong(DAY_OF_MONTH), (long)parseVal); in test_parseDigitsLenient()