Lines Matching refs:doTestDateTimeF

170 static void doTestDateTimeF(char const*const pis)  in doTestDateTimeF()  function
212 doTestDateTimeF( "+0001-01-01T00:00:00" ); // invalid: ^+ in testDateTime()
213 doTestDateTimeF( "1-01-01T00:00:00" ); // invalid: < 4 Y in testDateTime()
214 doTestDateTimeF( "0001-1-01T00:00:00" ); // invalid: < 2 M in testDateTime()
215 doTestDateTimeF( "0001-01-1T00:00:00" ); // invalid: < 2 D in testDateTime()
216 doTestDateTimeF( "0001-01-01T0:00:00" ); // invalid: < 2 H in testDateTime()
217 doTestDateTimeF( "0001-01-01T00:0:00" ); // invalid: < 2 M in testDateTime()
218 doTestDateTimeF( "0001-01-01T00:00:0" ); // invalid: < 2 S in testDateTime()
219 doTestDateTimeF( "0001-01-01T00:00:00." ); // invalid: .$ in testDateTime()
220 doTestDateTimeF( "0001-01-01T00:00:00+1:00" ); // invalid: < 2 TZ H in testDateTime()
221 doTestDateTimeF( "0001-01-01T00:00:00+00:1" ); // invalid: < 2 TZ M in testDateTime()
222 doTestDateTimeF( "0001-13-01T00:00:00" ); // invalid: M > 12 in testDateTime()
223 doTestDateTimeF( "0001-01-32T00:00:00" ); // invalid: D > 31 in testDateTime()
224 doTestDateTimeF( "0001-01-01T25:00:00" ); // invalid: H > 24 in testDateTime()
225 doTestDateTimeF( "0001-01-01T00:60:00" ); // invalid: H > 59 in testDateTime()
226 doTestDateTimeF( "0001-01-01T00:00:60" ); // invalid: S > 59 in testDateTime()
227 doTestDateTimeF( "0001-01-01T24:01:00" ); // invalid: H=24, but M != 0 in testDateTime()
228 doTestDateTimeF( "0001-01-01T24:00:01" ); // invalid: H=24, but S != 0 in testDateTime()
229 doTestDateTimeF( "0001-01-01T24:00:00.1" ); // invalid: H=24, but H != 0 in testDateTime()
230 doTestDateTimeF( "0001-01-02T00:00:00+15:00" ); // invalid: TZ > +14:00 in testDateTime()
231 doTestDateTimeF( "0001-01-02T00:00:00+14:01" ); // invalid: TZ > +14:00 in testDateTime()
232 doTestDateTimeF( "0001-01-02T00:00:00-15:00" ); // invalid: TZ < -14:00 in testDateTime()
233 doTestDateTimeF( "0001-01-02T00:00:00-14:01" ); // invalid: TZ < -14:00 in testDateTime()