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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/cryptotoken/
countdown.js 6 * @fileoverview Provides a countdown-based timer interface.
11 * A countdown timer.
14 function Countdown() {}
18 * @param {number} timeoutMillis how long, in milliseconds, the countdown lasts.
19 * @param {Function=} cb called back when the countdown expires.
22 Countdown.prototype.setTimeout = function(timeoutMillis, cb) {};
25 Countdown.prototype.clearTimeout = function() {};
30 Countdown.prototype.millisecondsUntilExpired = function() {};
33 Countdown.prototype.expired = function() {};
38 * @return {!Countdown} new clone
    [all...]
countdowntimer.js 6 * @fileoverview Provides a countdown-based timer implementation.
14 * @param {number=} timeoutMillis how long, in milliseconds, the countdown
16 * @param {Function=} cb called back when the countdown expires.
18 * @implements {Countdown}
31 * @param {number} timeoutMillis how long, in milliseconds, the countdown lasts.
32 * @param {Function=} cb called back when the countdown expires.
78 * @return {!Countdown} new clone.
106 * @param {number} timeoutMillis How long, in milliseconds, the countdown lasts.
107 * @param {function()=} opt_cb Called back when the countdown expires.
108 * @return {!Countdown} The timer
    [all...]
devicefactoryregistry.js 13 * @param {!CountdownFactory} countdownFactory A countdown timer factory.
33 /** @return {!CountdownFactory} A countdown factory. */
factoryregistry.js 12 * @param {!CountdownFactory} countdownFactory A countdown timer factory.
30 /** @return {!CountdownFactory} A countdown factory. */
  /libcore/jsr166-tests/src/test/java/jsr166/
CountDownLatchTest.java 29 * getCount returns initial count and decreases after countDown
34 l.countDown();
39 * countDown decrements count when positive and has no effect when zero
44 l.countDown();
46 l.countDown();
51 * await returns after countDown to zero, but not before
60 pleaseCountDown.countDown();
67 l.countDown();
70 l.countDown();
76 * timed await returns after countDown to zer
    [all...]
ExchangerTest.java 68 threadStarted.countDown();
85 threadStarted.countDown();
122 exchanged.countDown();
128 exchanged.countDown();
141 interrupted.countDown();
ScheduledExecutorSubclassTest.java 79 done.countDown();
99 done.countDown();
122 done.countDown();
144 done.countDown();
168 done.countDown();
339 threadStarted.countDown();
346 done.countDown();
364 threadStarted.countDown();
367 threadDone.countDown();
371 threadProceed.countDown();
    [all...]
ScheduledExecutorTest.java 27 done.countDown();
47 done.countDown();
70 done.countDown();
92 done.countDown();
116 done.countDown();
289 threadStarted.countDown();
296 done.countDown();
314 threadStarted.countDown();
317 threadDone.countDown();
321 threadProceed.countDown();
    [all...]
FutureTaskTest.java 402 pleaseCancel.countDown();
433 pleaseCancel.countDown();
460 cancelled.countDown();
477 pleaseCancel.countDown();
506 pleaseCancel.countDown();
516 cancelled.countDown();
539 pleaseRun.countDown();
545 pleaseRun.countDown();
578 pleaseSet.countDown();
584 pleaseSet.countDown();
    [all...]
  /development/samples/browseable/Timer/
_index.jd 7 This simple wearable app allows the user to set a countdown timer. It runs
  /packages/apps/Camera2/src/com/android/camera/ui/
CountDownView.java 34 * This class manages the looks of the countdown.
48 * Listener that gets notified when the countdown status has
53 * Gets notified when the remaining seconds for the countdown
56 * @param remainingSeconds seconds remained for countdown
61 * Gets called when countdown is finished.
71 * Returns whether countdown is on-going.
78 * Responds to preview area change by centering th countdown UI in the new
92 // Countdown has finished.
130 * Sets a listener that gets notified when the status of countdown has changed.
137 * Starts showing countdown in the UI
    [all...]
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
AbstractListenableFutureTest.java 58 latch.countDown();
86 successLatch.countDown();
94 latch.countDown();
120 latch.countDown();
143 successLatch.countDown();
160 latch.countDown();
172 listenerLatch.countDown();
182 successLatch.countDown();
197 latch.countDown();
226 latch.countDown();
    [all...]
  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmActivity.java 33 * When the user clicks the "Start Alarm Service" button, it triggers a repeating countdown
