Searched refs:SECONDS_PER_MINUTE (Results 1 – 8 of 8) sorted by relevance
33 #define SECONDS_PER_MINUTE 60 macro
60 static const uint8_t SECONDS_PER_MINUTE; variable
499 uint8_t minutes = remainSeconds / PanelView::SECONDS_PER_MINUTE; in FormatTime()500 uint8_t seconds = remainSeconds % PanelView::SECONDS_PER_MINUTE; in FormatTime()
26 const uint8_t PanelView::SECONDS_PER_MINUTE = 60; member in OHOS::ACELite::PanelView
31 constexpr int SECONDS_PER_MINUTE = 60; // 60 seconds variable
82 uint32_t collectPeriod_ = 5 * TimeUtil::SECONDS_PER_MINUTE; // 5 minute
421 mte = time % SECONDS_PER_HOUR / SECONDS_PER_MINUTE; in EventContentFmt()422 sec = time % SECONDS_PER_MINUTE; in EventContentFmt()
65 constexpr uint32_t SECONDS_PER_MINUTE = 60; variable91 auto minutes = (time % SECONDS_PER_HOUR) / SECONDS_PER_MINUTE; in IntTimeToText()92 auto seconds = time % SECONDS_PER_MINUTE; in IntTimeToText()