Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/
DPeriod.java330 String dayMatch = matcher.group(5); in parse() local
331 if (yearMatch != null || monthMatch != null || dayMatch != null || weekMatch != null) { in parse()
336 int days = parseNumber(text, dayMatch, negate); in parse()
DDuration.java387 String dayMatch = matcher.group(2); in parse() local
392 … if (dayMatch != null || hourMatch != null || minuteMatch != null || secondMatch != null) { in parse()
393 long daysAsSecs = parseNumber(text, dayMatch, SECONDS_PER_DAY, "days"); in parse()