/external/chromium_org/v8/test/mjsunit/ |
D | to_number_order.js | 64 var seconds = { valueOf: function() { x += 6; return 0; } }; variable 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, ms); [all …]
|
/external/qemu/distrib/sdl-1.2.15/test/ |
D | testvidinfo.c | 81 float seconds; in RunModeTests() local 121 seconds = (float)(now - then) / 1000.0f; in RunModeTests() 122 if ( seconds > 0.0f ) { in RunModeTests() 123 …intf("%d fills and flips in %2.2f seconds, %2.2f FPS\n", frames, seconds, (float)frames / seconds); in RunModeTests() 150 seconds = (float)(now - then) / 1000.0f; in RunModeTests() 151 if ( seconds > 0.0f ) { in RunModeTests() 152 …pdates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds); in RunModeTests() 181 seconds = (float)(now - then) / 1000.0f; in RunModeTests() 182 if ( seconds > 0.0f ) { in RunModeTests() 183 …pdates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds); in RunModeTests() [all …]
|
/external/smack/src/org/jivesoftware/smackx/muc/ |
D | DiscussionHistory.java | 52 private int seconds = -1; field in DiscussionHistory 81 return seconds; in getSeconds() 121 public void setSeconds(int seconds) { in setSeconds() argument 122 this.seconds = seconds; in setSeconds() 142 return maxChars > -1 || maxStanzas > -1 || seconds > -1 || since != null; in isConfigured() 165 if (seconds > -1) { in getMUCHistory() 166 mucHistory.setSeconds(seconds); in getMUCHistory()
|
/external/chromium_org/net/quic/ |
D | quic_time.cc | 29 QuicTime::Delta QuicTime::Delta::FromSeconds(int64 seconds) { in FromSeconds() argument 30 return QuicTime::Delta(base::TimeDelta::FromSeconds(seconds)); in FromSeconds() 127 QuicWallTime QuicWallTime::FromUNIXSeconds(uint64 seconds) { in FromUNIXSeconds() argument 128 return QuicWallTime(seconds); in FromUNIXSeconds() 168 uint64 seconds = seconds_ + delta.ToSeconds(); in Add() local 169 if (seconds < seconds_) { in Add() 170 seconds = kuint64max; in Add() 172 return QuicWallTime(seconds); in Add() 176 uint64 seconds = seconds_ - delta.ToSeconds(); in Subtract() local 177 if (seconds > seconds_) { in Subtract() [all …]
|
/external/chromium_org/base/time/ |
D | time_posix.cc | 116 time_t seconds = 0; in ToTimeSpec() local 118 seconds = InSeconds(); in ToTimeSpec() 119 microseconds -= seconds * Time::kMicrosecondsPerSecond; in ToTimeSpec() 122 {seconds, in ToTimeSpec() 182 SysTime seconds; // Seconds since epoch. in Explode() local 187 seconds = milliseconds / kMillisecondsPerSecond; in Explode() 193 seconds = (milliseconds - kMillisecondsPerSecond + 1) / in Explode() 202 SysTimeToTimeStruct(seconds, ×truct, is_local); in Explode() 233 SysTime seconds; in FromExploded() local 244 seconds = SysTimeFromTimeStruct(×truct, is_local); in FromExploded() [all …]
|
/external/libcxx/test/utilities/time/time.duration/time.duration.nonmember/ |
D | op_-.pass.cpp | 25 std::chrono::seconds s1(3); in main() 26 std::chrono::seconds s2(5); in main() 27 std::chrono::seconds r = s1 - s2; in main() 31 std::chrono::seconds s1(3); in main() 50 constexpr std::chrono::seconds s1(3); in main() 51 constexpr std::chrono::seconds s2(5); in main() 52 constexpr std::chrono::seconds r = s1 - s2; in main() 56 constexpr std::chrono::seconds s1(3); in main()
|
D | op_+.pass.cpp | 24 std::chrono::seconds s1(3); in main() 25 std::chrono::seconds s2(5); in main() 26 std::chrono::seconds r = s1 + s2; in main() 30 std::chrono::seconds s1(3); in main() 49 constexpr std::chrono::seconds s1(3); in main() 50 constexpr std::chrono::seconds s2(5); in main() 51 constexpr std::chrono::seconds r = s1 + s2; in main() 55 constexpr std::chrono::seconds s1(3); in main()
|
/external/libcxx/test/utilities/time/time.duration/time.duration.comparisons/ |
D | op_equal.pass.cpp | 30 std::chrono::seconds s1(3); in main() 31 std::chrono::seconds s2(3); in main() 36 std::chrono::seconds s1(3); in main() 37 std::chrono::seconds s2(4); in main() 73 constexpr std::chrono::seconds s1(3); in main() 74 constexpr std::chrono::seconds s2(3); in main() 79 constexpr std::chrono::seconds s1(3); in main() 80 constexpr std::chrono::seconds s2(4); in main()
|
D | op_less.pass.cpp | 40 std::chrono::seconds s1(3); in main() 41 std::chrono::seconds s2(3); in main() 48 std::chrono::seconds s1(3); in main() 49 std::chrono::seconds s2(4); in main() 97 constexpr std::chrono::seconds s1(3); in main() 98 constexpr std::chrono::seconds s2(3); in main() 105 constexpr std::chrono::seconds s1(3); in main() 106 constexpr std::chrono::seconds s2(4); in main()
|
/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/ |
D | Util.java | 422 int seconds = (int) (time / 1000); in timeChrono() local 423 if (seconds < 60) { in timeChrono() 425 if (seconds < 10) buffer.append('0'); in timeChrono() 426 buffer.append(seconds); in timeChrono() 428 int minutes = seconds / 60; in timeChrono() 434 seconds = seconds % 60; in timeChrono() 435 if (seconds < 10) buffer.append('0'); in timeChrono() 436 buffer.append(seconds); in timeChrono() 446 seconds = seconds % 60; in timeChrono() 447 if (seconds < 10) buffer.append('0'); in timeChrono() [all …]
|
/external/chromium_org/components/component_updater/test/ |
D | test_configurator.cc | 126 void TestConfigurator::SetRecheckTime(int seconds) { in SetRecheckTime() argument 127 recheck_time_ = seconds; in SetRecheckTime() 130 void TestConfigurator::SetOnDemandTime(int seconds) { in SetOnDemandTime() argument 131 ondemand_time_ = seconds; in SetOnDemandTime() 138 void TestConfigurator::SetInitialDelay(int seconds) { in SetInitialDelay() argument 139 initial_time_ = seconds; in SetInitialDelay()
|
/external/chromium_org/third_party/webrtc/system_wrappers/source/ |
D | clock_unittest.cc | 19 uint32_t seconds; in TEST() local 21 clock->CurrentNtp(seconds, fractions); in TEST() 24 EXPECT_GE(milliseconds, Clock::NtpToMs(seconds, fractions)); in TEST() 25 EXPECT_NEAR(milliseconds, Clock::NtpToMs(seconds, fractions), 5); in TEST()
|
D | clock.cc | 143 virtual void CurrentNtp(uint32_t& seconds, in CurrentNtp() argument 147 Adjust(tv, &seconds, µseconds_in_seconds); in CurrentNtp() 155 uint32_t seconds; in CurrentNtpInMilliseconds() local 157 Adjust(tv, &seconds, µseconds_in_seconds); in CurrentNtpInMilliseconds() 158 return 1000 * static_cast<int64_t>(seconds) + in CurrentNtpInMilliseconds() 284 void SimulatedClock::CurrentNtp(uint32_t& seconds, uint32_t& fractions) const { in CurrentNtp() argument 286 seconds = (now_ms / 1000) + kNtpJan1970; in CurrentNtp()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | HeaderParser.java | 54 long seconds = Long.parseLong(value); in parseSeconds() local 55 if (seconds > Integer.MAX_VALUE) { in parseSeconds() 57 } else if (seconds < 0) { in parseSeconds() 60 return (int) seconds; in parseSeconds()
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | walthread.test | 25 # How long, in seconds, to run each test for. If a test is set to run for 26 # 0 seconds, it is omitted entirely. 28 unset -nocomplain seconds 29 set seconds(walthread-1) 20 30 set seconds(walthread-2) 20 31 set seconds(walthread-3) 20 32 set seconds(walthread-4) 20 33 set seconds(walthread-5) 1 70 # -seconds SECONDS How many seconds to run the test for 81 set P(seconds) 5 [all …]
|
/external/skia/experimental/Intersection/ |
D | EdgeDemoApp.mm | 22 static double seconds; 26 seconds = t.tv_sec+t.tv_usec/1000000.0; 35 double last = seconds; 36 seconds = t.tv_sec+t.tv_usec/1000000.0; 37 SkDebugf("old=%d seconds=%g\n", useOld, seconds - last);
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
D | EdgeDemoApp.mm | 22 static double seconds; 26 seconds = t.tv_sec+t.tv_usec/1000000.0; 35 double last = seconds; 36 seconds = t.tv_sec+t.tv_usec/1000000.0; 37 SkDebugf("old=%d seconds=%g\n", useOld, seconds - last);
|
/external/llvm/include/llvm/Support/ |
D | TimeValue.h | 90 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0) 91 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() argument 197 SecondsType seconds() const { return seconds_; } in seconds() function 257 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const { in getTimespecTime() argument 258 seconds = seconds_ - PosixZeroTimeSeconds; in getTimespecTime() 275 void seconds (SecondsType sec ) { in seconds() function 324 void fromEpochTime( SecondsType seconds ) { in fromEpochTime() argument 325 seconds_ = seconds + PosixZeroTimeSeconds; in fromEpochTime()
|
/external/chromium_org/third_party/skia/experimental/pixman/ |
D | pixman.mm | 26 static double seconds; 30 seconds = t.tv_sec+t.tv_usec/1000000.0; 38 double last = seconds; 39 seconds = t.tv_sec+t.tv_usec/1000000.0; 40 SkDebugf("usePixman=%d seconds=%g\n", usePixman, seconds - last);
|
/external/skia/experimental/pixman/ |
D | pixman.mm | 26 static double seconds; 30 seconds = t.tv_sec+t.tv_usec/1000000.0; 38 double last = seconds; 39 seconds = t.tv_sec+t.tv_usec/1000000.0; 40 SkDebugf("usePixman=%d seconds=%g\n", usePixman, seconds - last);
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
D | MUCInitialPresence.java | 118 private int seconds = -1; field in MUCInitialPresence.History 147 return seconds; in getSeconds() 187 public void setSeconds(int seconds) { in setSeconds() argument 188 this.seconds = seconds; in setSeconds()
|
/external/skia/tools/timer/ |
D | SysTimer_mach.cpp | 33 duration_clock = (end_clock.seconds - start_clock.seconds-1) * 1000; in interval_in_ms() 36 duration_clock = (end_clock.seconds - start_clock.seconds) * 1000; in interval_in_ms()
|
/external/chromium_org/third_party/skia/tools/timer/ |
D | SysTimer_mach.cpp | 33 duration_clock = (end_clock.seconds - start_clock.seconds-1) * 1000; in interval_in_ms() 36 duration_clock = (end_clock.seconds - start_clock.seconds) * 1000; in interval_in_ms()
|
/external/chromium_org/media/base/ |
D | wall_clock_time_source_unittest.cc | 19 void AdvanceTimeInSeconds(int seconds) { in AdvanceTimeInSeconds() argument 20 tick_clock_->Advance(base::TimeDelta::FromSeconds(seconds)); in AdvanceTimeInSeconds() 27 void SetMediaTimeInSeconds(int seconds) { in SetMediaTimeInSeconds() argument 28 return time_source_.SetMediaTime(base::TimeDelta::FromSeconds(seconds)); in SetMediaTimeInSeconds()
|
/external/fio/tools/ |
D | genfio | 57 -r seconds : Time in seconds per benchmark 59 Default is $RUNTIME seconds 77 ETA ~ 4 tests * 4 disks * 100 seconds 79 ETA ~ 4 tests * 4 disks * 100 seconds 81 ETA ~ 4 tests * 4 disks * 100 seconds 83 ETA ~ 4 tests * 100 seconds 85 ETA ~ 4 tests * 100 seconds 87 ETA ~ 4 tests * 100 seconds 90 Estimated Time = 6000 seconds : 1 hour 40 minutes
|