Home | History | Annotate | Download | only in i18n

Lines Matching defs:age

238         double age = moonAge(origin, status);
243 if (age >= 0) {
247 age = moonAge(origin, status);
251 } while (age >= 0);
257 age = moonAge(origin, status);
261 } while (age < 0);
274 * Return the "age" of the moon at the given time; this is the difference
279 * @param time The time at which the moon's age is desired,
284 double age = 0;
291 return age;
296 age = gIslamicCalendarAstro->getMoonAge();
300 age = age * 180 / CalendarAstronomer::PI;
301 if (age > 180) {
302 age = age - 360;
305 return age;
410 double age = moonAge(internalGetTime(), status);
415 if ( days - startDate >= 28 && age > 0) {