Home
last modified time | relevance | path

Searched refs:periodType (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java1943 DayPeriodRules.DayPeriod periodType; in subFormat() local
1945 periodType = DayPeriodRules.DayPeriod.MIDNIGHT; in subFormat()
1947 periodType = DayPeriodRules.DayPeriod.NOON; in subFormat()
1949 periodType = ruleSet.getDayPeriodForHour(hour); in subFormat()
1957 assert(periodType != null); in subFormat()
1961 … if (periodType != DayPeriodRules.DayPeriod.AM && periodType != DayPeriodRules.DayPeriod.PM && in subFormat()
1962 periodType != DayPeriodRules.DayPeriod.MIDNIGHT) { in subFormat()
1963 index = periodType.ordinal(); in subFormat()
1979 (periodType == DayPeriodRules.DayPeriod.MIDNIGHT || in subFormat()
1980 periodType == DayPeriodRules.DayPeriod.NOON)) { in subFormat()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java1933 DayPeriodRules.DayPeriod periodType; in subFormat() local
1935 periodType = DayPeriodRules.DayPeriod.MIDNIGHT; in subFormat()
1937 periodType = DayPeriodRules.DayPeriod.NOON; in subFormat()
1939 periodType = ruleSet.getDayPeriodForHour(hour); in subFormat()
1947 assert(periodType != null); in subFormat()
1951 … if (periodType != DayPeriodRules.DayPeriod.AM && periodType != DayPeriodRules.DayPeriod.PM && in subFormat()
1952 periodType != DayPeriodRules.DayPeriod.MIDNIGHT) { in subFormat()
1953 index = periodType.ordinal(); in subFormat()
1969 (periodType == DayPeriodRules.DayPeriod.MIDNIGHT || in subFormat()
1970 periodType == DayPeriodRules.DayPeriod.NOON)) { in subFormat()
[all …]
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp1892 DayPeriodRules::DayPeriod periodType; in subFormat() local
1894 periodType = DayPeriodRules::DAYPERIOD_MIDNIGHT; in subFormat()
1896 periodType = DayPeriodRules::DAYPERIOD_NOON; in subFormat()
1898 periodType = ruleSet->getDayPeriodForHour(hour); in subFormat()
1903 U_ASSERT(periodType != DayPeriodRules::DAYPERIOD_UNKNOWN); in subFormat()
1910 if (periodType != DayPeriodRules::DAYPERIOD_AM && in subFormat()
1911 periodType != DayPeriodRules::DAYPERIOD_PM && in subFormat()
1912 periodType != DayPeriodRules::DAYPERIOD_MIDNIGHT) { in subFormat()
1913 index = (int32_t)periodType; in subFormat()
1928 (periodType == DayPeriodRules::DAYPERIOD_MIDNIGHT || in subFormat()
[all …]