38 * When the user clicks the "Stop Alarm Service" button, it stops the countdown timer.
73 // Finds the button that starts the repeating countdown timer
79 // Finds the button that stops countdown timer
90 // countdown timer.
99 // Sets a repeating countdown timer that triggers AlarmService
107 // Notifies the user that the repeating countdown timer has been started
117 // countdown timer.
122 // Cancels the repeating countdown timer
125 // Notifies the user that the repeating countdown timer has been stoppe
    [all...]
  /frameworks/base/core/java/android/os/
CountDownTimer.java 20 * Schedule a countdown until a time in the future, with
23 * Example of showing a 30 second countdown in a text field:
42 * compared to the countdown interval.
65 * to {@link #start()} until the countdown is done and {@link #onFinish()}
76 * Cancel the countdown.
84 * Start the countdown.
  /external/lldb/test/functionalities/recursion/
main.cpp 24 int countdown=1; local
27 root->value = countdown;
30 root->next = new node(++countdown);
  /external/skia/include/utils/
SkCountdown.h 20 * Resets the countdown to the count provided.
  /external/chromium_org/ash/system/chromeos/session/
logout_confirmation_dialog.h 23 // countdown and informs the user that a logout will happen automatically if no
24 // choice is made before the countdown has expired.
logout_confirmation_controller_unittest.cc 187 // a zero-length countdown is requested.
195 // Verifies that the user is logged out when the countdown expires.
207 // request's countdown ends before the original request's, the user is logged
208 // out when the new countdown expires.
224 // request's countdown ends after the original request's, the user is logged
225 // out when the original countdown expires.
238 // Verifies that when the screen is locked while the countdown is running, the
239 // user is not logged out, even when the original countdown expires.
260 // out, even when the original countdown expires.
271 // request is handled correctly and the user is logged out when the countdown
    [all...]
  /external/eigen/test/
exceptions.cpp 43 countdown--;
44 if(countdown<=0)
69 static int countdown; member in class:ScalarWithExceptions
77 int ScalarWithExceptions::countdown = 0; member in class:ScalarWithExceptions
81 ScalarWithExceptions::countdown = 100; \
  /cts/tests/tests/content/src/android/content/cts/
MockSyncAdapter.java 97 mLatch.countDown();
111 mLatch.countDown();
126 mLatch.countDown();
  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 16 * zero due to invocations of the {@link #countDown} method, after which
27 * #countDown}. A {@code CountDownLatch} initialized to <em>N</em>
32 * doesn't require that threads calling {@code countDown} wait for
38 * of worker threads use two countdown latches:
56 * startSignal.countDown(); // let all threads proceed
73 * doneSignal.countDown();
110 * doneSignal.countDown();
119 * {@code countDown()}
165 * @param count the number of times {@link #countDown} must be invoked
185 * {@link #countDown} method; o
    [all...]
  /developers/build/prebuilts/gradle/Timer/Application/src/main/res/values/
base-strings.xml 23 This simple wearable app allows the user to set a countdown timer. It runs
  /development/samples/browseable/Timer/Application/res/values/
base-strings.xml 23 This simple wearable app allows the user to set a countdown timer. It runs
  /external/chromium_org/build/android/pylib/utils/
watchdog_timer.py 26 """Resets the timeout countdown."""
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ListenableFutureTaskTest.java 47 runLatch.countDown();
65 listenerLatch.countDown();
97 taskLatch.countDown();
110 taskLatch.countDown();

Completed in 570 milliseconds

1 2 3 4 5 6 7 8 91011>>