Home
last modified time | relevance | path

Searched refs:SECONDS_PER_MINUTE (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview_lite/
H A Dhiview_def.h33 #define SECONDS_PER_MINUTE 60 macro
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dpanel_view.h60 static const uint8_t SECONDS_PER_MINUTE; variable
H A Dvideo_view.cpp499 uint8_t minutes = remainSeconds / PanelView::SECONDS_PER_MINUTE; in FormatTime()
500 uint8_t seconds = remainSeconds % PanelView::SECONDS_PER_MINUTE; in FormatTime()
H A Dpanel_view.cpp26 const uint8_t PanelView::SECONDS_PER_MINUTE = 60; member in OHOS::ACELite::PanelView
/ohos5.0/base/hiviewdfx/hiview/base/utility/include/
H A Dtime_util.h31 constexpr int SECONDS_PER_MINUTE = 60; // 60 seconds variable
/ohos5.0/base/hiviewdfx/hiview/plugins/sysevent_source/include/
H A Dplatform_monitor.h82 uint32_t collectPeriod_ = 5 * TimeUtil::SECONDS_PER_MINUTE; // 5 minute
/ohos5.0/base/hiviewdfx/hievent_lite/frameworks/
H A Dhiview_output_event.c421 mte = time % SECONDS_PER_HOUR / SECONDS_PER_MINUTE; in EventContentFmt()
422 sec = time % SECONDS_PER_MINUTE; in EventContentFmt()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/video/
H A Dvideo_pattern.cpp65 constexpr uint32_t SECONDS_PER_MINUTE = 60; variable
91 auto minutes = (time % SECONDS_PER_HOUR) / SECONDS_PER_MINUTE; in IntTimeToText()
92 auto seconds = time % SECONDS_PER_MINUTE; in IntTimeToText()