Lines Matching refs:timer
82 char timer[10] = {0}; // 10:timer length
83 if (!GetTimerFromMSecond(duration_, timer, sizeof(timer))) {
86 totalTimeLabel_->SetText(&timer[0]);
621 char timer[10] = {0}; // 10:timer length
622 if (!GetTimerFromMSecond(currentValue, timer, sizeof(timer))) {
625 currentTimeLabel_->SetText(&timer[0]);
675 bool UIVideo::GetTimerFromMSecond(int64_t currentTime, char* timer, int32_t len)
682 ret = sprintf_s(timer, len, "%02d:%02d:%02d", hour, minute, second);
695 char timer[10] = {0}; // 10:timer length
696 if (!video_->GetTimerFromMSecond(currentTime, timer, sizeof(timer))) {
699 timeLabel_->SetText(&timer[0]);