/external/icu/android_icu4j/src/main/java/android/icu/text/ |
ChineseDateFormatSymbols.java | 40 String[] isLeapMonth; 102 return isLeapMonth[leap]; 121 this.isLeapMonth = ((ChineseDateFormatSymbols)dfs).isLeapMonth; 129 //isLeapMonth = calData.getStringArray("isLeapMonth"); 132 isLeapMonth = new String[2]; 133 isLeapMonth[0] = ""; 134 isLeapMonth[1] = (leapMonthPatterns != null)? leapMonthPatterns[DT_LEAP_MONTH_PATTERN_FORMAT_WIDE].replace("{0}", ""): "";
|
SimpleDateFormat.java | [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
ChineseDateFormatSymbols.java | 38 String[] isLeapMonth; 100 return isLeapMonth[leap]; 119 this.isLeapMonth = ((ChineseDateFormatSymbols)dfs).isLeapMonth; 127 //isLeapMonth = calData.getStringArray("isLeapMonth"); 130 isLeapMonth = new String[2]; 131 isLeapMonth[0] = ""; 132 isLeapMonth[1] = (leapMonthPatterns != null)? leapMonthPatterns[DT_LEAP_MONTH_PATTERN_FORMAT_WIDE].replace("{0}", ""): "";
|
SimpleDateFormat.java | [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
ChineseTestCase.java | 29 * @param isLeapMonth if true, treat month as a leap month 37 boolean isLeapMonth, int dayOfMonth, int dayOfWeek) { 44 set(Calendar.IS_LEAP_MONTH, isLeapMonth?1:0);
|
DangiTest.java | 93 int yE = DATA[i++]; // Expected y, m, isLeapMonth, d 192 // (field, value)+, END, exp.month, exp.isLeapMonth, exp.DOM 239 int isLeapMonth = cal.get(Calendar.IS_LEAP_MONTH); 241 if (expMonth == month && expIsLeapMonth == isLeapMonth && 252 "=" + (month+1) + "," + isLeapMonth + "," + dom + 387 static public String ymdToString(int year, int month, int isLeapMonth, int day) { 388 return "" + year + "/" + (month + 1) + ((isLeapMonth != 0) ? "(leap)" : "") + "/" + day;
|
ChineseTest.java | 113 int yE = DATA[i++]; // Expected y, m, isLeapMonth, d 317 // (field, value)+, END, exp.month, exp.isLeapMonth, exp.DOM 376 int isLeapMonth = cal.get(Calendar.IS_LEAP_MONTH); 378 if (expMonth == month && expIsLeapMonth == isLeapMonth && 389 "=" + (month+1) + "," + isLeapMonth + "," + dom + 533 static public String ymdToString(int year, int month, int isLeapMonth, int day) { 535 ((isLeapMonth!=0)?"(leap)":"") + 567 // new ChineseCalendar(int year, int month, int isLeapMonth, int date) 570 errln("could not create ChineseCalendar with year,month,isLeapMonth,date"); 576 errln("ChineseCalendar was initialized incorrectly with year,month,isLeapMonth,date") [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
ChineseTestCase.java | 26 * @param isLeapMonth if true, treat month as a leap month 34 boolean isLeapMonth, int dayOfMonth, int dayOfWeek) { 41 set(Calendar.IS_LEAP_MONTH, isLeapMonth?1:0);
|
DangiTest.java | 90 int yE = DATA[i++]; // Expected y, m, isLeapMonth, d 189 // (field, value)+, END, exp.month, exp.isLeapMonth, exp.DOM 236 int isLeapMonth = cal.get(Calendar.IS_LEAP_MONTH); 238 if (expMonth == month && expIsLeapMonth == isLeapMonth && 249 "=" + (month+1) + "," + isLeapMonth + "," + dom + 384 static public String ymdToString(int year, int month, int isLeapMonth, int day) { 385 return "" + year + "/" + (month + 1) + ((isLeapMonth != 0) ? "(leap)" : "") + "/" + day;
|
ChineseTest.java | 110 int yE = DATA[i++]; // Expected y, m, isLeapMonth, d 314 // (field, value)+, END, exp.month, exp.isLeapMonth, exp.DOM 373 int isLeapMonth = cal.get(Calendar.IS_LEAP_MONTH); 375 if (expMonth == month && expIsLeapMonth == isLeapMonth && 386 "=" + (month+1) + "," + isLeapMonth + "," + dom + 530 static public String ymdToString(int year, int month, int isLeapMonth, int day) { 532 ((isLeapMonth!=0)?"(leap)":"") + 564 // new ChineseCalendar(int year, int month, int isLeapMonth, int date) 567 errln("could not create ChineseCalendar with year,month,isLeapMonth,date"); 573 errln("ChineseCalendar was initialized incorrectly with year,month,isLeapMonth,date") [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
ChineseCalendar.java | 170 * @param isLeapMonth The value used to set the Chinese calendar's {@link #IS_LEAP_MONTH} 175 public ChineseCalendar(int year, int month, int isLeapMonth, int date) { 176 this(year, month, isLeapMonth, date, 0, 0, 0); 186 * @param isLeapMonth the value used to set the {@link #IS_LEAP_MONTH} time field 197 public ChineseCalendar(int year, int month, int isLeapMonth, int date, int hour, 211 this.set(IS_LEAP_MONTH, isLeapMonth); 226 * @param isLeapMonth The value used to set the Chinese calendar's {@link #IS_LEAP_MONTH} 231 public ChineseCalendar(int era, int year, int month, int isLeapMonth, int date) 233 this(era, year, month, isLeapMonth, date, 0, 0, 0); 244 * @param isLeapMonth the value used to set the {@link #IS_LEAP_MONTH} time field [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
ChineseCalendar.java | 172 * @param isLeapMonth The value used to set the Chinese calendar's {@link #IS_LEAP_MONTH} 178 public ChineseCalendar(int year, int month, int isLeapMonth, int date) { 179 this(year, month, isLeapMonth, date, 0, 0, 0); 189 * @param isLeapMonth the value used to set the {@link #IS_LEAP_MONTH} time field 201 public ChineseCalendar(int year, int month, int isLeapMonth, int date, int hour, 215 this.set(IS_LEAP_MONTH, isLeapMonth); 230 * @param isLeapMonth The value used to set the Chinese calendar's {@link #IS_LEAP_MONTH} 236 public ChineseCalendar(int era, int year, int month, int isLeapMonth, int date) 238 this(era, year, month, isLeapMonth, date, 0, 0, 0); 249 * @param isLeapMonth the value used to set the {@link #IS_LEAP_MONTH} time field [all...] |
/external/icu/icu4c/source/i18n/ |
chnsecal.cpp | 346 int32_t isLeapMonth = useMonth ? saveIsLeapMonth : 0; 358 isLeapMonth != internalGet(UCAL_IS_LEAP_MONTH)) { 706 UBool isLeapMonth = isLeapYear && 711 internalSet(UCAL_IS_LEAP_MONTH, isLeapMonth?1:0);
|
smpdtfmt.cpp | [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
DateFormatTest.java | [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
DateFormatTest.java | [all...] |
/external/icu/icu4c/source/test/intltest/ |
dtfmttst.cpp | [all...] |
/external/cldr/tools/java/libs/ |
icu4j.jar | |