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

1 2 3 4 5 6 7 8 91011>>

  /art/test/074-gc-thrash/
expected.txt 1 Running (10 seconds) ...
  /dalvik/tests/074-gc-thrash/
expected.txt 1 Running (10 seconds) ...
  /art/test/109-suspend-check/
expected.txt 1 Running (5 seconds) ...
  /dalvik/tests/097-suspend-check/
expected.txt 1 Running (5 seconds) ...
  /external/chromium_org/tools/telemetry/telemetry/page/
buildbot_page_measurement_results_unittest.py 38 measurement_results.Add('a', 'seconds', 3)
42 measurement_results.Add('a', 'seconds', 7)
46 expected = ['RESULT a_by_url: http___www.foo.com_= 3 seconds',
47 'RESULT a_by_url: http___www.bar.com_= 7 seconds',
48 '*RESULT a: a= [3,7] seconds\nAvg a: 5.000000seconds\n' +
49 'Sd a: 2.828427seconds']
57 measurement_results.Add('a', 'seconds', 3)
58 measurement_results.Add('b', 'seconds', 10)
62 measurement_results.Add('a', 'seconds', 3
    [all...]
html_page_measurement_results_unittest.py 53 results.Add('a', 'seconds', 3)
56 results.Add('a', 'seconds', 7)
70 '"units": "seconds", '
75 '"units": "seconds", '
80 '"units": "seconds", '
96 results.Add('a', 'seconds', 4)
99 results.Add('a', 'seconds', 8)
113 '"units": "seconds", '
118 '"units": "seconds", '
123 '"units": "seconds", '
    [all...]
  /device/samsung/manta/
init.recovery.manta.rc 4 # Set watchdog timer to 30 seconds and pet it every 10 seconds to get a 20 second margin
  /packages/apps/Camera/perftests/panorama/
README.txt 9 Iteration 0: 1454x330 moasic created: 4.33 seconds (2.05 + 2.28)
10 Iteration 1: 1454x330 moasic created: 4.26 seconds (1.83 + 2.44)
11 Iteration 2: 1454x330 moasic created: 5.57 seconds (2.73 + 2.84)
12 Iteration 3: 1454x330 moasic created: 5.15 seconds (2.33 + 2.82)
13 Iteration 4: 1454x330 moasic created: 6.22 seconds (2.05 + 4.16)
14 Iteration 5: 1454x330 moasic created: 6.31 seconds (2.16 + 4.15)
15 Iteration 6: 1454x330 moasic created: 5.04 seconds (2.03 + 3.01)
16 Iteration 7: 1454x330 moasic created: 6.30 seconds (3.47 + 2.83)
17 Iteration 8: 1454x330 moasic created: 6.57 seconds (1.83 + 4.73)
18 Iteration 9: 1454x330 moasic created: 6.27 seconds (2.28 + 4.00
    [all...]
  /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 seconds += 30;
47 if (seconds > SECONDS_PER_DAY) {
48 days = seconds / SECONDS_PER_DAY;
49 seconds -= days * SECONDS_PER_DAY;
51 if (seconds > SECONDS_PER_HOUR) {
52 hours = seconds / SECONDS_PER_HOUR;
53 seconds -= hours * SECONDS_PER_HOUR;
55 if (seconds > SECONDS_PER_MINUTE)
    [all...]
  /external/chromium_org/sync/protocol/
client_commands.proto 19 optional int32 set_sync_poll_interval = 1; // in seconds
20 optional int32 set_sync_long_poll_interval = 2; // in seconds
24 // Number of seconds to delay between a sessions
29 // Number of seconds to delay before the throttled client should retry.
  /external/chromium_org/tools/valgrind/gtest_exclude/
ipc_tests.gtest.txt 1 # Takes 27-40 seconds to run.
  /external/chromium_org/net/quic/
quic_time.cc 29 QuicTime::Delta QuicTime::Delta::FromSeconds(int64 seconds) {
30 return QuicTime::Delta(base::TimeDelta::FromSeconds(seconds));
103 QuicWallTime QuicWallTime::FromUNIXSeconds(uint64 seconds) {
104 return QuicWallTime(seconds);
144 uint64 seconds = seconds_ + delta.ToSeconds(); local
145 if (seconds < seconds_) {
146 seconds = kuint64max;
148 return QuicWallTime(seconds);
152 uint64 seconds = seconds_ - delta.ToSeconds(); local
153 if (seconds > seconds_)
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/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>
  /bionic/libc/bionic/
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/chromium_org/chrome/common/extensions/api/
idle.json 14 "description": "Returns \"locked\" if the system is locked, \"idle\" if the user has not generated any input for a specified number of seconds, or \"active\" otherwise.",
20 "description": "The system is considered idle if detectionIntervalInSeconds seconds have elapsed since the last user input detected."
38 "description": "Sets the interval, in seconds, used to determine when the system is in an idle state for onStateChanged events. The default interval is 60 seconds.",
44 "description": "Threshold, in seconds, used to determine when the system is in an idle state."
53 "description": "Fired when the system changes to an active, idle or locked state. The event fires with \"locked\" if the screen is locked or the screensaver activates, \"idle\" if the system is unlocked and the user has not generated any input for a specified number of seconds, and \"active\" when the user generates input on an idle system.",
  /frameworks/base/core/tests/coretests/src/android/text/format/
DateUtilsTest.java 27 assertEquals("0 seconds", DateUtils.formatDuration(0));
28 assertEquals("0 seconds", DateUtils.formatDuration(1));
29 assertEquals("0 seconds", DateUtils.formatDuration(499));
32 assertEquals("2 seconds", DateUtils.formatDuration(1500));
38 assertEquals("59 seconds", DateUtils.formatDuration(59000));
39 assertEquals("60 seconds", DateUtils.formatDuration(59500));
  /external/smack/src/org/jivesoftware/smackx/muc/
DiscussionHistory.java 38 * <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 the number of seconds to use to filter the messages received during
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testvidinfo.c 81 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, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds)
    [all...]
  /external/chromium_org/ppapi/api/
pp_time.idl 13 * to the browser and is defined as the number of seconds since the Epoch
21 * in seconds and are used for indicating the time that certain messages were
26 * The units are in seconds, but are not measured relative to any particular
34 * measured in seconds.
  /external/chromium_org/ppapi/c/
pp_time.h 26 * to the browser and is defined as the number of seconds since the Epoch
34 * in seconds and are used for indicating the time that certain messages were
39 * The units are in seconds, but are not measured relative to any particular
47 * measured in seconds.

Completed in 2262 milliseconds

1 2 3 4 5 6 7 8 91011>>