Searched defs:seconds (Results 76 - 100 of 157) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.h185 void setDelayBeforeLiveDecodedPrune(double seconds) { m_delayBeforeLiveDecodedPrune = seconds; } argument
186 void setMaxPruneDeferralDelay(double seconds) { m_maxPruneDeferralDelay = seconds; } argument
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dclock.cc142 // Retrieve an NTP absolute timestamp in seconds and fractions of a second.
143 virtual void CurrentNtp(uint32_t& seconds,
147 Adjust(tv, &seconds, &microseconds_in_seconds);
155 uint32_t seconds; variable
157 Adjust(tv, &seconds, &microseconds_in_seconds);
158 return 1000 * static_cast<int64_t>(seconds) +
284 void SimulatedClock::CurrentNtp(uint32_t& seconds, uint32_t& fractions) const { argument
286 seconds = (now_ms / 1000) + kNtpJan1970;
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_audio_processing_impl.cc1043 int VoEAudioProcessingImpl::TimeSinceLastTyping(int &seconds) { argument
1057 _shared->transmit_mixer()->TimeSinceLastTyping(seconds);
/external/chromium_org/v8/test/cctest/
H A Dtest-decls.cc693 const char* seconds[] = { local
703 for (int j = 0; seconds[j] != NULL; ++j) {
710 context.Check(seconds[j],
/external/iptables/extensions/
H A Dlibxt_time.c371 unsigned int *minutes, unsigned int *seconds)
373 *seconds = fulltime % 60;
370 divide_time(unsigned int fulltime, unsigned int *hours, unsigned int *minutes, unsigned int *seconds) argument
/external/libpcap/
H A Dpcap1.h132 bpf_u_int32 nanoseconds; /* 10^-9 of seconds */
133 bpf_u_int32 seconds; /* seconds since Unix epoch - GMT */ member in struct:pcap1_info_timestamp
/external/mdnsresponder/mDNSPosix/
H A DIdentify.c178 mDNSlocal void WaitForAnswer(mDNS *const m, int seconds) argument
182 end.tv_sec += seconds;
197 if (!NumAnswers) printf("No response after %d seconds\n", seconds);
/external/replicaisland/src/com/replica/replicaisland/
H A DHitReactionComponent.java269 public void setPauseOnAttackTime(float seconds) { argument
270 mPauseOnAttackTime = seconds;
/external/smack/src/org/xbill/DNS/
H A DCache.java752 setMaxNCache(int seconds) { argument
753 maxncache = seconds;
770 setMaxCache(int seconds) { argument
771 maxcache = seconds;
/external/tcpdump/
H A Dutil.c225 * Print a relative number of seconds (e.g. hold time, prune timer)
226 * in the form 5m1s. This does no truncation, so 32230861 seconds
233 static const int seconds[] = {31536000, 604800, 86400, 3600, 60, 1}; local
235 const int *s = seconds;
/external/chromium_org/chrome/browser/chromeos/system/
H A Dautomatic_reboot_manager_unittest.cc484 double seconds; local
485 if (!base::StringToDouble(contents.substr(0, contents.find(' ')), &seconds) ||
486 seconds < 0.0) {
489 *uptime = base::TimeDelta::FromMilliseconds(seconds * 1000.0);
639 // 50 seconds.
641 // Fast forward uptime by 50 seconds. Verify that the device does not reboot
649 // Fast forward the uptime by 60 seconds without simulating user activity.
1034 // Fast forward the uptime by 20 seconds. Verify that the device does not
1065 // Fast forward the uptime by 20 seconds. Verify that the device does not
1099 // Fast forward the uptime by 20 seconds
[all...]
/external/chromium_org/chromeos/dbus/
H A Dpower_manager_client.cc927 int seconds = 1; local
929 base::StringToInt(arg1, &seconds);
930 power_cycle_delay_ = base::TimeDelta::FromSeconds(seconds);
H A Dfake_shill_manager_client.cc1019 int seconds = 3; local
1021 base::StringToInt(arg1, &seconds);
1022 interactive_delay_ = seconds;
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_event_queue_unittest.cc169 void AdvanceTouchTime(double seconds) { argument
170 touch_event_.timeStampSeconds += seconds;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMediaControls.cpp439 int seconds = static_cast<int>(fabsf(time)); local
440 int hours = seconds / (60 * 60);
441 int minutes = (seconds / 60) % 60;
442 seconds %= 60;
450 return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
452 return String::format("%s%02d:%02d", (time < 0 ? "-" : ""), minutes, seconds);
454 return String::format("%s%01d:%02d", (time < 0 ? "-" : ""), minutes, seconds);
H A DRenderTheme.cpp422 int seconds = (int)fabsf(time); local
423 int hours = seconds / (60 * 60);
424 int minutes = (seconds / 60) % 60;
425 seconds %= 60;
428 return String::format("%s%02d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
430 return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
433 return String::format("%s%02d:%02d", (time < 0 ? "-" : ""), minutes, seconds);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGSVGElement.cpp594 void SVGSVGElement::setCurrentTime(float seconds) argument
596 if (std::isnan(seconds))
598 seconds = max(seconds, 0.0f);
599 m_timeContainer->setElapsed(seconds);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDateMath.cpp677 // seconds are optional in rfc822 + rfc2822
804 String makeRFC2822DateString(unsigned dayOfWeek, unsigned day, unsigned month, unsigned year, unsigned hours, unsigned minutes, unsigned seconds, int utcOffset) argument
820 appendTwoDigitNumber(stringBuilder, seconds);
/external/chromium_org/v8/src/base/platform/
H A Dtime.cc44 TimeDelta TimeDelta::FromSeconds(int64_t seconds) { argument
45 return TimeDelta(seconds * Time::kMicrosecondsPerSecond);
/external/chromium_org/v8/src/
H A Dd8-posix.cc92 int seconds = time_now.tv_sec - start_time.tv_sec; local
93 gone = seconds * 1000 + (time_now.tv_usec - start_time.tv_usec) / 1000;
128 int seconds = time_now.tv_sec - start_time.tv_sec; local
129 if (seconds > 100) {
130 if (seconds * 1000 > total_time) return true;
134 if (seconds * 1000000 + useconds > total_time * 1000) {
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Value.cpp620 void CJS_Date::SetSeconds(int seconds) argument
622 double date = MakeDate(GetYear(),GetMonth(),GetDay(),GetHours(),GetMinutes(),seconds,0);
/external/chromium_org/chrome/browser/net/
H A Dnetwork_stats.cc299 << " microseconds. Time out " << timeout_seconds << " seconds";
495 void NetworkStats::StartReadDataTimer(uint32 seconds, uint32 test_index) { argument
501 base::TimeDelta::FromSeconds(seconds));
/external/chromium_org/media/blink/
H A Dwebmediaplayer_impl.cc310 void WebMediaPlayerImpl::seek(double seconds) { argument
311 DVLOG(1) << __FUNCTION__ << "(" << seconds << ")"; local
319 base::TimeDelta seek_time = ConvertSecondsToTimestamp(seconds);
323 pending_seek_seconds_ = seconds;
329 media_log_->AddEvent(media_log_->CreateSeekEvent(seconds));
/external/chromium_org/media/cast/test/
H A Dcast_benchmarks.cc415 // Ignore the first two seconds of video or so.
435 double seconds = (kFrameTimerMs * frames_sent_ / 1000.0); local
437 return megabits / seconds;
442 double seconds = (kFrameTimerMs * frames_sent_ / 1000.0); local
444 return megabits / seconds;
/external/chromium_org/media/cast/test/utility/
H A Dudp_proxy.cc73 double seconds = megabits / max_megabits_per_second_; local
74 int64 microseconds = static_cast<int64>(seconds * 1E6);
139 double seconds = GetDelay(); variable
145 base::TimeDelta::FromMicroseconds(static_cast<int64>(seconds * 1E6)));
244 double seconds = seconds_between_extra_delay_ * mult * base::RandDouble(); local
245 int64 microseconds = static_cast<int64>(seconds * 1E6);
328 double seconds = base::RandDouble() * local
330 int64 microseconds = static_cast<int64>(seconds * 1E6);

Completed in 3187 milliseconds

1234567