Searched refs:seconds (Results 1 - 25 of 185) sorted by relevance

12345678

/external/webkit/Source/WebCore/dom/
H A DDOMTimeStamp.h38 inline DOMTimeStamp convertSecondsToDOMTimeStamp(double seconds) argument
40 return static_cast<DOMTimeStamp>(seconds * 1000.0);
/external/v8/test/mjsunit/
H A Dto_number_order.js64 var seconds = { valueOf: function() { x += 6; return 0; } };
68 new Date(year, month, date, hours, minutes, seconds, ms);
73 Date(year, month, date, hours, minutes, seconds, ms);
77 Date.UTC(year, month, date, hours, minutes, seconds, ms);
82 new Date().setSeconds(seconds, ms);
86 new Date().setSeconds(seconds, ms);
90 new Date().setUTCSeconds(seconds, ms);
94 new Date().setMinutes(minutes, seconds, ms);
98 new Date().setUTCMinutes(minutes, seconds, ms);
102 new Date().setHours(hours, minutes, seconds, m
[all...]
/external/kernel-headers/original/linux/
H A Ddelay.h42 static inline void ssleep(unsigned int seconds) argument
44 msleep(seconds * 1000);
/external/replicaisland/src/com/replica/replicaisland/
H A DVibrationSystem.java34 public void vibrate(float seconds) { argument
39 vibrator.vibrate((int)(seconds * 1000));
H A DTimeSystem.java20 * Maintains a canonical time step, in seconds, for the entire game engine. This time step
112 public void freeze(float seconds) { argument
113 mFreezeDelay = seconds;
/external/chromium/base/
H A Dtime_posix.cc19 time_t seconds = 0; local
21 seconds = InSeconds();
22 microseconds -= seconds * Time::kMicrosecondsPerSecond;
25 {seconds,
63 // Combine seconds and microseconds in a 64-bit field containing microseconds
82 time_t seconds = milliseconds / kMillisecondsPerSecond; local
86 localtime_r(&seconds, &timestruct);
88 gmtime_r(&seconds, &timestruct);
117 time_t seconds; local
119 seconds
[all...]
H A Dtime_mac.cc75 CFAbsoluteTime seconds = CFGregorianDateGetAbsoluteTime(date, time_zone) + local
77 return Time(static_cast<int64>(seconds * kMicrosecondsPerSecond) +
82 CFAbsoluteTime seconds = local
88 CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(seconds, time_zone);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestvidinfo.c81 float seconds; local
121 seconds = (float)(now - then) / 1000.0f;
122 if ( seconds > 0.0f ) {
123 printf("%d fills and flips in %2.2f seconds, %2.2f FPS\n", frames, seconds, (float)frames / seconds);
125 printf("%d fills and flips in zero seconds!n", frames);
150 seconds = (float)(now - then) / 1000.0f;
151 if ( seconds > 0.0f ) {
152 printf("%d blits / %d updates in %2.2f seconds,
[all...]
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_recent.h19 u_int32_t seconds; member in struct:ipt_recent_info
/external/skia/bench/
H A DBenchSysTimer_mach.cpp41 duration_clock = (end_clock.seconds - start_clock.seconds-1)*1000;
46 duration_clock = (end_clock.seconds - start_clock.seconds)*1000;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dratetracker.cc44 // Snapshot units / second calculator. Determine how many seconds have
46 // a new reference point that is an integer number of seconds since the
53 int seconds = delta / 1000; local
57 // Compute "units received during the interval" / "seconds in interval"
59 (total_units_ - last_units_second_calc_ - fraction_units) / seconds;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
H A D15.9.4.3.js26 var TITLE = "Date.UTC( year, month, date, hours, minutes, seconds, ms )";
37 this.seconds = 0;
41 function utc( year, month, date, hours, minutes, seconds, ms ) {
53 if (seconds)
54 d.seconds = Number(seconds);
63 isNaN(minutes) || isNaN(seconds) || isNaN(ms) ) {
69 d.seconds = Number.NaN;
78 d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
184 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", ExpectDate.seconds,DateCas
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_recent.h27 __u32 seconds; member in struct:xt_recent_mtinfo
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacter.java167 int[] seconds = new int[kerning.size()];
168 int[] amounts = new int[seconds.length];
172 seconds[i] = entry.getKey();
177 oc.write(seconds, "seconds", null);
192 int[] seconds = ic.readIntArray("seconds", null);
195 for (int i = 0; i < seconds.length; i++){
196 kerning.put(seconds[i], amounts[i]);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
H A DUtil.java422 int seconds = (int) (time / 1000);
423 if (seconds < 60) {
425 if (seconds < 10) buffer.append('0');
426 buffer.append(seconds);
428 int minutes = seconds / 60;
434 seconds = seconds % 60;
435 if (seconds < 10) buffer.append('0');
436 buffer.append(seconds);
446 seconds
[all...]
/external/chromium/chrome/browser/ui/cocoa/toolbar/
H A Dreload_button.h47 + (void)setPendingReloadTimeout:(NSTimeInterval)seconds;
/external/okhttp/src/main/java/libcore/net/http/
H A DHeaderParser.java151 long seconds = Long.parseLong(value);
152 if (seconds > Integer.MAX_VALUE) {
154 } else if (seconds < 0) {
157 return (int) seconds;
/external/webkit/Tools/TestWebKitAPI/
H A DPlatformUtilities.h44 void sleep(double seconds);
/external/webkit/Tools/TestWebKitAPI/mac/
H A DPlatformUtilitiesMac.mm44 void sleep(double seconds)
46 usleep(seconds * 1000000);
/external/dropbear/
H A Dprogressmeter.c37 #define STALL_TIME 5 /* we're stalled after this many seconds */
118 int hours, minutes, seconds; local
193 seconds = bytes_left / bytes_per_second;
195 seconds = elapsed;
197 hours = seconds / 3600;
198 seconds -= hours * 3600;
199 minutes = seconds / 60;
200 seconds -= minutes * 60;
204 "%d:%02d:%02d", hours, minutes, seconds);
207 " %02d:%02d", minutes, seconds);
[all...]
/external/openssh/
H A Dprogressmeter.c47 #define STALL_TIME 5 /* we're stalled after this many seconds */
128 int hours, minutes, seconds; local
203 seconds = bytes_left / bytes_per_second;
205 seconds = elapsed;
207 hours = seconds / 3600;
208 seconds -= hours * 3600;
209 minutes = seconds / 60;
210 seconds -= minutes * 60;
214 "%d:%02d:%02d", hours, minutes, seconds);
217 " %02d:%02d", minutes, seconds);
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_PortManager.java94 * Returns a different port number every 6 seconds or so. The port number
100 int seconds = c.get(Calendar.SECOND);
102 return 6000 + (1000 * minutes) + ((seconds / 6) * 100);
/external/clang/test/Analysis/
H A Dcasts.c71 double seconds = intSeconds; local
72 if (seconds)
/external/llvm/include/llvm/Support/
H A DTimeValue.h68 typedef int64_t SecondsType; ///< Type used for representing seconds.
85 /// Caller provides the exact value in seconds and nanoseconds. The
88 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0) argument
89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
91 /// Caller provides the exact value as a double in seconds with the
192 /// Returns only the seconds component of the TimeValue. The nanoseconds
194 /// @brief Retrieve the seconds component
195 SecondsType seconds() const { return seconds_; } function in class:llvm::sys::TimeValue
197 /// Returns only the nanoseconds component of the TimeValue. The seconds
245 /// Converts the TimeValue into the corresponding number of seconds
263 getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const argument
281 void seconds (SecondsType sec ) { function in class:llvm::sys::TimeValue
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
H A DSrtParser.java53 long seconds = Long.parseLong(in.split(":")[2].split(",")[0].trim());
56 return hours * 60 * 60 * 1000 + minutes * 60 * 1000 + seconds * 1000 + millies;

Completed in 1851 milliseconds

12345678