/third_party/typescript/tests/baselines/reference/ |
H A D | taggedTemplateStringsWithOverloadResolution3.js | 29 function fn3<T>(strs: TemplateStringsArray, n: T): string; 30 function fn3<T, U>(strs: TemplateStringsArray, s: string, t: T, u: U): U; 31 function fn3<T, U, V>(strs: TemplateStringsArray, v: V, u: U, t: T): number; 32 function fn3() { return null; } function 34 var s = fn3 `${ 3 }`; 35 var s = fn3 `${'' }${ 3 }${ '' }`; 36 var n = fn3 `${ 5 }${ 5 }${ 5 }`; 40 var s = fn3 `${ 4 }` 41 var s = fn3 `${ '' }${ '' }${ '' }`; 42 var n = fn3 ` [all...] |
H A D | taggedTemplateStringsWithOverloadResolution3_ES6.js | 29 function fn3<T>(strs: TemplateStringsArray, n: T): string; 30 function fn3<T, U>(strs: TemplateStringsArray, s: string, t: T, u: U): U; 31 function fn3<T, U, V>(strs: TemplateStringsArray, v: V, u: U, t: T): number; 32 function fn3() { return null; } function 34 var s = fn3 `${ 3 }`; 35 var s = fn3 `${'' }${ 3 }${ '' }`; 36 var n = fn3 `${ 5 }${ 5 }${ 5 }`; 40 var s = fn3 `${ 4 }` 41 var s = fn3 `${ '' }${ '' }${ '' }`; 42 var n = fn3 ` [all...] |
H A D | overloadResolution.js | 48 function fn3<T>(n: T): string; 49 function fn3<T, U>(s: string, t: T, u: U): U; 50 function fn3<T, U, V>(v: V, u: U, t: T): number; 51 function fn3() { return null; } function 53 var s = fn3(3); 54 var s = fn3('', 3, ''); 55 var n = fn3(5, 5, 5); 59 var s = fn3<number>(4); 60 var s = fn3<string, string>('', '', ''); 61 var n = fn3<numbe [all...] |
H A D | overloadResolutionConstructors.js | 50 interface fn3 { 55 var fn3: fn3; variable 57 var s = new fn3(3); 58 var s = new fn3('', 3, ''); 59 var n = new fn3(5, 5, 5); 63 var s = new fn3<number>(4); 64 var s = new fn3<string, string>('', '', ''); 65 var n = new fn3<number, string, string>('', '', 3); 68 new fn3<numbe 162 var fn3; global() variable [all...] |
H A D | functionNameConflicts.js | 13 function fn3() { } function 14 var fn3; variable 40 function fn3() { }
41 var fn3;
variable
|
H A D | enumMemberReduction.js | 28 export function fn3(optionalEnum?: MyEnum) { 48 exports.fn6 = exports.fn5 = exports.fn4 = exports.fn3 = exports.fn2 = exports.fn = void 0;
75 function fn3(optionalEnum) {
function 78 exports.fn3 = fn3;
|
H A D | implicitAnyDeclareFunctionWithoutFormalType2.js | 12 // generates function fn3(); 13 function fn3() { function 30 // generates function fn3();
31 function fn3() {
40 declare function fn3(): any;
|
H A D | functionOverloadErrors.js | 18 function fn3(x: string): string; 19 function fn3(y: string): number; 20 function fn3(): any { 127 function fn3() {
function
|
H A D | collisionCodeGenModuleWithFunctionChildren.js | 15 function fn3() { 37 function fn3() {
|
H A D | witness.js | 95 fn3() { 97 return new a(this.fn3); 225 C.prototype.fn3 = function () {
227 return new a(this.fn3);
|
H A D | collisionCodeGenModuleWithMethodChildren.js | 20 fn3() { 63 e.prototype.fn3 = function () {
|
H A D | invalidReturnStatements.js | 5 function fn3(): boolean { } 42 function fn3() { }
function
|
H A D | returnStatements.js | 5 function fn3(): void { return undefined; } 46 function fn3() { return undefined; }
function
|
H A D | asyncFunctionDeclaration15_es6.js | 8 async function fn3(): any { } // error 34 function fn3() {
function
|
H A D | logicalOrOperatorWithTypeParameters.js | 19 function fn3<T extends { a: string; b: string }, U extends { a: string; b: number }>(t: T, u: U) { 42 function fn3(t, u) {
function
|
H A D | asyncAwaitWithCapturedBlockScopeVar.js | 19 async function fn3() { 109 function fn3() {
function
|
H A D | asyncFunctionDeclaration15_es5.js | 8 async function fn3(): any { } // error 38 function fn3() {
function
|
H A D | conditionalTypesSimplifyWhenTrivial.js | 11 const fn3 = <Params>( 75 var fn3 = function (params) { return params; };
function
|
H A D | instanceOfAssignability.js | 39 function fn3(x: Base|Derived1) { function 153 function fn3(x) {
|
/third_party/node/deps/npm/node_modules/retry/test/integration/ |
H A D | test-retry-wrap.js | 10 fn3: function() {} 19 assert.equal(lib.fn3.name, 'bound retryWrapper'); 27 assert.equal(lib.fn3.name, 'bound retryWrapper'); 30 assert.equal(lib.fn3.options.retries, 2); 35 retry.wrap(lib, ['fn2', 'fn3']); 38 assert.equal(lib.fn3.name, 'bound retryWrapper'); 43 retry.wrap(lib, {retries: 2}, ['fn2', 'fn3']); 46 assert.equal(lib.fn3.name, 'bound retryWrapper'); 48 assert.equal(lib.fn3.options.retries, 2);
|
/third_party/typescript/tests/baselines/reference/convertToAsyncFunction/ |
H A D | convertToAsyncFunction_NestedFunctionRightLocation.js | 5 function /*[#|*/fn3/*|]*/(){ 8 return fn3(); 17 async function fn3(){ 21 return fn3();
|
/third_party/node/test/fixtures/apilinks/ |
H A D | exports.js | 12 function fn3() {}; function 13 exports.fn3 = fn3;
|
/third_party/ffmpeg/libavfilter/ |
H A D | colorspacedsp_yuv2yuv_template.c | 35 #undef fn3 macro 36 #define fn3(a,b,c,d) a##_##d##p##b##to##c##_c macro 37 #define fn2(a,b,c,d) fn3(a,b,c,d)
|
H A D | median_template.c | 41 #undef fn3 macro 45 #define fn3(a,b) a##_##b macro 46 #define fn2(a,b) fn3(a,b)
|
/third_party/node/test/js-native-api/test_function/ |
H A D | test_function.c | 165 napi_value fn3; in Init() local 167 env, "Name_extra", 5, TestFunctionName, NULL, &fn3)); in Init() 190 napi_set_named_property(env, exports, "TestNameShort", fn3)); in Init()
|