Home
last modified time | relevance | path

Searched refs:opts4 (Results 1 – 7 of 7) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DjsdocParamTagTypeLiteral.symbols74 * @param {object[]} opts4
75 * @param {string} opts4[].x
76 * @param {string=} opts4[].y
77 * @param {string} [opts4[].z]
78 * @param {string} [opts4[].w="hi"]
80 function foo4(opts4) {
82 >opts4 : Symbol(opts4, Decl(0.js, 49, 14))
84 opts4[0].x;
85 >opts4[0].x : Symbol(x, Decl(0.js, 44, 3))
86 >opts4 : Symbol(opts4, Decl(0.js, 49, 14))
DjsdocParamTagTypeLiteral.types88 * @param {object[]} opts4
89 * @param {string} opts4[].x
90 * @param {string=} opts4[].y
91 * @param {string} [opts4[].z]
92 * @param {string} [opts4[].w="hi"]
94 function foo4(opts4) {
95 >foo4 : (opts4: { x: string; y?: string | undefined; z?: string; w?: string;}) => void
96 >opts4 : { x: string; y?: string | undefined; z?: string | undefined; w?: string | undefined; }[]
98 opts4[0].x;
99 >opts4[0].x : string
[all …]
DjsdocParamTagTypeLiteral.errors.txt50 * @param {object[]} opts4
51 * @param {string} opts4[].x
52 * @param {string=} opts4[].y
53 * @param {string} [opts4[].z]
54 * @param {string} [opts4[].w="hi"]
56 function foo4(opts4) {
57 opts4[0].x;
/third_party/typescript/tests/cases/conformance/jsdoc/
DjsdocParamTagTypeLiteral.ts57 function foo4(opts4) {
58 opts4[0].x;
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_screen.h107 D3D12_FEATURE_DATA_D3D12_OPTIONS4 opts4; member
Dd3d12_screen.cpp1240 &screen->opts4, in d3d12_init_screen()
1241 sizeof(screen->opts4)))) { in d3d12_init_screen()
Dd3d12_compiler.cpp145 opts.lower_int16 = !screen->opts4.Native16BitShaderOpsSupported; in compile_nir()