Home
last modified time | relevance | path

Searched refs:common (Results 1 - 25 of 2249) sorted by relevance

12345678910>>...90

/third_party/node/test/parallel/
H A Dtest-stream-construct.js3 const common = require('../common');
10 construct: common.mustCall((callback) => {
14 }).on('error', common.expectsError({
23 construct: common.mustCall((callback) => {
27 }).on('error', common.expectsError({
37 construct: common.mustCall((callback) => {
40 }).on('error', common.expectsError({
50 construct: common.mustCall((callback) => {
53 }).on('error', common
[all...]
H A Dtest-wrap-js-stream-destroy.js4 const common = require('../common');
15 socket.on('error', common.mustNotCall());
16 socket.on('end', common.mustNotCall());
17 socket.on('close', common.mustCall());
31 socket.on('error', common.mustNotCall());
32 socket.on('end', common.mustCall());
33 socket.on('close', common.mustCall());
35 streamWrap.on('error', common.mustNotCall());
39 streamWrap.on('end', common
[all...]
H A Dtest-stream-finished.js3 const common = require('../common');
24 finished(rs, common.mustSucceed());
37 finished(ws, common.mustSucceed());
60 finished(tr, common.mustSucceed(() => {
73 finished(rs, common.mustCall());
81 const done = common.mustCall();
102 finished(rs, { signal }, common.mustCall((err) => {
113 finished(rs, { signal }, common.mustCall((err) => {
127 finished(rs, { signal }, common
[all...]
H A Dtest-primordials-promise.js4 const common = require('../common');
19 Array.prototype[Symbol.iterator] = common.mustNotCall('%Array.prototype%[@@iterator]');
20 Promise.all = common.mustNotCall('%Promise%.all');
21 Promise.allSettled = common.mustNotCall('%Promise%.allSettled');
22 Promise.any = common.mustNotCall('%Promise%.any');
23 Promise.race = common.mustNotCall('%Promise%.race');
27 set: common.mustNotCall('set %Promise.prototype%.catch'),
28 get: common.mustNotCall('get %Promise.prototype%.catch'),
31 set: common
[all...]
H A Dtest-http-generic-streams.js2 const common = require('../common');
5 const MakeDuplexPair = require('../common/duplexpair');
10 const server = http.createServer(common.mustCall((req, res) => {
20 createConnection: common.mustCall(() => clientSide)
21 }, common.mustCall((res) => {
23 res.on('data', common.mustCall((data) => {
26 res.on('end', common.mustCall());
34 const server = http.createServer(common.mustCall((req, res) => {
45 createConnection: common
[all...]
H A Dtest-stream-writable-destroy.js3 const common = require('../common');
12 write.on('finish', common.mustNotCall());
13 write.on('close', common.mustCall());
27 write.on('error', common.mustCall());
28 write.on('finish', common.mustNotCall());
40 write.on('finish', common.mustNotCall());
41 write.on('close', common.mustCall());
42 write.on('error', common.mustCall((err) => {
62 write.on('finish', common
[all...]
H A Dtest-http2-server-startup.js7 const common = require('../common');
8 const commonFixtures = require('../common/fixtures');
10 if (!common.hasCrypto)
11 common.skip('missing crypto');
25 serverTLS.listen(0, common.mustCall(() => serverTLS.close()));
28 serverTLS.on('error', common.mustNotCall());
30 const server = http2.createServer(options, common.mustNotCall());
31 server.listen(0, common.mustCall(() => server.close()));
34 server.on('error', common
[all...]
H A Dtest-fs-rm.js3 const common = require('../common');
4 const tmpdir = require('../common/tmpdir');
25 execSync('git init', common.mustNotMutateObjectDeep({ cwd: gitDirectory }));
29 fs.mkdirSync(dirname, common.mustNotMutateObjectDeep({ recursive: true }));
32 const options = common.mustNotMutateObjectDeep({ flag: 'wx' });
88 fs.rm(dir, common.mustCall((err) => {
92 fs.rm(dir, common.mustNotMutateObjectDeep({ recursive: false }), common.mustCall((err) => {
96 fs.rm(dir, common
[all...]
H A Dtest-process-beforeexit.js23 const common = require('../common');
26 process.once('beforeExit', common.mustCall(tryImmediate));
29 setImmediate(common.mustCall(() => {
30 process.once('beforeExit', common.mustCall(tryTimer));
35 setTimeout(common.mustCall(() => {
36 process.once('beforeExit', common.mustCall(tryListen));
43 .on('listening', common.mustCall(function() {
45 process.once('beforeExit', common.mustCall(tryRepeatedTimer));
58 const repeatedTimer = common
[all...]
H A Dtest-https-set-timeout-server.js23 const common = require('../common');
25 if (!common.hasCrypto)
26 common.skip('missing crypto');
29 const fixtures = require('../common/fixtures');
44 tests.push(common.mustCall(fn));
56 server.listen(common.mustCall(() => {
57 const s = server.setTimeout(50, common.mustCall((socket) => {
66 }).on('error', common.mustCall());
73 common
[all...]
H A Dtest-http2-options-max-headers-exceeds-nghttp2.js4 const common = require('../common');
5 if (!common.hasCrypto) common.skip('missing crypto');
12 server.on('stream', common.mustNotCall());
13 server.on('error', common.mustNotCall());
15 server.listen(0, common.mustCall(() => {
25 client.on('error', common.expectsError({
35 req.on('response', common.mustNotCall());
37 req.on('close', common
[all...]
H A Dtest-stream-pipeline.js3 const common = require('../common');
50 pipeline(read, write, common.mustSucceed(() => {
86 pipeline(read, write, common.mustCall((err) => {
105 const dst = pipeline(read, write, common.mustCall((err) => {
129 read.on('close', common.mustCall());
130 transform.on('close', common.mustCall());
131 write.on('close', common.mustCall());
134 stream.on('error', common.mustCall((err) => {
139 const dst = pipeline(read, transform, write, common
[all...]
H A Dtest-http-set-timeout-server.js23 const common = require('../common');
34 tests.push(common.mustCall(fn));
46 server.listen(common.mustCall(() => {
47 const s = server.setTimeout(50, common.mustCall((socket) => {
55 }).on('error', common.mustCall());
60 const server = http.createServer(common.mustCall((req, res) => {
62 const s = req.setTimeout(50, common.mustCall((socket) => {
69 server.listen(common.mustCall(() => {
74 req.on('error', common
[all...]
H A Dtest-webstreams-abort-controller.js3 const common = require('../common');
36 finished(rs, common.mustCall((err) => {
38 assert.rejects(reader.read(), /AbortError/).then(common.mustCall());
39 assert.rejects(reader.closed, /AbortError/).then(common.mustCall());
42 reader.read().then(common.mustCall((result) => {
61 })(), /AbortError/).then(common.mustCall());
77 finished(rs1, common.mustCall((err) => {
79 assert.rejects(reader1.read(), /AbortError/).then(common.mustCall());
80 assert.rejects(reader1.closed, /AbortError/).then(common
[all...]
/third_party/rust/crates/clap/clap_mangen/tests/
H A Droff.rs1 mod common; modules
6 let cmd = common::basic_command(name); in basic()
7 common::assert_matches_path("tests/snapshots/basic.bash.roff", cmd); in basic()
13 let cmd = common::feature_sample_command(name); in feature_sample()
14 common::assert_matches_path("tests/snapshots/feature_sample.bash.roff", cmd); in feature_sample()
20 let cmd = common::special_commands_command(name); in special_commands()
21 common::assert_matches_path("tests/snapshots/special_commands.bash.roff", cmd); in special_commands()
27 let cmd = common::quoting_command(name); in quoting()
28 common::assert_matches_path("tests/snapshots/quoting.bash.roff", cmd); in quoting()
34 let cmd = common in aliases()
[all...]
/third_party/node/test/node-api/test_make_callback_recurse/
H A Dtest.js3 const common = require('../../common');
6 const binding = require(`./build/${common.buildType}/binding`);
10 const mustCallCheckDomains = common.mustCall(checkDomains);
31 Promise.resolve(1).then(common.mustCall(function() {
36 process.nextTick(common.mustCall(function() {
42 process.nextTick(common.mustCall(function() {
46 makeCallback({}, common.mustCall(function() {
58 makeCallback({}, common.mustCall(function() {
67 setImmediate(common
[all...]
/third_party/node/test/addons/make-callback-recurse/
H A Dtest.js3 const common = require('../../common');
6 const binding = require(`./build/${common.buildType}/binding`);
10 const mustCallCheckDomains = common.mustCall(checkDomains);
30 Promise.resolve(1).then(common.mustCall(() => {
35 process.nextTick(common.mustCall(() => {
41 process.nextTick(common.mustCall(() => {
45 makeCallback({}, common.mustCall(() => {
57 makeCallback({}, common.mustCall(() => {
66 setImmediate(common
[all...]
/third_party/rust/crates/clap/clap_complete/tests/
H A Dpowershell.rs1 mod common; modules
6 let cmd = common::basic_command(name); in basic()
7 common::assert_matches_path( in basic()
18 let cmd = common::feature_sample_command(name); in feature_sample()
19 common::assert_matches_path( in feature_sample()
30 let cmd = common::special_commands_command(name); in special_commands()
31 common::assert_matches_path( in special_commands()
42 let cmd = common::quoting_command(name); in quoting()
43 common::assert_matches_path( in quoting()
54 let cmd = common in aliases()
[all...]
H A Delvish.rs1 mod common; modules
6 let cmd = common::basic_command(name); in basic()
7 common::assert_matches_path( in basic()
18 let cmd = common::feature_sample_command(name); in feature_sample()
19 common::assert_matches_path( in feature_sample()
30 let cmd = common::special_commands_command(name); in special_commands()
31 common::assert_matches_path( in special_commands()
42 let cmd = common::quoting_command(name); in quoting()
43 common::assert_matches_path( in quoting()
54 let cmd = common in aliases()
[all...]
H A Dfish.rs1 mod common; modules
6 let cmd = common::basic_command(name); in basic()
7 common::assert_matches_path( in basic()
18 let cmd = common::feature_sample_command(name); in feature_sample()
19 common::assert_matches_path( in feature_sample()
30 let cmd = common::special_commands_command(name); in special_commands()
31 common::assert_matches_path( in special_commands()
42 let cmd = common::quoting_command(name); in quoting()
43 common::assert_matches_path( in quoting()
54 let cmd = common in aliases()
[all...]
H A Dzsh.rs1 mod common; modules
6 let cmd = common::basic_command(name); in basic()
7 common::assert_matches_path( in basic()
18 let cmd = common::feature_sample_command(name); in feature_sample()
19 common::assert_matches_path( in feature_sample()
30 let cmd = common::special_commands_command(name); in special_commands()
31 common::assert_matches_path( in special_commands()
42 let cmd = common::quoting_command(name); in quoting()
43 common::assert_matches_path( in quoting()
54 let cmd = common in aliases()
[all...]
H A Dbash.rs1 mod common; modules
6 let cmd = common::basic_command(name); in basic()
7 common::assert_matches_path( in basic()
18 let cmd = common::feature_sample_command(name); in feature_sample()
19 common::assert_matches_path( in feature_sample()
30 let cmd = common::special_commands_command(name); in special_commands()
31 common::assert_matches_path( in special_commands()
42 let cmd = common::quoting_command(name); in quoting()
43 common::assert_matches_path( in quoting()
54 let cmd = common in aliases()
[all...]
/third_party/pcre2/pcre2/src/
H A Dpcre2_jit_compile.c250 backtrack_common common; member
261 backtrack_common common; member
283 backtrack_common common; member
293 backtrack_common common; member
298 backtrack_common common; member
312 backtrack_common common; member
332 backtrack_common common; member
344 backtrack_common common; member
592 #define OVECTOR_START (common->ovector_start)
594 #define OVECTOR_PRIV(i) (common
872 next_opcode(compiler_common *common, PCRE2_SPTR cc) next_opcode() argument
1073 check_opcode_types(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend) check_opcode_types() argument
1244 detect_early_fail(compiler_common *common, PCRE2_SPTR cc, int *private_data_start, sljit_s32 depth, int start, BOOL fast_forward_allowed) detect_early_fail() argument
1613 detect_repeat(compiler_common *common, PCRE2_SPTR begin) detect_repeat() argument
1751 set_private_data_ptrs(compiler_common *common, int *private_data_start, PCRE2_SPTR ccend) set_private_data_ptrs() argument
1937 get_framesize(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, BOOL recursive, BOOL *needs_control_head) get_framesize() argument
2123 init_frame(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, int stackpos, int stacktop) init_frame() argument
2257 delayed_mem_copy_init(delayed_mem_copy_status *status, compiler_common *common) delayed_mem_copy_init() argument
2323 recurse_check_bit(compiler_common *common, sljit_sw bit_index) recurse_check_bit() argument
2352 get_recurse_data_length(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, uint32_t *result_flags) get_recurse_data_length() argument
2604 copy_recurse_data(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, int type, int stackptr, int stacktop, uint32_t recurse_flags) copy_recurse_data() argument
3037 set_then_offsets(compiler_common *common, PCRE2_SPTR cc, sljit_u8 *current_offset) set_then_offsets() argument
3104 add_stub(compiler_common *common, struct sljit_jump *start) add_stub() argument
3118 flush_stubs(compiler_common *common) flush_stubs() argument
3133 count_match(compiler_common *common) count_match() argument
3141 allocate_stack(compiler_common *common, int size) allocate_stack() argument
3158 free_stack(compiler_common *common, int size) free_stack() argument
3166 allocate_read_only_data(compiler_common *common, sljit_uw size) allocate_read_only_data() argument
3186 reset_ovector(compiler_common *common, int length) reset_ovector() argument
3225 reset_early_fail(compiler_common *common) reset_early_fail() argument
3275 do_reset_match(compiler_common *common, int length) do_reset_match() argument
3353 copy_ovector(compiler_common *common, int topbracket) copy_ovector() argument
3450 return_with_partial_match(compiler_common *common, struct sljit_label *quit) return_with_partial_match() argument
3488 check_start_used_ptr(compiler_common *common) check_start_used_ptr() argument
3512 char_has_othercase(compiler_common *common, PCRE2_SPTR cc) char_has_othercase() argument
3538 char_othercase(compiler_common *common, unsigned int c) char_othercase() argument
3548 char_get_othercase_bit(compiler_common *common, PCRE2_SPTR cc) char_get_othercase_bit() argument
3624 check_partial(compiler_common *common, BOOL force) check_partial() argument
3654 check_str_end(compiler_common *common, jump_list **end_reached) check_str_end() argument
3684 detect_partial_match(compiler_common *common, jump_list **backtracks) detect_partial_match() argument
3717 process_partial_match(compiler_common *common) process_partial_match() argument
3738 detect_partial_match_to(compiler_common *common, struct sljit_label *label) detect_partial_match_to() argument
3746 peek_char(compiler_common *common, sljit_u32 max, sljit_s32 dst, sljit_sw dstw, jump_list **backtracks) peek_char() argument
3830 peek_char_back(compiler_common *common, sljit_u32 max, jump_list **backtracks) peek_char_back() argument
3903 read_char(compiler_common *common, sljit_u32 min, sljit_u32 max, jump_list **backtracks, sljit_u32 options) read_char() argument
4116 read_char7_type(compiler_common *common, jump_list **backtracks, BOOL negated) read_char7_type() argument
4153 read_char8_type(compiler_common *common, jump_list **backtracks, BOOL negated) read_char8_type() argument
4272 move_back(compiler_common *common, jump_list **backtracks, BOOL must_be_valid) move_back() argument
4359 check_newlinechar(compiler_common *common, int nltype, jump_list **backtracks, BOOL jumpifmatch) check_newlinechar() argument
4395 do_utfreadchar(compiler_common *common) do_utfreadchar() argument
4440 do_utfreadtype8(compiler_common *common) do_utfreadtype8() argument
4476 do_utfreadchar_invalid(compiler_common *common) do_utfreadchar_invalid() argument
4635 do_utfreadnewline_invalid(compiler_common *common) do_utfreadnewline_invalid() argument
4726 do_utfmoveback_invalid(compiler_common *common) do_utfmoveback_invalid() argument
4822 do_utfpeakcharback(compiler_common *common) do_utfpeakcharback() argument
4859 do_utfpeakcharback_invalid(compiler_common *common) do_utfpeakcharback_invalid() argument
4995 do_utfreadchar_invalid(compiler_common *common) do_utfreadchar_invalid() argument
5027 do_utfreadnewline_invalid(compiler_common *common) do_utfreadnewline_invalid() argument
5059 do_utfmoveback_invalid(compiler_common *common) do_utfmoveback_invalid() argument
5087 do_utfpeakcharback_invalid(compiler_common *common) do_utfpeakcharback_invalid() argument
5125 do_getucd(compiler_common *common) do_getucd() argument
5165 do_getucdtype(compiler_common *common) do_getucdtype() argument
5214 mainloop_entry(compiler_common *common) mainloop_entry() argument
5440 scan_prefix(compiler_common *common, PCRE2_SPTR cc, fast_forward_char_data *chars, int max_chars, sljit_u32 *rec_count) scan_prefix() argument
5868 check_fast_forward_char_pair_simd(compiler_common *common, fast_forward_char_data *chars, int max) check_fast_forward_char_pair_simd() argument
5915 fast_forward_first_char2(compiler_common *common, PCRE2_UCHAR char1, PCRE2_UCHAR char2, sljit_s32 offset) fast_forward_first_char2() argument
6001 fast_forward_first_n_chars(compiler_common *common) fast_forward_first_n_chars() argument
6223 fast_forward_first_char(compiler_common *common) fast_forward_first_char() argument
6241 fast_forward_newline(compiler_common *common) fast_forward_newline() argument
6416 fast_forward_start_bits(compiler_common *common) fast_forward_start_bits() argument
6488 search_requested_char(compiler_common *common, PCRE2_UCHAR req_char, BOOL caseless, BOOL has_firstchar) search_requested_char() argument
6564 do_revertframes(compiler_common *common) do_revertframes() argument
6618 check_wordboundary(compiler_common *common) check_wordboundary() argument
6779 optimize_class_ranges(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL invert, jump_list **backtracks) optimize_class_ranges() argument
6931 optimize_class_chars(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL invert, jump_list **backtracks) optimize_class_chars() argument
7032 optimize_class(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL invert, jump_list **backtracks) optimize_class() argument
7040 check_anynewline(compiler_common *common) check_anynewline() argument
7067 check_hspace(compiler_common *common) check_hspace() argument
7106 check_vspace(compiler_common *common) check_vspace() argument
7134 do_casefulcmp(compiler_common *common) do_casefulcmp() argument
7214 do_caselesscmp(compiler_common *common) do_caselesscmp() argument
7312 byte_sequence_compare(compiler_common *common, BOOL caseless, PCRE2_SPTR cc, compare_context *context, jump_list **backtracks) byte_sequence_compare() argument
7504 compile_xclass_matchingpath(compiler_common *common, PCRE2_SPTR cc, jump_list **backtracks) compile_xclass_matchingpath() argument
8244 compile_simple_assertion_matchingpath(compiler_common *common, PCRE2_UCHAR type, PCRE2_SPTR cc, jump_list **backtracks) compile_simple_assertion_matchingpath() argument
8728 compile_char1_matchingpath(compiler_common *common, PCRE2_UCHAR type, PCRE2_SPTR cc, jump_list **backtracks, BOOL check_str_ptr) compile_char1_matchingpath() argument
9133 compile_charn_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, jump_list **backtracks) compile_charn_matchingpath() argument
9231 compile_dnref_search(compiler_common *common, PCRE2_SPTR cc, jump_list **backtracks) compile_dnref_search() argument
9261 compile_ref_matchingpath(compiler_common *common, PCRE2_SPTR cc, jump_list **backtracks, BOOL withchecks, BOOL emptyfail) compile_ref_matchingpath() argument
9426 compile_ref_iterator_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_ref_iterator_matchingpath() argument
9633 compile_recurse_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_recurse_matchingpath() argument
9749 compile_callout_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_callout_matchingpath() argument
9856 compile_assert_matchingpath(compiler_common *common, PCRE2_SPTR cc, assert_backtrack *backtrack, BOOL conditional) compile_assert_matchingpath() argument
10283 match_once_common(compiler_common *common, PCRE2_UCHAR ket, int framesize, int private_data_ptr, BOOL has_alternatives, BOOL needs_control_head) match_once_common() argument
10331 match_capture_common(compiler_common *common, int stacksize, int offset, int private_data_ptr) match_capture_common() argument
10374 match_script_run_common(compiler_common *common, int private_data_ptr, backtrack_common *parent) match_script_run_common() argument
10445 compile_bracket_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_bracket_matchingpath() argument
11006 compile_bracketpos_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_bracketpos_matchingpath() argument
11289 get_iterator_parameters(compiler_common *common, PCRE2_SPTR cc, PCRE2_UCHAR *opcode, PCRE2_UCHAR *type, sljit_u32 *max, sljit_u32 *exact, PCRE2_SPTR *end) get_iterator_parameters() argument
11434 compile_iterator_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_iterator_matchingpath() argument
11946 compile_fail_accept_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_fail_accept_matchingpath() argument
12002 compile_close_matchingpath(compiler_common *common, PCRE2_SPTR cc) compile_close_matchingpath() argument
12021 compile_control_verb_matchingpath(compiler_common *common, PCRE2_SPTR cc, backtrack_common *parent) compile_control_verb_matchingpath() argument
12055 compile_then_trap_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrack_common *parent) compile_then_trap_matchingpath() argument
12086 compile_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrack_common *parent) compile_matchingpath() argument
12417 compile_iterator_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_iterator_backtrackingpath() argument
12545 compile_ref_iterator_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_ref_iterator_backtrackingpath() argument
12570 compile_recurse_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_recurse_backtrackingpath() argument
12590 compile_assert_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_assert_backtrackingpath() argument
12659 compile_bracket_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_bracket_backtrackingpath() argument
13126 compile_bracketpos_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_bracketpos_backtrackingpath() argument
13166 compile_braminzero_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_braminzero_backtrackingpath() argument
13190 compile_control_verb_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_control_verb_backtrackingpath() argument
13252 compile_then_trap_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_then_trap_backtrackingpath() argument
13285 compile_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_backtrackingpath() argument
13476 compile_recurse(compiler_common *common) compile_recurse() argument
13697 compiler_common *common = &common_data; jit_compile() local
[all...]
/third_party/node/test/sequential/
H A Dtest-dgram-bind-shared-ports.js23 const common = require('../common');
37 if (common.isWindows) {
38 worker1.on('error', common.mustCall((err) => {
46 worker1.on('message', common.mustCall((msg) => {
51 worker2.on('message', common.mustCall((msg) => {
59 worker2.on('exit', common.mustCall((code, signal) => {
64 worker1.on('exit', common.mustCall((code, signal) => {
71 process.on('message', common.mustCallAtLeast((msg) => {
76 const socket1 = dgram.createSocket('udp4', common
[all...]
/third_party/typescript/tests/baselines/reference/
H A DnormalizedIntersectionTooComplex.js14 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; }
15 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; }
16 "2": { common?: string; "2"?: number, ref?: Obj<Big["2"]> | Func<Big["2"]>; }
17 "3": { common?: string; "3"?: number, ref?: Obj<Big["3"]> | Func<Big["3"]>; }
18 "4": { common?: string; "4"?: number, ref?: Obj<Big["4"]> | Func<Big["4"]>; }
19 "5": { common?: string; "5"?: number, ref?: Obj<Big["5"]> | Func<Big["5"]>; }
20 "6": { common?: string; "6"?: number, ref?: Obj<Big["6"]> | Func<Big["6"]>; }
21 "7": { common?: string; "7"?: number, ref?: Obj<Big["7"]> | Func<Big["7"]>; }
22 "8": { common?: string; "8"?: number, ref?: Obj<Big["8"]> | Func<Big["8"]>; }
23 "9": { common
[all...]

Completed in 9 milliseconds

12345678910>>...90