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

123456789

/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/webkit/Source/WebCore/dom/
H A DDOMTimeStamp.h38 inline DOMTimeStamp convertSecondsToDOMTimeStamp(double seconds) argument
40 return static_cast<DOMTimeStamp>(seconds * 1000.0);
/external/smack/src/org/jivesoftware/smack/
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 DAbstractConnectionListener.java34 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/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));
/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/smack/src/org/jivesoftware/smackx/packet/
H A DMUCInitialPresence.java118 private int seconds = -1; field in class:MUCInitialPresence.History
140 * Returns the number of seconds to use to filter the messages received during that time.
141 * In other words, only the messages received in the last "X" seconds will be included in
144 * @return the number of seconds to use to filter the messages received during that time.
147 return seconds;
180 * Sets the number of seconds to use to filter the messages received during that time.
181 * In other words, only the messages received in the last "X" seconds will be included in
184 * @param seconds the number of seconds to use to filter the messages received during
187 public void setSeconds(int seconds) { argument
[all...]
/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/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHeaderParser.java97 long seconds = Long.parseLong(value);
98 if (seconds > Integer.MAX_VALUE) {
100 } else if (seconds < 0) {
103 return (int) seconds;
/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/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...]

Completed in 2950 milliseconds

123456789