/external/icu/android_icu4j/src/main/java/android/icu/util/ |
AnnualTimeZoneRule.java | 13 import android.icu.impl.Grego; 110 ruleDay = Grego.fieldsToDay(year, dateTimeRule.getRuleMonth(), dateTimeRule.getRuleDayOfMonth()); 116 ruleDay = Grego.fieldsToDay(year, dateTimeRule.getRuleMonth(), 1); 120 ruleDay = Grego.fieldsToDay(year, dateTimeRule.getRuleMonth(), 121 Grego.monthLength(year, dateTimeRule.getRuleMonth())); 130 if (month == Calendar.FEBRUARY && dom == 29 && !Grego.isLeapYear(year)) { 134 ruleDay = Grego.fieldsToDay(year, month, dom); 137 int dow = Grego.dayOfWeek(ruleDay); 147 long ruleTime = ruleDay * Grego.MILLIS_PER_DAY + dateTimeRule.getRuleMillisInDay(); 181 int[] fields = Grego.timeToFields(base, null) [all...] |
BasicTimeZone.java | 17 import android.icu.impl.Grego; 337 Grego.timeToFields(tzt.getTime(), dfields); 399 int dtfields[] = Grego.timeToFields(nextTransitionTime 401 int weekInMonth = Grego.getDayOfWeekInMonth(dtfields[0], dtfields[1], dtfields[2]); 430 dtfields = Grego.timeToFields(tr.getTime() 433 weekInMonth = Grego.getDayOfWeekInMonth(dtfields[0], dtfields[1], 463 dtfields = Grego.timeToFields(tr.getTime() 466 weekInMonth = Grego.getDayOfWeekInMonth(dtfields[0], dtfields[1],
|
SimpleTimeZone.java | 14 import android.icu.impl.Grego; 69 Grego.MILLIS_PER_HOUR); 138 Grego.MILLIS_PER_HOUR); 628 // Check the month before calling Grego.monthLength(). This 639 return getOffset(era, year, month, day, dayOfWeek, millis, Grego.monthLength(year, month)); 650 // Check the month before calling Grego.monthLength(). This 662 Grego.monthLength(year, month), Grego.previousMonthLength(year, month)); 681 || millis >= Grego.MILLIS_PER_DAY [all...] |
VTimeZone.java | 23 import android.icu.impl.Grego; 797 int fields[] = Grego.timeToFields(start.getTime(), null); [all...] |
RuleBasedTimeZone.java | 16 import android.icu.impl.Grego; 98 long time = Grego.fieldsToDay(year, month, day) * Grego.MILLIS_PER_DAY + milliseconds; 484 long lastTransitionTime = Grego.MIN_MILLIS; 494 long nextTransitionTime = Grego.MAX_MILLIS;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
AnnualTimeZoneRule.java | 12 import com.ibm.icu.impl.Grego; 120 ruleDay = Grego.fieldsToDay(year, dateTimeRule.getRuleMonth(), dateTimeRule.getRuleDayOfMonth()); 126 ruleDay = Grego.fieldsToDay(year, dateTimeRule.getRuleMonth(), 1); 130 ruleDay = Grego.fieldsToDay(year, dateTimeRule.getRuleMonth(), 131 Grego.monthLength(year, dateTimeRule.getRuleMonth())); 140 if (month == Calendar.FEBRUARY && dom == 29 && !Grego.isLeapYear(year)) { 144 ruleDay = Grego.fieldsToDay(year, month, dom); 147 int dow = Grego.dayOfWeek(ruleDay); 157 long ruleTime = ruleDay * Grego.MILLIS_PER_DAY + dateTimeRule.getRuleMillisInDay(); 194 int[] fields = Grego.timeToFields(base, null) [all...] |
BasicTimeZone.java | 16 import com.ibm.icu.impl.Grego; 346 Grego.timeToFields(tzt.getTime(), dfields); 410 int dtfields[] = Grego.timeToFields(nextTransitionTime 412 int weekInMonth = Grego.getDayOfWeekInMonth(dtfields[0], dtfields[1], dtfields[2]); 441 dtfields = Grego.timeToFields(tr.getTime() 444 weekInMonth = Grego.getDayOfWeekInMonth(dtfields[0], dtfields[1], 474 dtfields = Grego.timeToFields(tr.getTime() 477 weekInMonth = Grego.getDayOfWeekInMonth(dtfields[0], dtfields[1],
|
SimpleTimeZone.java | 13 import com.ibm.icu.impl.Grego; 72 Grego.MILLIS_PER_HOUR); 142 Grego.MILLIS_PER_HOUR); 649 // Check the month before calling Grego.monthLength(). This 660 return getOffset(era, year, month, day, dayOfWeek, millis, Grego.monthLength(year, month)); 671 // Check the month before calling Grego.monthLength(). This 683 Grego.monthLength(year, month), Grego.previousMonthLength(year, month)); 702 || millis >= Grego.MILLIS_PER_DAY [all...] |
VTimeZone.java | 22 import com.ibm.icu.impl.Grego; 828 int fields[] = Grego.timeToFields(start.getTime(), null); [all...] |
RuleBasedTimeZone.java | 15 import com.ibm.icu.impl.Grego; 103 long time = Grego.fieldsToDay(year, month, day) * Grego.MILLIS_PER_DAY + milliseconds; 509 long lastTransitionTime = Grego.MIN_MILLIS; 519 long nextTransitionTime = Grego.MAX_MILLIS;
|
/external/icu/icu4c/source/i18n/ |
gregoimp.h | 148 class Grego { 271 inline UBool Grego::isLeapYear(int32_t year) { 277 Grego::monthLength(int32_t year, int32_t month) { 282 Grego::previousMonthLength(int y, int m) { 286 inline void Grego::dayToFields(double day, int32_t& year, int32_t& month, 292 inline double Grego::julianDayToMillis(int32_t julian) 297 inline int32_t Grego::millisToJulianDay(double millis) { 301 inline int32_t Grego::gregorianShift(int32_t eyear) {
|
gregoimp.cpp | 80 const int16_t Grego::DAYS_BEFORE[24] = 84 const int8_t Grego::MONTH_LENGTH[24] = 88 double Grego::fieldsToDay(int32_t year, int32_t month, int32_t dom) { 99 void Grego::dayToFields(double day, int32_t& year, int32_t& month, 137 void Grego::timeToFields(UDate time, int32_t& year, int32_t& month, 145 int32_t Grego::dayOfWeek(double day) { 151 int32_t Grego::dayOfWeekInMonth(int32_t year, int32_t month, int32_t dom) {
|
tzrule.cpp | 274 ruleDay = Grego::fieldsToDay(year, fDateTimeRule->getRuleMonth(), fDateTimeRule->getRuleDayOfMonth()); 281 ruleDay = Grego::fieldsToDay(year, fDateTimeRule->getRuleMonth(), 1); 285 ruleDay = Grego::fieldsToDay(year, fDateTimeRule->getRuleMonth(), 286 Grego::monthLength(year, fDateTimeRule->getRuleMonth())); 295 if (month == UCAL_FEBRUARY && dom == 29 && !Grego::isLeapYear(year)) { 299 ruleDay = Grego::fieldsToDay(year, month, dom); 301 int32_t dow = Grego::dayOfWeek(ruleDay); 359 Grego::timeToFields(base, year, month, dom, dow, doy, mid); 383 Grego::timeToFields(base, year, month, dom, dow, doy, mid);
|
basictz.cpp | 167 Grego::timeToFields(nextTransitionTime + initialRaw + initialDst, 169 int32_t weekInMonth = Grego::dayOfWeekInMonth(year, month, dom); 194 Grego::timeToFields(tr.getTime() + tr.getFrom()->getRawOffset() + tr.getFrom()->getDSTSavings(), 196 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom); 225 Grego::timeToFields(tr.getTime() + tr.getFrom()->getRawOffset() + tr.getFrom()->getDSTSavings(), 227 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom); 482 Grego::timeToFields(tzt.getTime(), year, month, dom, dow, doy, mid);
|
olsontz.cpp | 244 finalStartMillis = Grego::fieldsToDay(finalStartYear, 0, 1) * U_MILLIS_PER_DAY; 341 Grego::monthLength(year, month), 382 UDate date = (UDate)(Grego::fieldsToDay(year, month, dom) * U_MILLIS_PER_DAY + millis); 444 Grego::dayToFields(days, year, month, dom, dow); 573 Grego::timeToFields(current, year, month, dom, dow, doy, mid); 576 double start = Grego::fieldsToDay(year, 0, 1) * SECONDS_PER_DAY; 577 double limit = Grego::fieldsToDay(year+1, 0, 1) * SECONDS_PER_DAY; [all...] |
simpletz.cpp | 48 // For actual getOffset() calculations, use Grego::monthLength() and 49 // Grego::previousMonthLength() which take leap years into account. 398 // Check the month before calling Grego::monthLength(). This 410 return getOffset(era, year, month, day, dayOfWeek, millis, Grego::monthLength(year, month), status); 418 // Check the month before calling Grego::monthLength(). This 435 Grego::monthLength(year, month), 436 Grego::previousMonthLength(year, month), 522 Grego::dayToFields(day, year, month, dom, dow); 526 Grego::monthLength(year, month), 551 Grego::dayToFields(day, year, month, dom, dow) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
OlsonTimeZone.java | 132 return getOffset(era, year, month, day, dayOfWeek, milliseconds, Grego.monthLength(year, month)); 149 || millis >= Grego.MILLIS_PER_DAY 164 long time = Grego.fieldsToDay(year, month, dom) * Grego.MILLIS_PER_DAY + millis; 235 stz.setEndRule(11, 31, Grego.MILLIS_PER_DAY - 1); 239 int[] fields = Grego.timeToFields(current, null); 242 finalStartMillis = Grego.fieldsToDay(fields[0], 0, 1); 319 int[] fields = Grego.timeToFields(current, null); 322 long start = Grego.fieldsToDay(fields[0], 0, 1) * SECONDS_PER_DAY; 323 long limit = Grego.fieldsToDay(fields[0] + 1, 0, 1) * SECONDS_PER_DAY [all...] |
Grego.java | 9 * Partial port from ICU4C's Grego class in i18n/gregoimp.h. 15 * port of ICU4C's Grego class (yet). 33 public class Grego {
|
EraRules.java | 215 int[] fields = Grego.timeToFields(System.currentTimeMillis(), null);
|
JavaTimeZone.java | 125 Grego.timeToFields(date, fields);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
OlsonTimeZone.java | 130 return getOffset(era, year, month, day, dayOfWeek, milliseconds, Grego.monthLength(year, month)); 147 || millis >= Grego.MILLIS_PER_DAY 162 long time = Grego.fieldsToDay(year, month, dom) * Grego.MILLIS_PER_DAY + millis; 233 stz.setEndRule(11, 31, Grego.MILLIS_PER_DAY - 1); 237 int[] fields = Grego.timeToFields(current, null); 240 finalStartMillis = Grego.fieldsToDay(fields[0], 0, 1); 317 int[] fields = Grego.timeToFields(current, null); 320 long start = Grego.fieldsToDay(fields[0], 0, 1) * SECONDS_PER_DAY; 321 long limit = Grego.fieldsToDay(fields[0] + 1, 0, 1) * SECONDS_PER_DAY [all...] |
Grego.java | 8 * Partial port from ICU4C's Grego class in i18n/gregoimp.h. 14 * port of ICU4C's Grego class (yet). 31 public class Grego {
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
CurrencyMetaInfo.java | 17 import android.icu.impl.Grego; 543 return Grego.timeToString(date);
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/ |
TimeZoneJDK.java | 17 import com.ibm.icu.impl.Grego; 105 Grego.timeToFields(date, fields);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
CurrencyMetaInfo.java | 16 import com.ibm.icu.impl.Grego; 585 return Grego.timeToString(date);
|