/third_party/node/test/parallel/ |
D | test-common-countdown.js | 10 const countdown = new Countdown(2, () => done = true); constant 11 assert.strictEqual(countdown.remaining, 2); 12 countdown.dec(); 13 assert.strictEqual(countdown.remaining, 1); 14 countdown.dec(); 15 assert.strictEqual(countdown.remaining, 0);
|
D | test-http-should-keep-alive.js | 47 const countdown = new Countdown(SHOULD_KEEP_ALIVE.length, () => server.close()); constant 49 const getCountdownIndex = () => SERVER_RESPONSES.length - countdown.remaining; 60 countdown.dec(); 61 if (countdown.remaining) {
|
D | test-http2-origin.js | 91 const countdown = new Countdown(3, () => { constant 101 countdown.dec(); 104 client.request().on('close', mustCall(() => countdown.dec())).resume(); 122 const countdown = new Countdown(2, () => { constant 131 countdown.dec(); 134 client.request().on('close', mustCall(() => countdown.dec())).resume();
|
D | test-http2-too-many-streams.js | 32 const countdown = new Countdown(3, common.mustCall(() => { constant 44 countdown.dec(); 49 req.on('close', () => countdown.dec()); 57 req.on('close', () => countdown.dec());
|
D | test-http2-settings-unsolicited-ack.js | 21 const countdown = new Countdown(3, () => { constant 28 session.on('remoteSettings', common.mustCall(() => countdown.dec())); 41 client.write(kSettingsAck.data, () => countdown.dec()); 43 client.write(kSettingsAck.data, () => countdown.dec());
|
D | test-http2-priority-cycle-.js | 44 const countdown = new Countdown(3, () => { constant 53 req.on('close', () => countdown.dec()); 60 req.on('close', () => countdown.dec()); 67 req.on('close', () => countdown.dec());
|
D | test-http-response-statuscode.js | 75 const countdown = new Countdown(MAX_REQUESTS, () => server.close()); constant 83 countdown.dec(); 84 reqNum = MAX_REQUESTS - countdown.remaining; 85 if (countdown.remaining > 0)
|
D | test-http2-options-max-reserved-streams.js | 13 const countdown = new Countdown(3, () => { constant 40 countdown.dec(); 62 stream.on('close', common.mustCall(() => countdown.dec())); 68 req.on('close', common.mustCall(() => countdown.dec()));
|
D | test-http2-client-upload.js | 25 const countdown = new Countdown(3, () => { constant 39 stream.on('close', () => countdown.dec()); 53 req.on('finish', () => countdown.dec()); 56 str.on('close', () => countdown.dec());
|
D | test-http-information-headers.js | 8 const countdown = new Countdown(2, () => server.close()); constant 47 countdown.dec(); 52 assert.strictEqual(countdown.remaining, 1); 61 countdown.dec();
|
D | test-http2-compat-serverresponse-destroy.js | 39 const countdown = new Countdown(3, () => { constant 49 req.on('close', common.mustCall(() => countdown.dec())); 62 req.on('close', common.mustCall(() => countdown.dec())); 77 req.on('close', common.mustCall(() => countdown.dec()));
|
D | test-http2-server-close-callback.js | 14 const countdown = new Countdown(2, () => { constant 21 client.on('connect', common.mustCall(() => countdown.dec())); 26 countdown.dec();
|
D | test-timers-socket-timeout-removes-other-socket-unref-timer.js | 32 const countdown = new Countdown(2, () => server.close()); constant 36 client.on('end', () => countdown.dec()); 41 client.on('end', () => countdown.dec());
|
D | test-http2-no-more-streams.js | 26 const countdown = new Countdown(2, () => { constant 38 req.on('end', () => countdown.dec()); 50 req.on('error', () => countdown.dec());
|
D | test-http-set-cookies.js | 28 const countdown = new Countdown(2, () => server.close()); constant 58 countdown.dec(); 73 countdown.dec();
|
D | test-http2-multi-content-length.js | 20 const countdown = new Countdown(2, () => { constant 48 req.on('close', common.mustCall(() => countdown.dec())); 58 req.on('close', common.mustCall(() => countdown.dec()));
|
D | test-http2-client-stream-destroy-before-connect.js | 31 const countdown = new Countdown(2, () => { constant 35 client.on('connect', () => countdown.dec()); 48 countdown.dec();
|
D | test-http-client-agent.js | 48 const countdown = new Countdown(max, () => { constant 61 countdown.dec(); 62 if (countdown.remaining > 0) {
|
D | test-http2-max-concurrent-streams.js | 22 const countdown = new Countdown(2, () => { constant 38 req.on('close', common.mustCall(() => countdown.dec())); 49 req.on('close', common.mustCall(() => countdown.dec()));
|
D | test-http2-endafterheaders.js | 20 const countdown = new Countdown(2, () => server.close()); constant 33 countdown.dec(); 47 countdown.dec();
|
D | test-http-agent-destroyed-socket.js | 69 const countdown = new Countdown(2, () => server.close()); constant 70 request2.socket.on('close', common.mustCall(() => countdown.dec())); 71 response.on('end', common.mustCall(() => countdown.dec()));
|
/third_party/jerryscript/tests/unit-core/ |
D | test-exec-stop.cpp | 77 int countdown = 6; variable 78 jerry_set_vm_exec_stop_callback (vm_exec_stop_callback, &countdown, 16); 89 TEST_ASSERT (countdown == 0); 100 countdown = 6; 115 TEST_ASSERT (countdown == 0);
|
/third_party/alsa-lib/test/ |
D | queue_timer.c | 33 int countdown = -1; in main() local 75 while (countdown != 0) { in main() 114 countdown = 2; in main() 117 if (countdown > 0) --countdown; in main()
|
/third_party/flutter/flutter/packages/flutter_localizations/lib/src/l10n/ |
D | cupertino_en.arb | 49 … an hour integer number in a countdown timer. The reference abbreviation is what iOS does in the s… 56 …a minute integer number in a countdown timer. The reference abbreviation is what iOS does in the s… 63 …a second integer number in a countdown timer. The reference abbreviation is what iOS does in the s…
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | exception_safety_testing.cc | 34 int countdown = -1; variable 39 if (countdown-- == 0) { in MaybeThrow() 46 int countdown) noexcept { in FailureMessage() argument
|