Home | History | Annotate | Download | only in i18n

Lines Matching refs:age

426         double age = moonAge(origin, status);
431 if (age >= 0) {
435 age = moonAge(origin, status);
439 } while (age >= 0);
445 age = moonAge(origin, status);
449 } while (age < 0);
462 * Return the "age" of the moon at the given time; this is the difference
467 * @param time The time at which the moon's age is desired,
472 double age = 0;
479 return age;
484 age = gIslamicCalendarAstro->getMoonAge();
488 age = age * 180 / CalendarAstronomer::PI;
489 if (age > 180) {
490 age = age - 360;
493 return age;
625 double age = moonAge(internalGetTime(), status);
630 if ( days - startDate >= 25 && age > 0) {