Home | History | Annotate | Download | only in i18n

Lines Matching refs:age

241         double age = moonAge(origin, status);
246 if (age >= 0) {
250 age = moonAge(origin, status);
254 } while (age >= 0);
260 age = moonAge(origin, status);
264 } while (age < 0);
277 * Return the "age" of the moon at the given time; this is the difference
282 * @param time The time at which the moon's age is desired,
287 double age = 0;
294 return age;
299 age = gIslamicCalendarAstro->getMoonAge();
303 age = age * 180 / CalendarAstronomer::PI;
304 if (age > 180) {
305 age = age - 360;
308 return age;
413 double age = moonAge(internalGetTime(), status);
418 if ( days - startDate >= 25 && age > 0) {