Lines Matching refs:CIVIL
81 if(civil==CIVIL) {
82 return "islamic-civil";
94 civil(beCivil)
99 IslamicCalendar::IslamicCalendar(const IslamicCalendar& other) : Calendar(other), civil(other.civil) {
107 * Determines whether this object uses the fixed-cycle Islamic civil calendar
110 * @param beCivil <code>true</code> to use the civil calendar,
116 if (civil != beCivil) {
120 civil = beCivil;
127 * Returns <code>true</code> if this object is using the fixed-cycle civil
133 return (civil == CIVIL);
187 * Determine whether a year is a leap year in the Islamic civil calendar
199 if (civil == CIVIL) {
214 if (civil == CIVIL) {
326 if (civil == CIVIL) {
343 if (civil == CIVIL) {
401 if (civil == CIVIL) {
402 // Use the civil calendar approximation, which is just arithmetic
524 IslamicCalendar calendar(Locale("@calendar=islamic-civil"),status);