/third_party/typescript/tests/baselines/reference/ |
D | deprecatedBool.js | 2 var b4: boolean; variable 7 var b4; variable
|
D | noImplicitAnyDestructuringVarDeclaration.js | 10 var [a4] = [undefined], {b4} = { b4: null }, c4 = undefined, d4 = null; // error property 19 var a4 = [undefined][0], b4 = { b4: null }.b4, c4 = undefined, d4 = null; // error property
|
D | strictNullChecksNoWidening.js | 9 var b4 = [[], []]; variable 26 var b4 = [[], []]; variable
|
D | destructuringObjectBindingPatternAndAssignment1ES5.js | 16 var {b4 = 1}: any = { b4: 100000 }; property 70 var _c = { b4: 100000 }.b4, b4 = _c === void 0 ? 1 : _c; property
|
D | bestCommonTypeWithOptionalProperties.js | 14 var b4 = [y, z, x]; variable 26 var b4 = [y, z, x]; variable
|
D | destructuringVariableDeclaration1ES6.js | 11 var [b2 = 3, b3 = true, b4 = temp] = [3, false, { t1: false, t2: "hello" }]; variable 33 var {e: [e1, e2, e3 = { b1: 1000, b4: 200 }]} = { e: [1, 2, { b1: 4, b4: 0 }] }; property 71 var { e: [e1, e2, e3 = { b1: 1000, b4: 200 }] } = { e: [1, 2, { b1: 4, b4: 0 }] }; property
|
D | collisionSuperAndPropertyNameAsConstuctorParameter.js | 25 class b4 extends a { class 77 var b4 = /** @class */ (function (_super_1) { function 79 function b4(_super) { function
|
D | declarationEmitDestructuringObjectLiteralPattern2.js | 24 var _c = f15(), a4 = _c.a4, b4 = _c.b4, c4 = _c.c4; variable 41 var a4: string, b4: number, c4: boolean; variable
|
D | operatorsAndIntersectionTypes.js | 31 const b4 = serialNo === serialNo; constant 57 var b4 = serialNo === serialNo; variable
|
D | destructuringArrayBindingPatternAndAssignment1ES6.js | 32 var [b3, b4, b5]: [number, number, string] = [1, 2, "string"]; variable 81 var [b3, b4, b5] = [1, 2, "string"]; variable
|
D | destructuringVariableDeclaration1ES5.js | 11 var [b2 = 3, b3 = true, b4 = temp] = [3, false, { t1: false, t2: "hello" }]; variable 33 var {e: [e1, e2, e3 = { b1: 1000, b4: 200 }]} = { e: [1, 2, { b1: 4, b4: 0 }] }; property 76 var _q = { e: [1, 2, { b1: 4, b4: 0 }] }.e, e1 = _q[0], e2 = _q[1], _r = _q[2], e3 = _r === void 0 … property
|
/third_party/typescript/tests/cases/compiler/ |
D | declarationEmitDestructuringObjectLiteralPattern2.ts | 11 var { a4, b4, c4 } = f15(); variable 14 export var { a4, b4, c4 } = f15(); variable
|
D | declarationEmitDestructuringObjectLiteralPattern.ts | 19 var { a4, b4, c4 } = f15(); variable 22 export var { a4, b4, c4 } = f15(); variable
|
D | deprecatedBool.ts | 1 var b4: boolean; variable
|
D | collisionSuperAndPropertyNameAsConstuctorParameter.ts | 24 class b4 extends a { class
|
/third_party/opencl-headers/tests/ |
D | test_headers.c | 35 cl_char4 b4 = a4; in test_char() local 95 cl_uchar4 b4 = a4; in test_uchar() local 155 cl_short4 b4 = a4; in test_short() local 215 cl_ushort4 b4 = a4; in test_ushort() local 275 cl_int4 b4 = a4; in test_int() local 335 cl_uint4 b4 = a4; in test_uint() local 395 cl_long4 b4 = a4; in test_long() local 455 cl_ulong4 b4 = a4; in test_ulong() local 515 cl_float4 b4 = a4; in test_float() local 577 cl_double4 b4 = a4; in test_double() local
|
/third_party/boost/libs/numeric/ublas/test/opencl/ |
D | norm2_test.cpp | 20 bench_norm2<std::complex<double>, 10, 10> b4; in main() local
|
D | outer_prod_test.cpp | 20 bench_outer_prod<std::complex<double>, 10, 10> b4; in main() local
|
D | prod_test.cpp | 18 bench_prod<std::complex<double>, ublas::basic_row_major<>, 10, 10> b4; in main() local
|
D | transposition_test.cpp | 10 bench_trans<std::complex<double>, ublas::basic_row_major<>, 10, 10> b4; in main() local
|
D | elementwise_operations_with_constants_test.cpp | 18 bench_elementwise_constant<std::complex<double>, ublas::basic_row_major<>, 10, 10> b4; in main() local
|
D | elementwise_operations_test.cpp | 22 bench_elementwise <std::complex<float>, ublas::basic_column_major<>, 10, 10> b4; in main() local
|
/third_party/boost/libs/type_erasure/test/ |
D | test_binding.cpp | 70 binding<typeid_<_a> > b4(b1, make_binding<boost::mpl::map<boost::mpl::pair<_a, _a> > >()); in BOOST_AUTO_TEST_CASE() local 99 binding<typeid_<_a> > b4(b1, make_binding<boost::mpl::map<boost::mpl::pair<_a, _a> > >()); in BOOST_AUTO_TEST_CASE() local
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/ |
D | strictNullChecksNoWidening.ts | 10 var b4 = [[], []]; variable
|
/third_party/typescript/tests/cases/conformance/es6/destructuring/ |
D | destructuringObjectBindingPatternAndAssignment1ES5.ts | 15 var {b4 = 1}: any = { b4: 100000 }; variable
|