Searched refs:toISOExtString (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/datetime/ |
H A D | package.d | 108 assert(dt.toISOExtString() == "2018-01-01T12:30:10"); 122 assert(st.toISOExtString() == "2018-01-01T12:30:10Z"); 124 assert(st.toISOExtString() == "2018-01-03T12:30:10Z"); 143 auto timeString = currentTime.toISOExtString();
|
H A D | date.d | 2954 string toISOExtString() const @safe pure nothrow in toISOExtString() function 2960 toISOExtString(w); in toISOExtString() 2967 void toISOExtString(W)(ref W writer) const 2971 _date.toISOExtString(writer); 2983 assert(DateTime(Date(2010, 7, 4), TimeOfDay(7, 6, 12)).toISOExtString() == 2986 assert(DateTime(Date(1998, 12, 25), TimeOfDay(2, 15, 0)).toISOExtString() == 2989 assert(DateTime(Date(0, 1, 5), TimeOfDay(23, 9, 59)).toISOExtString() == 2992 assert(DateTime(Date(-4, 1, 5), TimeOfDay(0, 0, 2)).toISOExtString() == 2999 … assert(DateTime(Date(9, 12, 4), TimeOfDay(0, 0, 0)).toISOExtString() == "0009-12-04T00:00:00"); 3000 … assert(DateTime(Date(99, 12, 4), TimeOfDay(5, 6, 12)).toISOExtString() == "0099-12-04T05:06:12"); [all …]
|
H A D | systime.d | 76 assert(ny.toISOExtString() == "2018-01-01T10:30:00-05:00"); 8182 Previously, toISOString did the same as $(LREF toISOExtString) and 8252 SimpleTimeZone.toISOExtString(writer, utcOffset); 8365 string toISOExtString(int prec = -1) @safe const nothrow scope 8373 toISOExtString(app, prec); 8380 void toISOExtString(W)(ref W writer, int prec = -1) const scope 8405 dateTime.toISOExtString(writer); 8412 dateTime.toISOExtString(writer); 8420 dateTime.toISOExtString(writer); 8422 SimpleTimeZone.toISOExtString(writer, utcOffset); [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/ |
H A D | date.d | 2857 string toISOExtString() const @safe pure nothrow in toISOExtString() function 2863 _date.toISOExtString(), in toISOExtString() 2878 assert(DateTime(Date(2010, 7, 4), TimeOfDay(7, 6, 12)).toISOExtString() == 2881 assert(DateTime(Date(1998, 12, 25), TimeOfDay(2, 15, 0)).toISOExtString() == 2884 assert(DateTime(Date(0, 1, 5), TimeOfDay(23, 9, 59)).toISOExtString() == 2887 assert(DateTime(Date(-4, 1, 5), TimeOfDay(0, 0, 2)).toISOExtString() == 2894 … assert(DateTime(Date(9, 12, 4), TimeOfDay(0, 0, 0)).toISOExtString() == "0009-12-04T00:00:00"); 2895 … assert(DateTime(Date(99, 12, 4), TimeOfDay(5, 6, 12)).toISOExtString() == "0099-12-04T05:06:12"); 2896 …assert(DateTime(Date(999, 12, 4), TimeOfDay(13, 44, 59)).toISOExtString() == "0999-12-04T13:44:59"… 2897 …assert(DateTime(Date(9999, 7, 4), TimeOfDay(23, 59, 59)).toISOExtString() == "9999-07-04T23:59:59"… [all …]
|