/third_party/typescript/tests/cases/compiler/ |
D | noImplicitAnyParametersInInterface.ts | 31 f8(x1, y1: number): any; method 32 f8(x2: string, y2): any; method 33 f8(x3, y3): any; method
|
D | unusedParametersWithUnderscore.ts | 25 var f8 = function (_) { }; variable
|
D | controlFlowArrayErrors.ts | 61 function f8() { function
|
D | reachabilityChecks5.ts | 82 function f8(x): number { function
|
D | reachabilityChecks6.ts | 82 function f8(x) { function
|
D | noImplicitAnyParametersInBareFunctions.ts | 25 function f8(x1, y1: number): any; function
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/ |
D | functionWithMultipleReturnStatements.ts | 58 function f8<T extends U, U extends V, V>(x: T, y: U) { function
|
/third_party/typescript/tests/cases/conformance/types/literal/ |
D | literalTypes3.ts | 54 function f8(x: number | "foo" | "bar") { function
|
D | numericLiteralTypes3.ts | 91 function f8(x: 0 | 2 | 4) { function
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | controlFlowTruthiness.ts | 81 function f8<T>(x: T) { function
|
D | controlFlowOptionalChain2.ts | 99 function f8(x: X | N | null) { function
|
/third_party/typescript/tests/baselines/reference/ |
D | controlFlowArrayErrors.js | 60 function f8() { function
|
D | controlFlowNoImplicitAny.js | 89 function f8() { function
|
D | callSignaturesWithDuplicateParameters.js | 14 var f8 = <T>(x: T, y: T) => { } variable 52 var f8 = function (x, y) { }; function
|
/third_party/typescript/tests/cases/conformance/functions/ |
D | parameterInitializersForwardReferencing1.ts | 37 function f8(foo1: string, bar = foo1) { } function
|
D | parameterInitializersForwardReferencing1_es6.ts | 39 function f8(foo1: string, bar = foo1) { } function
|
/third_party/boost/libs/phoenix/test/boost_bind_compatibility/ |
D | bind_stdcall_mf_test.cpp | 66 …int __stdcall f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3, … in f8() function 153 bind(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local 154 bind(&X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local
|
D | bind_void_mf_test.cpp | 72 …int f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3, a4, a5, a6… in f8() function 156 bind<void>(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local 157 bind<void>(&X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local
|
D | bind_fastcall_mf_test.cpp | 66 …void __fastcall f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3… in f8() function 151 bind(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local 152 bind(&X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local
|
D | bind_mf2_test.cpp | 64 …int f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3, a4, a5, a6… in f8() function 149 bind(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8 )(); in member_function_test() local 150 bind(&X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8 )(); in member_function_test() local
|
D | bind_cdecl_mf_test.cpp | 46 …int __cdecl f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3, a4… in f8() function 131 bind(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local 132 bind(&X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local
|
/third_party/boost/libs/bind/test/ |
D | bind_cdecl_mf_test.cpp | 65 …int __cdecl f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3, a4… in f8() function 149 bind(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local 150 bind(&X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local
|
D | bind_noexcept_mf_test.cpp | 56 …int f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) noexcept { f7(a1, a2, a3, a… in f8() function 138 boost::bind(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local 139 boost::bind(&X::f8, boost::ref(x), 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local
|
D | bind_stdcall_mf_test.cpp | 65 …int __stdcall f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3, … in f8() function 149 bind(&X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local 150 bind(&X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8)(); in member_function_test() local
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript2018/forAwait/ |
D | parser.forAwait.es2018.ts | 35 async function f8() { function
|