Lines Matching refs:t
248 std::string toISO8061ExtendedStr(std::chrono::duration<IntType, Period> t) in toISO8061ExtendedStr() argument
257 days d = std::chrono::duration_cast<days>(t); in toISO8061ExtendedStr()
260 t -= d; in toISO8061ExtendedStr()
274 t = days(1) - std::chrono::duration<IntType, Period>(1); in toISO8061ExtendedStr()
281 t = std::chrono::duration<IntType, Period>::zero(); in toISO8061ExtendedStr()
284 hours hr = duration_cast<hours>(t); in toISO8061ExtendedStr()
285 t -= hr; in toISO8061ExtendedStr()
287 minutes mt = duration_cast<minutes>(t); in toISO8061ExtendedStr()
288 t -= mt; in toISO8061ExtendedStr()
290 seconds se = duration_cast<seconds>(t); in toISO8061ExtendedStr()
292 t -= se; in toISO8061ExtendedStr()
295 if constexpr (std::is_same_v<typename decltype(t)::period, std::milli>) in toISO8061ExtendedStr()
298 MilliDuration subsec = duration_cast<MilliDuration>(t); in toISO8061ExtendedStr()
301 else if constexpr (std::is_same_v<typename decltype(t)::period, std::micro>) in toISO8061ExtendedStr()
304 MicroDuration subsec = duration_cast<MicroDuration>(t); in toISO8061ExtendedStr()