Home | History | Annotate | Download | only in i18n

Lines Matching defs:days

144 // a month as having 31 days. Since date parsing now uses range checks based
195 * Return the day # on which the given year starts. Days are counted
207 * Return the day # on which the given month starts. Days are counted
316 * Return the length (in days) of the given month.
339 * Return the number of days in the given Islamic year
399 int32_t days = julianDay - 1948440;
403 year = (int)ClockMath::floorDivide( (double)(30 * days + 10646) , 10631.0 );
404 month = (int32_t)uprv_ceil((days - 29 - yearStart(year)) / 29.5 );
409 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH);
418 if ( days - startDate >= 25 && age > 0) {
425 while ((startDate = trueMonthStart(months)) > days) {
434 dayOfMonth = (days - monthStart(year, month)) + 1;
437 dayOfYear = (days - monthStart(year, 0) + 1);