Lines Matching refs:utcTime
43 struct tm utcTime = timePair.first;
49 now << FixedTime(utcTime.tm_year + BASE_YEAR, fixedTimeWidth4);
51 now << FixedTime(utcTime.tm_mon + 1, fixedTimeWidth2);
53 now << FixedTime(utcTime.tm_mday, fixedTimeWidth2);
55 now << FixedTime(utcTime.tm_hour, fixedTimeWidth2) ;
57 now << FixedTime(utcTime.tm_min, fixedTimeWidth2);
59 now << FixedTime(utcTime.tm_sec, fixedTimeWidth2);
86 struct tm utcTime;
87 LocalDate::GmTimeSafe(utcTime, time);
88 std::pair<tm, int64_t> timePair = std::make_pair(utcTime, ms);