Lines Matching refs:stdTime
493 stdTime = The number of hnsecs since midnight, January 1st, 1 A.D.
499 this(long stdTime, immutable TimeZone tz = null) @safe pure nothrow
501 _stdTime = stdTime;
507 static void test(long stdTime, immutable TimeZone tz) in test()
509 auto sysTime = SysTime(stdTime, tz); in test()
510 assert(sysTime._stdTime == stdTime); in test()
511 …assert(sysTime._timezone is (tz is null ? LocalTime() : tz), format("Given stdTime: %s", stdTime)); in test()
514 foreach (stdTime; [-1234567890L, -250, 0, 250, 1235657390L]) in foreach()
517 test(stdTime, tz);
8914 stdTime = The std time to convert. in unixTimeToStdTime()
8923 T stdTimeToUnixTime(T = time_t)(long stdTime) @safe pure nothrow in unixTimeToStdTime()
8926 immutable unixTime = convert!("hnsecs", "seconds")(stdTime - 621_355_968_000_000_000L); in unixTimeToStdTime()