Home | History | Annotate | Download | only in i18n

Lines Matching defs:age

242         double age = moonAge(origin, status);
247 if (age >= 0) {
251 age = moonAge(origin, status);
255 } while (age >= 0);
261 age = moonAge(origin, status);
265 } while (age < 0);
278 * Return the "age" of the moon at the given time; this is the difference
283 * @param time The time at which the moon's age is desired,
288 double age = 0;
295 return age;
300 age = gIslamicCalendarAstro->getMoonAge();
304 age = age * 180 / CalendarAstronomer::PI;
305 if (age > 180) {
306 age = age - 360;
309 return age;
414 double age = moonAge(internalGetTime(), status);
419 if ( days - startDate >= 25 && age > 0) {