Lines Matching defs:TimeOfDay
7920 struct TimeOfDay struct
7950 auto tod = TimeOfDay(0, 0); argument
7957 auto tod = TimeOfDay(12, 30, 33); argument
7964 auto tod = TimeOfDay(23, 59, 59); argument
7986 int opCmp(in TimeOfDay rhs) const @safe pure nothrow @nogc in opCmp() argument
8036 const ctod = TimeOfDay(12, 30, 33); argument
8037 immutable itod = TimeOfDay(12, 30, 33); argument
8053 assert(TimeOfDay.init.hour == 0); argument
8056 const ctod = TimeOfDay(12, 0, 0); argument
8057 immutable itod = TimeOfDay(12, 0, 0); argument
8081 assertThrown!DateTimeException((){TimeOfDay(0, 0, 0).hour = 24;}()); in hour() argument
8083 auto tod = TimeOfDay(0, 0, 0); in hour() argument
8087 const ctod = TimeOfDay(0, 0, 0); in hour() argument
8088 immutable itod = TimeOfDay(0, 0, 0); in hour() argument
8104 assert(TimeOfDay.init.minute == 0); in hour() argument
8107 const ctod = TimeOfDay(0, 30, 0); in hour() argument
8108 immutable itod = TimeOfDay(0, 30, 0); in hour() argument
8132 assertThrown!DateTimeException((){TimeOfDay(0, 0, 0).minute = 60;}()); argument
8134 auto tod = TimeOfDay(0, 0, 0); argument
8138 const ctod = TimeOfDay(0, 0, 0); argument
8139 immutable itod = TimeOfDay(0, 0, 0); argument
8155 assert(TimeOfDay.init.second == 0); argument
8158 const ctod = TimeOfDay(0, 0, 33); argument
8159 immutable itod = TimeOfDay(0, 0, 33); argument
8183 assertThrown!DateTimeException((){TimeOfDay(0, 0, 0).second = 60;}()); in second() argument
8185 auto tod = TimeOfDay(0, 0, 0); in second() argument
8189 const ctod = TimeOfDay(0, 0, 0); in second() argument
8190 immutable itod = TimeOfDay(0, 0, 0); in second() argument
8221 auto tod1 = TimeOfDay(7, 12, 0); argument
8225 auto tod2 = TimeOfDay(7, 12, 0); argument
8229 auto tod3 = TimeOfDay(23, 59, 0); argument
8233 auto tod4 = TimeOfDay(0, 0, 0); argument
8237 auto tod5 = TimeOfDay(23, 59, 59); argument
8241 auto tod6 = TimeOfDay(0, 0, 0); argument
8248 auto tod = TimeOfDay(12, 27, 2); argument
8252 const ctod = TimeOfDay(0, 0, 0); argument
8253 immutable itod = TimeOfDay(0, 0, 0); argument
8284 … static void testTOD(TimeOfDay orig, int minutes, in TimeOfDay expected, size_t line = __LINE__) argument
8355 auto tod = TimeOfDay(12, 27, 2); argument
8359 const ctod = TimeOfDay(0, 0, 0); argument
8360 immutable itod = TimeOfDay(0, 0, 0); argument
8428 auto tod = TimeOfDay(12, 27, 2); argument
8432 const ctod = TimeOfDay(0, 0, 0); argument
8433 immutable itod = TimeOfDay(0, 0, 0); argument
8458 TimeOfDay retval = this; argument
8468 assert(TimeOfDay(12, 12, 12) + seconds(1) == TimeOfDay(12, 12, 13)); argument
8481 auto tod = TimeOfDay(12, 30, 33); argument
8512 const ctod = TimeOfDay(12, 30, 33); argument
8513 immutable itod = TimeOfDay(12, 30, 33); argument
8552 assert(TimeOfDay(12, 30, 33) + dur!"hours"(7) == TimeOfDay(19, 30, 33)); argument
8580 auto tod = TimeOfDay(19, 17, 22); argument
8584 const ctod = TimeOfDay(12, 33, 30); argument
8585 immutable itod = TimeOfDay(12, 33, 30); argument
8617 auto tod = TimeOfDay(12, 30, 33); argument
8628 const ctod = TimeOfDay(12, 30, 33); argument
8629 immutable itod = TimeOfDay(12, 30, 33); argument
8659 assert(TimeOfDay(0, 0, 0).toISOString() == "000000"); argument
8665 auto tod = TimeOfDay(12, 30, 33); argument
8666 const ctod = TimeOfDay(12, 30, 33); argument
8667 immutable itod = TimeOfDay(12, 30, 33); argument
8689 assert(TimeOfDay(0, 0, 0).toISOExtString() == "00:00:00"); argument
8695 auto tod = TimeOfDay(12, 30, 33); argument
8696 const ctod = TimeOfDay(12, 30, 33); argument
8697 immutable itod = TimeOfDay(12, 30, 33); argument
8734 auto tod = TimeOfDay(12, 30, 33); argument
8735 const ctod = TimeOfDay(12, 30, 33); argument
8736 immutable itod = TimeOfDay(12, 30, 33); argument
8780 return TimeOfDay(hours, minutes, seconds); argument
8907 return TimeOfDay(to!int(hours), to!int(minutes), to!int(seconds)); argument
8997 @property static TimeOfDay min() @safe pure nothrow @nogc in min() argument
9014 @property static TimeOfDay max() @safe pure nothrow @nogc in max() argument
9165 ubyte _minute;
9166 ubyte _second;
9168 enum ubyte maxHour = 24 - 1;
9169 enum ubyte maxMinute = 60 - 1;
9170 enum ubyte maxSecond = 60 - 1;