HomeSort by relevance Sort by last modified time
    Searched refs:wowby (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/java/time/temporal/
WeekFields.java 906 int wowby = temporal.get(weekDef.weekOfWeekBasedYear); local
1012 long wowby = fieldValues.get(weekDef.weekOfWeekBasedYear); local
1016 int wowby = weekDef.weekOfWeekBasedYear.range().checkValidIntValue( local
    [all...]
IsoFields.java 475 long wowby = fieldValues.get(WEEK_OF_WEEK_BASED_YEAR); local
487 date = date.plusWeeks(Math.subtractExact(wowby, 1)).with(DAY_OF_WEEK, dow);
490 if (wowby < 1 || wowby > 52) {
492 getWeekRange(date).checkValidValue(wowby, this); // only allow exact range
494 range().checkValidValue(wowby, this); // allow 1-53 rolling into next year
497 date = date.plusWeeks(wowby - 1).with(DAY_OF_WEEK, dow);
  /libcore/ojluni/src/test/java/time/tck/java/time/temporal/
TCKWeekFields.java 636 int wowby = date.get(wowbyField); local
638 for (int j = wowby - 60; j < wowby + 60; j++) {
641 assertEquals(parsed, date.plusWeeks(j - wowby), " ::" + str + ": :" + i + "::" + j);
704 int wowby = date.get(wowbyField); local
    [all...]

Completed in 139 milliseconds