Home | History | Annotate | Download | only in Date

Lines Matching refs:SEC

24     ECMA Section:       15.9.5.31 Date.prototype.setUTCHours(hour [, min [, sec [, ms ]]] )
27 If sec is not specified, this behaves as if sec were specified with the value getUTCSeconds ( ).
33 4.If sec is not specified, compute SecFromTime(t); otherwise, call ToNumber(sec).
47 writeHeaderToLog( SECTION + " Date.prototype.setUTCHours(hour [, min [, sec [, ms ]]] )");
120 function addNewTestCase( time, hours, min, sec, ms, DateString, UTCDate, LocalDate) {
126 if ( sec == void 0 ) {
130 DateCase.setUTCHours( hours, min, sec );
132 DateCase.setUTCHours( hours, min, sec, ms );
201 function SetUTCHours( t, hour, min, sec, ms ) {
205 var SEC = ( sec == void 0) ? SecFromTime(TIME) : Number(sec);
209 SEC,