| /libcore/ojluni/src/main/java/java/time/ | 
| D | Period.java | 161     private final int days;  field in Period213     public static Period ofDays(int days) {  in ofDays()
 228     public static Period of(int years, int months, int days) {  in of()
 264         int days = 0;  in from()  local
 334                     int days = parseNumber(text, dayStart, dayEnd, negate);  in parse()  local
 393     private static Period create(int years, int months, int days) {  in create()
 407     private Period(int years, int months, int days) {  in Period()
 593     public Period withDays(int days) {  in withDays()
 1072         int days = in.readInt();  in readExternal()  local
 
 | 
| D | DayOfWeek.java | 365     public DayOfWeek plus(long days) {  in plus()381     public DayOfWeek minus(long days) {  in minus()
 
 | 
| D | OffsetDateTime.java | 1272     public OffsetDateTime plusDays(long days) {  in plusDays()1461     public OffsetDateTime minusDays(long days) {  in minusDays()
 
 | 
| D | ZonedDateTime.java | 1687     public ZonedDateTime plusDays(long days) {  in plusDays()1932     public ZonedDateTime minusDays(long days) {  in minusDays()
 
 | 
| /libcore/ojluni/src/test/java/time/test/java/time/ | 
| D | TestOffsetDateTime_instants.java | 134         long days = (year * 365L + (year / 4 - year / 100 + year / 400)) - days_0000_to_1970;  in factory_ofInstant_tooLow()  local147         long days = (year * 365L + (year / 4 - year / 100 + year / 400)) - days_0000_to_1970;  in factory_ofInstant_tooBig()  local
 156         long days = (year * 365L + (year / 4 - year / 100 + year / 400)) - days_0000_to_1970;  in factory_ofInstant_minWithMinOffset()  local
 172         long days = (year * 365L + (year / 4 - year / 100 + year / 400)) - days_0000_to_1970;  in factory_ofInstant_minWithMaxOffset()  local
 188         long days = (year * 365L + (year / 4 - year / 100 + year / 400)) + 365 - days_0000_to_1970;  in factory_ofInstant_maxWithMinOffset()  local
 204         long days = (year * 365L + (year / 4 - year / 100 + year / 400)) + 365 - days_0000_to_1970;  in factory_ofInstant_maxWithMaxOffset()  local
 
 | 
| /libcore/ojluni/src/main/java/java/time/chrono/ | 
| D | ChronoPeriodImpl.java | 125     final int days;  field in ChronoPeriodImpl130     ChronoPeriodImpl(Chronology chrono, int years, int months, int days) {  in ChronoPeriodImpl()
 394         int days = in.readInt();  in readExternal()  local
 
 | 
| D | AbstractChronology.java | 525             long days = Math.subtractExact(fieldValues.remove(DAY_OF_MONTH), 1);  in resolveYMD()  local544             long days = Math.subtractExact(fieldValues.remove(DAY_OF_YEAR), 1);  in resolveYD()  local
 556             long days = Math.subtractExact(fieldValues.remove(ALIGNED_DAY_OF_WEEK_IN_MONTH), 1);  in resolveYMAA()  local
 591             long days = Math.subtractExact(fieldValues.remove(ALIGNED_DAY_OF_WEEK_IN_YEAR), 1);  in resolveYAA()  local
 
 | 
| D | IsoChronology.java | 641             long days = Math.subtractExact(fieldValues.remove(DAY_OF_MONTH), 1);  in resolveYMD()  local676     public Period period(int years, int months, int days) {  in period()
 
 | 
| D | JapaneseChronology.java | 478             long days = Math.subtractExact(fieldValues.remove(DAY_OF_MONTH), 1);  in resolveYMD()  local510             long days = Math.subtractExact(fieldValues.remove(DAY_OF_YEAR), 1);  in resolveYD()  local
 
 | 
| D | HijrahDate.java | 546     HijrahDate plusDays(long days) {  in plusDays()591         int days = end.dayOfMonth - this.dayOfMonth;  in until()  local
 
 | 
| D | ThaiBuddhistDate.java | 381     ThaiBuddhistDate plusDays(long days) {  in plusDays()
 | 
| D | MinguoDate.java | 381     MinguoDate plusDays(long days) {  in plusDays()
 | 
| D | ChronoLocalDateTimeImpl.java | 316     private ChronoLocalDateTimeImpl<D> plusDays(long days) {  in plusDays()
 | 
| D | Chronology.java | 716     default ChronoPeriod period(int years, int months, int days) {  in period()
 | 
| /libcore/luni/src/main/java/javax/xml/datatype/ | 
| D | DatatypeFactory.java | 235             final BigInteger days,  in newDuration()272             final int days,  in newDuration()
 414             long days = val / 24L;  in newDurationDayTime()  local
 432         BigInteger days = BigInteger.valueOf(val);  in newDurationDayTime()  local
 
 | 
| D | Duration.java | 902         BigInteger days = (BigInteger) getField(DatatypeConstants.DAYS);  in toString()  local
 | 
| /libcore/ojluni/src/test/java/time/tck/java/time/chrono/ | 
| D | CopticDate.java | 293     private CopticDate plusDays(long days) {  in plusDays()314         int days = end.day - this.day;  in until()  local
 
 | 
| /libcore/ojluni/src/main/java/java/nio/file/attribute/ | 
| D | FileTime.java | 316     private long toExcessNanos(long days) {  in toExcessNanos()359             long days = toDays();  in compareTo()  local
 
 | 
| /libcore/ojluni/src/main/java/java/time/temporal/ | 
| D | WeekFields.java | 760             int days = -offset + (dow - 1) + (wowby - 1) * 7;  in ofWeekBasedYear()  local988                 int days = localDow - localizedDayOfWeek(date);  // safe from overflow  in resolveWoM()  local
 995                 int days = localDow - localizedDayOfWeek(date);  // safe from overflow  in resolveWoM()  local
 1013                 int days = localDow - localizedDayOfWeek(date);  // safe from overflow  in resolveWoY()  local
 1018                 int days = localDow - localizedDayOfWeek(date);  // safe from overflow  in resolveWoY()  local
 
 | 
| /libcore/ojluni/src/main/java/sun/util/calendar/ | 
| D | AbstractCalendar.java | 120         long days = 0;          // fixed date  in getCalendarDate()  local383         long days = 0;  in normalizeTime()  local
 
 | 
| D | BaseCalendar.java | 232         int days = normalizeTime(bdate);  in normalize()  local336         int days = DAYS_IN_MONTH[month];  in getMonthLength()  local
 389         long days = dayOfMonth;  in getFixedDate()  local
 
 | 
| D | JulianCalendar.java | 160         long days = JULIAN_EPOCH - 1 + (365 * (y - 1)) + dayOfMonth;  in getFixedDate()  local
 | 
| /libcore/ojluni/src/test/java/time/test/java/time/zone/ | 
| D | TestZoneRules.java | 212 …public void test_EmptyTransitionList(int days, int offset, int stdOffset, int savings, boolean isD…  in test_EmptyTransitionList()
 | 
| /libcore/luni/src/test/java/libcore/javax/xml/datatype/ | 
| D | DatatypeFactoryTest.java | 209                 BigInteger months, BigInteger days, BigInteger hours,  in newDuration()
 | 
| /libcore/ojluni/annotations/hiddenapi/java/time/ | 
| D | OffsetDateTime.java | 293     public java.time.OffsetDateTime plusDays(long days) {  in plusDays()334     public java.time.OffsetDateTime minusDays(long days) {  in minusDays()
 
 |