Searched refs:seconds (Results 76 - 100 of 471) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Date/
H A D15.9.5.24-3.js98 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() );
107 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
124 this.seconds = 0;
141 d.seconds = SecFromTime(t);
144 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.24-4.js97 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() );
106 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
123 this.seconds = 0;
140 d.seconds = SecFromTime(t);
143 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.24-5.js90 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() );
99 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
116 this.seconds = 0;
133 d.seconds = SecFromTime(t);
136 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.24-6.js89 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() );
98 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
115 this.seconds = 0;
132 d.seconds = SecFromTime(t);
135 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.24-7.js88 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() );
97 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
114 this.seconds = 0;
131 d.seconds = SecFromTime(t);
134 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
H A D15.9.5.24-8.js84 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() );
93 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() );
110 this.seconds = 0;
127 d.seconds = SecFromTime(t);
130 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
/macosx-10.10.1/ICU-531.30/icuSources/samples/date/
H A Ddate.c48 static UDate getWhen(const char *millis, const char *seconds, const char *format, UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status);
74 char *seconds = NULL; local
118 seconds = argv[optInd];
161 when = getWhen(millis, seconds, format, style, parse, tz, &status);
190 puts(" -r <seconds> Use <seconds> as the time (Epoch 1970) rather than now.");
291 static UDate getWhen(const char *millis, const char *seconds, const char *format, argument
302 } else if(seconds != NULL) {
303 sscanf(seconds, "%lf", &when);
/macosx-10.10.1/apache-793/httpd/server/
H A Dutil_time.c57 apr_int64_t seconds = apr_time_sec(t); local
59 &(cache[seconds & TIME_CACHE_MASK]);
66 * 'now - AP_TIME_RECENT_THRESHOLD' seconds ago). If the
76 if (cache_element->t >= seconds) {
80 * TIME_CACHE_SIZE seconds ago at the same time that
97 * the cache_element should both match the 'seconds'
108 if ((seconds != cache_element_snapshot.t) ||
109 (seconds != cache_element_snapshot.t_validate)) {
135 cache_element->t = seconds;
137 cache_element->t_validate = seconds;
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dexp_simple.c375 int timeout; /* seconds */
419 int seconds;
423 seconds = subtotal;
424 subtotal -= seconds;
430 sleep(seconds);
446 int seconds;
450 seconds = subtotal/1000000;
457 sleep(seconds);
415 int seconds; local
/macosx-10.10.1/tcl-105/tcl_ext/thread/thread/tcl/phttpd/
H A Dphttpd.tcl502 # seconds
511 proc phttpd::Date {{seconds 0}} {
515 if {$seconds == 0} {
516 set seconds [clock seconds]
518 clock format $seconds -format {%a, %d %b %Y %T %Z} -gmt 1
542 set stamp [clock format [clock seconds] -format "%d/%b/%Y:%H:%M:%S"]
686 <h3>[clock format [clock seconds]]</h3>
H A Duhttpd.tcl301 proc uhttpd::Date {{seconds 0}} {
305 if {$seconds == 0} {
306 set seconds [clock seconds]
308 clock format $seconds -format {%a, %d %b %Y %T %Z} -gmt 1
316 set stamp [clock format [clock seconds] -format "%d/%b/%Y:%H:%M:%S"]
401 <h3>[clock format [clock seconds]]</h3>
/macosx-10.10.1/PowerManagement-494.1.2/AppleSmartBatteryManager/
H A DAppleSmartBattery.h110 void setInstantaneousTimeToEmpty(int seconds);
116 void setAverageTimeToEmpty(int seconds);
120 void setAverageTimeToFull(int seconds);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dtimeval.c100 /* Convert a pointer to a struct timeval to seconds and thousandths of a
136 int seconds, seconds_fraction; local
141 seconds = timestamp % 60;
143 fprintf (fp, "%ldm%d.%03ds", minutes, seconds, seconds_fraction);
/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A DAsyncTask.h50 static const constexpr std::chrono::seconds exitDelay = std::chrono::seconds(1);
67 template<typename Object, typename Function> const std::chrono::seconds AsyncTask<Object, Function>::exitDelay;
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmail_conf_time.c37 /* (seconds), m (minutes), h (hours), d (days) or w (weeks).
38 /* Internally, time is represented in seconds.
59 /* bounds are given in seconds.
206 static int seconds; local
212 "seconds", "10s", &seconds, 0, 0,
221 vstream_printf("10 seconds = %d\n", seconds);
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dgetdate.y135 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
141 long int seconds;
172 /* Gregorian year, month, day, hour, minutes, seconds, and nanoseconds. */
178 struct timespec seconds; /* includes nanoseconds */
180 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
233 %type <timespec> seconds signed_seconds unsigned_seconds
245 '@' seconds
247 pc->seconds = $2;
278 pc->seconds.tv_sec = 0;
279 pc->seconds
530 seconds: signed_seconds | unsigned_seconds; label
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dspindate.itk107 set clicks [clock seconds]
310 set clicks [clock seconds]
341 set clicks [clock seconds]
419 set seconds [clock seconds]
422 set seconds $date
423 } elseif {[catch {set seconds [clock scan $date]}] != 0} {
435 $itk_component(month) insert 0 [clock format $seconds -format "%b"]
439 $itk_component(month) insert 0 [clock format $seconds -format "%B"]
443 $itk_component(month) insert 0 [clock format $seconds
[all...]
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Builder-0.80/examples/
H A DICal.pm63 my @units = qw( weeks days hours minutes seconds );
85 $units{seconds} = $6 if defined $6;
152 $ical .= $duration->seconds . 'S' if $duration->seconds;
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Builder-0.81/examples/
H A DICal.pm58 my @units = qw( weeks days hours minutes seconds );
80 $units{seconds} = $6 if defined $6;
142 $ical .= $duration->seconds . 'S' if $duration->seconds;
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D003Layout-Rr.t27 my ($seconds) = @_;
28 $SECONDS += $seconds;
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/xferquota/
H A Dtests.sh37 seconds=`expr $ticks \* 1`
43 echo "I:Have $count zones up in $seconds seconds"
/macosx-10.10.1/ntp-92/sntp/
H A Dheader.h48 extern void do_nothing (int seconds);
/macosx-10.10.1/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dtreetime.tcl14 set n [clock seconds]
/macosx-10.10.1/tcl-105/tcl_ext/tclsoap/tclsoap/samples/
H A Dxmlrpc-methods-server.tcl40 set result [clock format [clock seconds] -format {%Y%m%dT%H:%M:%S}]
/macosx-10.10.1/tcl-105/tcl_ext/tclvfs/tclvfs/tests/
H A Dall.tcl55 set timeCmd {clock format [clock seconds]}

Completed in 384 milliseconds

1234567891011>>