Lines Matching defs:TimeOfDay
8309 struct TimeOfDay struct
8339 auto tod = TimeOfDay(0, 0); argument
8346 auto tod = TimeOfDay(12, 30, 33); argument
8353 auto tod = TimeOfDay(23, 59, 59); argument
8375 int opCmp(TimeOfDay rhs) const @safe pure nothrow @nogc in opCmp() argument
8425 const ctod = TimeOfDay(12, 30, 33); argument
8426 immutable itod = TimeOfDay(12, 30, 33); argument
8442 assert(TimeOfDay.init.hour == 0); argument
8445 const ctod = TimeOfDay(12, 0, 0); argument
8446 immutable itod = TimeOfDay(12, 0, 0); argument
8470 assertThrown!DateTimeException((){TimeOfDay(0, 0, 0).hour = 24;}()); in hour() argument
8472 auto tod = TimeOfDay(0, 0, 0); in hour() argument
8476 const ctod = TimeOfDay(0, 0, 0); in hour() argument
8477 immutable itod = TimeOfDay(0, 0, 0); in hour() argument
8493 assert(TimeOfDay.init.minute == 0); in hour() argument
8496 const ctod = TimeOfDay(0, 30, 0); in hour() argument
8497 immutable itod = TimeOfDay(0, 30, 0); in hour() argument
8521 assertThrown!DateTimeException((){TimeOfDay(0, 0, 0).minute = 60;}()); argument
8523 auto tod = TimeOfDay(0, 0, 0); argument
8527 const ctod = TimeOfDay(0, 0, 0); argument
8528 immutable itod = TimeOfDay(0, 0, 0); argument
8544 assert(TimeOfDay.init.second == 0); argument
8547 const ctod = TimeOfDay(0, 0, 33); argument
8548 immutable itod = TimeOfDay(0, 0, 33); argument
8572 assertThrown!DateTimeException((){TimeOfDay(0, 0, 0).second = 60;}()); in second() argument
8574 auto tod = TimeOfDay(0, 0, 0); in second() argument
8578 const ctod = TimeOfDay(0, 0, 0); in second() argument
8579 immutable itod = TimeOfDay(0, 0, 0); in second() argument
8614 auto tod1 = TimeOfDay(7, 12, 0); argument
8618 auto tod2 = TimeOfDay(7, 12, 0); argument
8622 auto tod3 = TimeOfDay(23, 59, 0); argument
8626 auto tod4 = TimeOfDay(0, 0, 0); argument
8630 auto tod5 = TimeOfDay(23, 59, 59); argument
8634 auto tod6 = TimeOfDay(0, 0, 0); argument
8641 auto tod = TimeOfDay(12, 27, 2); argument
8645 const ctod = TimeOfDay(0, 0, 0); argument
8646 immutable itod = TimeOfDay(0, 0, 0); argument
8677 static void testTOD(TimeOfDay orig, int minutes, TimeOfDay expected, size_t line = __LINE__) argument
8748 auto tod = TimeOfDay(12, 27, 2); argument
8752 const ctod = TimeOfDay(0, 0, 0); argument
8753 immutable itod = TimeOfDay(0, 0, 0); argument
8821 auto tod = TimeOfDay(12, 27, 2); argument
8825 const ctod = TimeOfDay(0, 0, 0); argument
8826 immutable itod = TimeOfDay(0, 0, 0); argument
8852 TimeOfDay retval = this; argument
8862 assert(TimeOfDay(12, 12, 12) + seconds(1) == TimeOfDay(12, 12, 13)); argument
8875 auto tod = TimeOfDay(12, 30, 33); argument
8907 const ctod = TimeOfDay(12, 30, 33); argument
8908 immutable itod = TimeOfDay(12, 30, 33); argument
8948 assert(TimeOfDay(12, 30, 33) + dur!"hours"(7) == TimeOfDay(19, 30, 33)); argument
8976 auto tod = TimeOfDay(19, 17, 22); argument
8980 const ctod = TimeOfDay(12, 33, 30); argument
8981 immutable itod = TimeOfDay(12, 33, 30); argument
9014 auto tod = TimeOfDay(12, 30, 33); argument
9026 const ctod = TimeOfDay(12, 30, 33); argument
9027 immutable itod = TimeOfDay(12, 30, 33); argument
9074 assert(TimeOfDay(0, 0, 0).toISOString() == "000000"); argument
9080 auto tod = TimeOfDay(12, 30, 33); argument
9081 const ctod = TimeOfDay(12, 30, 33); argument
9082 immutable itod = TimeOfDay(12, 30, 33); argument
9121 assert(TimeOfDay(0, 0, 0).toISOExtString() == "00:00:00"); argument
9127 auto tod = TimeOfDay(12, 30, 33); argument
9128 const ctod = TimeOfDay(12, 30, 33); argument
9129 immutable itod = TimeOfDay(12, 30, 33); argument
9178 auto tod = TimeOfDay(12, 30, 33); argument
9179 const ctod = TimeOfDay(12, 30, 33); argument
9180 immutable itod = TimeOfDay(12, 30, 33); argument
9224 return TimeOfDay(hours, minutes, seconds); argument
9349 return TimeOfDay(hours, minutes, seconds); argument
9439 @property static TimeOfDay min() @safe pure nothrow @nogc in min() argument
9456 @property static TimeOfDay max() @safe pure nothrow @nogc in max() argument
9621 auto t = TimeOfDay(12, 30, 0); argument