/external/icu/icu4c/source/test/cintltst/ |
cdtdptst.c | 228 * Verify the handling of Czech June and July, which have the unique attribute that 238 UDate june, july, d; local 263 june=ucal_getMillis(cal, &status); 267 juneStr = myDateFormat(fmt, june); 278 UChar* out1 = myDateFormat(fmt, june); 281 log_err("Error in handling the czech month june\n"); 283 log_verbose("Pass: Date = %s (czech month June)\n", aescstrdup(date, -1));
|
/external/python/cpython3/Lib/test/ |
test_enum.py | 695 SummerMonth = Enum('SummerMonth', 'june july august') 700 [SummerMonth.june, SummerMonth.july, SummerMonth.august], 703 for i, month in enumerate('june july august'.split(), 1): 712 SummerMonth = Enum('SummerMonth', 'june july august', start=10) 717 [SummerMonth.june, SummerMonth.july, SummerMonth.august], 720 for i, month in enumerate('june july august'.split(), 10): 729 SummerMonth = Enum('SummerMonth', ['june', 'july', 'august']) 734 [SummerMonth.june, SummerMonth.july, SummerMonth.august], 737 for i, month in enumerate('june july august'.split(), 1): 746 SummerMonth = Enum('SummerMonth', ['june', 'july', 'august'], start=20 [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
DateFormatTest.java | 1676 Date june = cal.getTime(); local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
DateFormatTest.java | 1673 Date june = cal.getTime(); local [all...] |
/external/icu/icu4c/source/test/intltest/ |
dtfmttst.cpp | 820 * Verify the handling of Czech June and July, which have the unique attribute that 835 UDate june = date(97, UCAL_JUNE, 15); local 837 UnicodeString juneStr; fmt->format(june, juneStr); 840 logln((UnicodeString)"format(June 15 1997) = " + juneStr); 845 if (month != UCAL_JUNE) errln((UnicodeString)"FAIL: Month should be June"); [all...] |