Searched defs:seconds (Results 1 - 25 of 157) sorted by relevance

1234567

/external/chromium_org/chrome/browser/
H A Dinternal_auth.h37 static void set_verification_window_seconds(int seconds) { argument
38 verification_window_seconds_ = seconds;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMTimeStamp.h38 inline DOMTimeStamp convertSecondsToDOMTimeStamp(double seconds) argument
40 return static_cast<DOMTimeStamp>(seconds * 1000.0);
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dclock_unittest.cc19 uint32_t seconds; local
21 clock->CurrentNtp(seconds, fractions);
24 EXPECT_GE(milliseconds, Clock::NtpToMs(seconds, fractions));
25 EXPECT_NEAR(milliseconds, Clock::NtpToMs(seconds, fractions), 5);
/external/replicaisland/src/com/replica/replicaisland/
H A DVibrationSystem.java34 public void vibrate(float seconds) { argument
39 vibrator.vibrate((int)(seconds * 1000));
/external/chromium_org/base/synchronization/
H A Dwaitable_event_unittest.cc76 WaitableEventSignaler(double seconds, WaitableEvent* ev) argument
77 : seconds_(seconds),
/external/chromium_org/cc/animation/
H A Danimation_unittest.cc16 static base::TimeTicks TicksFromSecondsF(double seconds) { argument
17 return base::TimeTicks::FromInternalValue(seconds *
/external/chromium_org/media/base/
H A Ddecoder_buffer_queue_unittest.cc12 static base::TimeDelta ToTimeDelta(int seconds) { argument
13 if (seconds < 0)
15 return base::TimeDelta::FromSeconds(seconds);
18 // Helper to create buffers with specified timestamp in seconds.
H A Dtext_ranges_unittest.cc14 bool AddCue(int seconds) { argument
15 return ranges_.AddCue(base::TimeDelta::FromSeconds(seconds));
H A Dwall_clock_time_source_unittest.cc19 void AdvanceTimeInSeconds(int seconds) { argument
20 tick_clock_->Advance(base::TimeDelta::FromSeconds(seconds));
27 void SetMediaTimeInSeconds(int seconds) { argument
28 return time_source_.SetMediaTime(base::TimeDelta::FromSeconds(seconds));
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprinrval.h142 NSPR_API(PRIntervalTime) PR_SecondsToInterval(PRUint32 seconds); variable
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_time.h28 * Timeouts are specified as tenths of seconds in a 32-bit value. Timeout values
29 * specified by the Bluetooth specification are usually muliple seconds, so
32 * This file also contains macros to convert between seconds and the Link
54 * Within the core stack timeouts are specified in intervals of tenths of seconds
66 * Macro to convert seconds to OI_INTERVAL time units
92 OI_INT32 seconds; member in struct:__anon1123
126 * This function returns the interval between two times to a granularity of 0.1 seconds.
173 * Convert seconds to the Link Manager 1.28-second units
181 * Convert Link Manager 1.28-second units to seconds.
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dset_time_ui.cc73 // new time. Expects the time as the number of seconds since the Unix
76 double seconds; local
77 if (!args->GetDouble(0, &seconds)) {
83 static_cast<int64>(seconds));
/external/chromium_org/third_party/webrtc/base/
H A Dratetracker.cc27 // Snapshot units / second calculator. Determine how many seconds have
29 // a new reference point that is an integer number of seconds since the
36 int seconds = delta / 1000; local
40 // Compute "units received during the interval" / "seconds in interval"
42 (total_units_ - last_units_second_calc_ - fraction_units) / seconds;
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DTimedTrace.cc52 double seconds = _timeEllapsedSec - minutes * 60; local
56 minutes, seconds, message);
/external/kernel-headers/original/uapi/scsi/
H A Dscsi_netlink_fc.h60 uint64_t seconds; member in struct:fc_nl_event
/external/smack/src/org/jivesoftware/smack/
H A DAbstractConnectionListener.java34 public void reconnectingIn(int seconds) { argument
H A DConnectionListener.java50 * The connection will retry to reconnect in the specified number of seconds.
52 * @param seconds remaining seconds before attempting a reconnection.
54 public void reconnectingIn(int seconds); argument
H A DReconnectionManager.java29 * <li>For the first minute it will attempt to connect once every ten seconds.
41 private int randomBase = new Random().nextInt(11) + 5; // between 5 and 15 seconds
78 * <li>First it will try 6 times every 10 seconds.
98 * Returns the number of seconds until the next reconnection attempt.
100 * @return the number of seconds until the next reconnection attempt.
108 return randomBase*6; // between 30 and 90 seconds (~1 minutes)
110 return randomBase; // 10 seconds
175 * Fires listeners when The Connection will retry a reconnection. Expressed in seconds.
177 * @param seconds the number of seconds tha
179 notifyAttemptToReconnectIn(int seconds) argument
212 reconnectingIn(int seconds) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dutmscale.c17 #define seconds (milliseconds * 1000) macro
18 #define minutes (seconds * 60)
26 {seconds, INT64_C(62135596800), INT64_C(-984472800485), INT64_C(860201606885), U_INT64_MIN, U_INT64_MAX, INT64_C(62135596801), INT64_C(62135596799), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
30 {seconds, INT64_C(60052752000), INT64_C(-982389955685), INT64_C(862284451685), U_INT64_MIN, U_INT64_MAX, INT64_C(60052752001), INT64_C(60052751999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
31 {seconds, INT64_C(63113904000), INT64_C(-985451107685), INT64_C(859223299685), U_INT64_MIN, U_INT64_MAX, INT64_C(63113904001), INT64_C(63113903999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
/external/deqp/framework/delibs/dethread/unix/
H A DdeThreadUnix.c135 deUint32 seconds = milliseconds / 1000; local
137 milliseconds = milliseconds - seconds * 1000;
139 if (seconds > 0)
140 sleep(seconds);
/external/icu/icu4c/source/i18n/
H A Dutmscale.c17 #define seconds (milliseconds * 1000) macro
18 #define minutes (seconds * 60)
26 {seconds, INT64_C(62135596800), INT64_C(-984472800485), INT64_C(860201606885), U_INT64_MIN, U_INT64_MAX, INT64_C(62135596801), INT64_C(62135596799), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
30 {seconds, INT64_C(60052752000), INT64_C(-982389955685), INT64_C(862284451685), U_INT64_MIN, U_INT64_MAX, INT64_C(60052752001), INT64_C(60052751999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
31 {seconds, INT64_C(63113904000), INT64_C(-985451107685), INT64_C(859223299685), U_INT64_MIN, U_INT64_MAX, INT64_C(63113904001), INT64_C(63113903999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
/external/llvm/unittests/Support/
H A DProgramTest.cpp25 void sleep_for(unsigned int seconds) { argument
26 sleep(seconds);
30 void sleep_for(unsigned int seconds) { argument
31 Sleep(seconds * 1000);
108 sleep_for(/*seconds*/ 1);
169 sleep_for(/*seconds*/ 10);
/external/smack/src/org/jivesoftware/smackx/muc/
H A DDiscussionHistory.java38 * <li>seconds -> only the messages received in the last "X" seconds will be included in the
52 private int seconds = -1; field in class:DiscussionHistory
74 * Returns the number of seconds to use to filter the messages received during that time.
75 * In other words, only the messages received in the last "X" seconds will be included in
78 * @return the number of seconds to use to filter the messages received during that time.
81 return seconds;
114 * Sets the number of seconds to use to filter the messages received during that time.
115 * In other words, only the messages received in the last "X" seconds will be included in
118 * @param seconds th
121 setSeconds(int seconds) argument
[all...]
/external/chromium_org/components/captive_portal/
H A Dcaptive_portal_detector.cc102 // Otherwise, try parsing it as an integer (seconds) or as an HTTP date.
103 int seconds; local
105 if (base::StringToInt(retry_after_string, &seconds)) {
106 results->retry_after_delta = base::TimeDelta::FromSeconds(seconds);
/external/chromium_org/media/blink/
H A Dwebmediaplayer_util.cc26 base::TimeDelta ConvertSecondsToTimestamp(double seconds) { argument
27 double microseconds = seconds * base::Time::kMicrosecondsPerSecond;

Completed in 772 milliseconds

1234567