Home
last modified time | relevance | path

Searched refs:opts2 (Results 1 – 12 of 12) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DjsdocParamTagTypeLiteral.symbols38 * @param {Object[]} opts2
39 * @param {string} opts2[].anotherX
40 * @param {string=} opts2[].anotherY
42 function foo2(/** @param opts2 bad idea theatre! */opts2) {
44 >opts2 : Symbol(opts2, Decl(0.js, 27, 14))
46 opts2[0].anotherX;
47 >opts2[0].anotherX : Symbol(anotherX, Decl(0.js, 24, 3))
48 >opts2 : Symbol(opts2, Decl(0.js, 27, 14))
DjsdocParamTagTypeLiteral.types43 * @param {Object[]} opts2
44 * @param {string} opts2[].anotherX
45 * @param {string=} opts2[].anotherY
47 function foo2(/** @param opts2 bad idea theatre! */opts2) {
48 >foo2 : (opts2: { anotherX: string; anotherY?: string | undefined;}) => void
49 >opts2 : { anotherX: string; anotherY?: string | undefined; }[]
51 opts2[0].anotherX;
52 >opts2[0].anotherX : string
53 >opts2[0] : { anotherX: string; anotherY?: string | undefined; }
54 >opts2 : { anotherX: string; anotherY?: string | undefined; }[]
[all …]
DjsdocParamTagTypeLiteral.errors.txt30 * @param {Object[]} opts2
31 * @param {string} opts2[].anotherX
32 * @param {string=} opts2[].anotherY
34 function foo2(/** @param opts2 bad idea theatre! */opts2) {
35 opts2[0].anotherX;
/third_party/typescript/tests/cases/conformance/jsdoc/
DjsdocParamTagTypeLiteral.ts35 function foo2(/** @param opts2 bad idea theatre! */opts2) {
36 opts2[0].anotherX;
/third_party/ntfs-3g/ntfsprogs/
Dmkntfs.c574 static void mkntfs_init_options(struct mkntfs_options *opts2) in mkntfs_init_options() argument
576 if (!opts2) in mkntfs_init_options()
579 memset(opts2, 0, sizeof(*opts2)); in mkntfs_init_options()
582 opts2->cluster_size = -1; in mkntfs_init_options()
583 opts2->heads = -1; in mkntfs_init_options()
584 opts2->mft_zone_multiplier = -1; in mkntfs_init_options()
585 opts2->num_sectors = -1; in mkntfs_init_options()
586 opts2->part_start_sect = -1; in mkntfs_init_options()
587 opts2->sector_size = -1; in mkntfs_init_options()
588 opts2->sectors_per_track = -1; in mkntfs_init_options()
[all …]
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_screen.h82 D3D12_FEATURE_DATA_D3D12_OPTIONS2 opts2; member
Dd3d12_blit.cpp204 screen->opts2.ProgrammableSamplePositionsTier == in direct_copy_supported()
224 if ((screen->opts2.ProgrammableSamplePositionsTier == in direct_copy_supported()
333 screen->opts2.ProgrammableSamplePositionsTier != in copy_subregion_no_barriers()
352 assert((screen->opts2.ProgrammableSamplePositionsTier != in copy_subregion_no_barriers()
Dd3d12_screen.cpp927 &screen->opts2, in d3d12_init_screen()
928 sizeof(screen->opts2)))) { in d3d12_init_screen()
/third_party/boost/libs/histogram/test/
Dalgorithm_reduce_test.cpp178 reduce_command opts2[3] = {rebin(1, 3), rebin(0, 2), shrink(0, 2, 5)}; in run_tests() local
179 auto hr3 = reduce(h, opts2); in run_tests()
/third_party/ffmpeg/libavformat/
Dhls.c625 AVDictionary **opts, AVDictionary *opts2, int *is_http_out) in open_url() argument
673 av_dict_copy(&tmp, opts2, 0); in open_url()
686 av_dict_copy(&tmp, opts2, 0); in open_url()
Ddashdec.c402 AVDictionary **opts, AVDictionary *opts2, int *is_http) in open_url() argument
443 av_dict_copy(&tmp, opts2, 0); in open_url()
/third_party/node/test/parallel/
Dtest-util-inspect.js948 return { [util.inspect.custom]: common.mustCall((depth, opts2) => {
949 assert.deepStrictEqual(clone, opts2);