Home
last modified time | relevance | path

Searched refs:LENGTH_HOUR (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/global/i18n_lite/frameworks/i18n/src/
H A Ddate_time_format_impl.cpp339 int32_t index = (time.tm_hour < LENGTH_HOUR) ? 0 : 1; in ProcessTime()
347 int32_t hour = (time.tm_hour == 0) ? LENGTH_HOUR : time.tm_hour; in ProcessTime()
348 int32_t index = (hour > LENGTH_HOUR) ? (hour - LENGTH_HOUR) : hour; in ProcessTime()
359 int32_t index = (hour >= LENGTH_HOUR) ? (hour - LENGTH_HOUR) : hour; in ProcessTime()
/ohos5.0/base/global/i18n_lite/frameworks/i18n/include/
H A Ddate_time_format_impl.h30 #define LENGTH_HOUR 12 macro