Home | History | Annotate | Download | only in i18n

Lines Matching refs:days

192 * Return the day # on which the given year starts.  Days are counted
204 * Return the day # on which the given month starts. Days are counted
313 * Return the length (in days) of the given month.
336 * Return the number of days in the given Islamic year
396 int32_t days = julianDay - 1948440;
400 year = (int)ClockMath::floorDivide( (double)(30 * days + 10646) , 10631.0 );
401 month = (int32_t)uprv_ceil((days - 29 - yearStart(year)) / 29.5 );
406 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH);
415 if ( days - startDate >= 28 && age > 0) {
422 while ((startDate = trueMonthStart(months)) > days) {
431 dayOfMonth = (days - monthStart(year, month)) + 1;
434 dayOfYear = (days - monthStart(year, 0) + 1);