Home | History | Annotate | Download | only in Date

Lines Matching refs:SEC

24     ECMA Section:       15.9.5.28 Date.prototype.setMinutes(min [, sec [, ms ]] )
26 If sec is not specified, this behaves as if sec were specified with the
34 3. If sec is not specified, compute SecFromTime(t); otherwise, call ToNumber(sec).
48 writeHeaderToLog( SECTION + " Date.prototype.setMinutes(sec [,ms] )");
126 function addNewTestCase( time, min, sec, ms, DateString, UTCDate, LocalDate) {
129 if ( sec == void 0 ) {
133 DateCase.setMinutes( min, sec );
135 DateCase.setMinutes( min, sec, ms );
206 function SetMinutes( t, min, sec, ms ) {
209 var SEC = ( sec == void 0) ? SecFromTime(TIME) : Number(sec);
213 SEC,