/external/lldb/test/functionalities/recursion/ |
main.cpp | 24 int countdown=1; local 27 root->value = countdown; 30 root->next = new node(++countdown);
|
/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...] |
devicefactoryregistry.js | 13 * @param {!CountdownFactory} countdownFactory A countdown timer factory. 33 /** @return {!CountdownFactory} A countdown factory. */
|
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...] |
factoryregistry.js | 12 * @param {!CountdownFactory} countdownFactory A countdown timer factory. 30 /** @return {!CountdownFactory} A countdown factory. */
|
/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; \
|
/external/chromium_org/remoting/webapp/ |
host_screen.js | 238 * @type {boolean} Whether or not the access code timeout countdown is running. 244 * @type {number} The id of the access code expiry countdown timer. 266 * Stop the access code timeout countdown if it is running. 279 * Constants controlling the access code timer countdown display. 286 * Show/hide or restyle various elements, depending on the remaining countdown 306 document.getElementById('access-code-countdown').hidden =
|
main.css | 567 #access-code-countdown-container {
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
mouse_inactivity_watcher.js | 78 * and cancels the countdown. 91 * Called when user activity has stopped. Re-starts the countdown.
|
/external/eigen/Eigen/src/Core/arch/NEON/ |
PacketMath.h | 100 Packet4f countdown = EIGEN_INIT_NEON_PACKET4(0, 1, 2, 3); local 101 return vaddq_f32(pset1<Packet4f>(a), countdown); 105 Packet4i countdown = EIGEN_INIT_NEON_PACKET4(0, 1, 2, 3); local 106 return vaddq_s32(pset1<Packet4i>(a), countdown);
|