HomeSort by relevance Sort by last modified time
    Searched full:seconds (Results 1 - 25 of 1868) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/074-gc-thrash/
expected.txt 1 Running (10 seconds) ...
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
Utils.java 35 * @param millis the elapsed time in milli seconds
40 int seconds = (int) Math.floor(millis / 1000); local
43 if (seconds > SECONDS_PER_DAY) {
44 days = seconds / SECONDS_PER_DAY;
45 seconds -= days * SECONDS_PER_DAY;
47 if (seconds > SECONDS_PER_HOUR) {
48 hours = seconds / SECONDS_PER_HOUR;
49 seconds -= hours * SECONDS_PER_HOUR;
51 if (seconds > SECONDS_PER_MINUTE) {
52 minutes = seconds / SECONDS_PER_MINUTE
    [all...]
  /external/webkit/WebCore/manual-tests/animation/
animateTransform-keyTimes.svg 8 The rect should from 0,0 to 100,0 over 3 seconds.
9 <tspan dy='20' x='10'>It should be at the orange at 2 seconds and the green at 3 seconds.</tspan>
animateColor-by.svg 5 <text x='10' y='120'>The rect should animate from black to green over 3 seconds</text>
animateColor-from-by.svg 5 <text x='10' y='120'>The rect should animate from red to purple over 3 seconds</text>
animateColor-repeat-indefinite.svg 5 <text x='10' y='120'>The rect should animate from blue to green over 2 seconds, repeatedly.</text>
animateColor-to-from.svg 5 <text x='10' y='120'>The rect should animate from blue to green over 3 seconds</text>
animateColor-to.svg 5 <text x='10' y='120'>The rect should animate from blue to green over 3 seconds</text>
animateColor-values-simple.svg 5 <text x='10' y='120'>The rect should animate from blue to green over 3 seconds</text>
animateMotion-to.svg 6 The rect should from 0,0 to 100,0 over 3 seconds.
  /bionic/libc/unistd/
sleep.c 31 unsigned int sleep(unsigned int seconds)
35 /* seconds is unsigned, while t.tv_sec is signed
37 * support for it by only sleeping 2 billion seconds
39 if ((int)seconds < 0)
40 seconds = 0x7fffffff;
42 t.tv_sec = seconds;
  /external/v8/test/mjsunit/
to_number_order.js 56 var seconds = { valueOf: function() { x += 6; return 0; } };
60 new Date(year, month, date, hours, minutes, seconds, ms);
65 Date(year, month, date, hours, minutes, seconds, ms);
69 Date.UTC(year, month, date, hours, minutes, seconds, ms);
74 new Date().setSeconds(seconds, ms);
78 new Date().setSeconds(seconds, ms);
82 new Date().setUTCSeconds(seconds, ms);
86 new Date().setMinutes(minutes, seconds, ms);
90 new Date().setUTCMinutes(minutes, seconds, ms);
94 new Date().setHours(hours, minutes, seconds, ms)
    [all...]
  /external/bluetooth/bluez/test/
rctest.1 54 .BI -L\ seconds
57 .BI -W\ seconds
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_recent.h 19 u_int32_t seconds; member in struct:ipt_recent_info
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ipt_recent.h 19 u_int32_t seconds; member in struct:ipt_recent_info
  /development/samples/Alarm/
_index.html 14 In the sample, the service simply runs for 15 seconds and then stops itself. The wait is
22 activity fires off the service every thirty seconds. In effect, the service starts after
23 thirty seconds, runs for 15 seconds, stops, and then runs again automatically in another
24 15 seconds. You also use the client to stop this cycle.
  /external/webkit/WebCore/manual-tests/
transitions.html 31 {className:"green", description:"instantly change into a rectangle and fade from yellow to green over 5 seconds"},
33 {className:"square", description:"instantly change into a yellow rectangle and then animate into a big yellow square over 2 seconds"},
34 {className:"green", description:"instantly change into a yellow rectangle and then animate to a green rectangle over 5 seconds"},
36 {className:"green", description:"instantly change into a yellow rectangle and fade from yellow to green over 5 seconds"},
37 {className:"square", description:"instantly change to a yellow rectangle and then animate into a large yellow square over 2 seconds"},
  /frameworks/base/docs/html/resources/articles/
timed-ui-updates.jd 38 int seconds = (int) (millis / 1000);
39 int minutes = seconds / 60;
40 seconds = seconds % 60;
42 timeLabel.setText(String.format("%d:%02d", minutes, seconds));
56 find the clock sometimes not updating for close to 2 seconds, or
64 uses a quick hack to format the seconds nicely as you will see.</p>
105 int seconds = (int) (millis / 1000);
106 int minutes = seconds / 60;
107 seconds = seconds % 60
    [all...]
  /external/iproute2/man/man8/
rtacct.8 41 Run in daemon mode collecting statistics. <INTERVAL> is interval between measurements in seconds.
44 Time interval to average rates. Default value is 60 seconds.
  /external/tcpdump/
atime.awk 5 # where <ack time> is the time packet was acked (in seconds with
9 # convert time to seconds
stime.awk 5 # where <send time> is the time packet was sent (in seconds with
9 # convert time to seconds
  /libcore/luni/src/test/java/com/google/coretests/
CoreTestPrinter.java 94 int seconds = fRunTime; local
96 int hours = seconds / 3600;
97 seconds = seconds % 3600;
99 int minutes = seconds / 60;
100 seconds = seconds % 60;
102 String text = String.format("%02d:%02d:%02d", hours, minutes, seconds);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
Duration.java 25 * | DAYS [ HOURS [ MINUTES [ SECONDS ] ] ]
26 * | HOURS [ MINUTES [ SECONDS ] ]
28 * 70 seconds.
37 public int seconds; field in class:Duration
55 seconds = 0;
106 seconds = n;
132 cal.add(Calendar.SECOND, sign*seconds);
145 + seconds);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_addr.h 52 __u32 cstamp; /* created timestamp, hundredths of seconds */
53 __u32 tstamp; /* updated timestamp, hundredths of seconds */
  /system/core/init/
bootchart.h 31 # define BOOTCHART_DEFAULT_TIME_SEC (2*60) /* default polling time in seconds */
32 # define BOOTCHART_MAX_TIME_SEC (10*60) /* max polling time in seconds */

Completed in 282 milliseconds

1 2 3 4 5 6 7 8 91011>>