Home
last modified time | relevance | path

Searched defs:foo3 (Results 1 – 25 of 269) sorted by relevance

1234567891011

/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/
DtypeParametersAreIdenticalToThemselves.ts11 function foo3<T, U>(x: T, y: U) { function
30 foo3<T>(x: T); method in C
48 foo3<T>(x: T); method in C2
60 foo3<T>(x: T); method
61 foo3<T>(x: T); // no error, different declaration for each T method
74 foo3<T>(x: T); method
75 foo3<T>(x: T); // no error, different declaration for each T method
/third_party/typescript/tests/baselines/reference/
DfunClodule.js16 function foo3() { } function
20 class foo3 { } // Should error class
24 (function (foo3) { argument
29 function foo3() { function
Des6ModuleFunctionDeclaration.js10 export function foo3() { function
40 function foo3() { function
52 function foo3() { function
DcollisionCodeGenModuleWithModuleReopening.js21 var foo3 = new m2.c1(); variable
29 var foo3 = new m2.c1(); variable
65 var foo3 = new m2.c1(); variable
77 var foo3 = new m2.c1(); variable
DnullishCoalescingOperator7.js8 const foo3 = a ?? 'foo' ? (b ?? 'bar') : (c ?? 'baz'); constant
19 var foo3 = (a !== null && a !== void 0 ? a : 'foo') ? (b !== null && b !== void 0 ? b : 'bar') : (c… variable
DpropertySignatures.js11 var foo3: { (): string; (): string; }; variable
31 var foo3; variable
DpropertyAssignment.js8 var foo3: { ():void; } variable
22 var foo3; variable
DtypeParametersAreIdenticalToThemselves.js92 C.prototype.foo3 = function (x) { }; method in C
101 C2.prototype.foo3 = function (x) { }; method in C2
DwidenToAny2.js9 function foo3(x) { function
DregExpWithSlashInCharClass.js4 var foo3 = "a/".replace(/.[/no sleep /till/]/, "bugfix"); variable
/third_party/typescript/tests/cases/compiler/
Des6ModuleFunctionDeclaration.ts10 export function foo3() { function
20 export function foo3() { function
DcollisionCodeGenModuleWithModuleReopening.ts20 var foo3 = new m2.c1(); variable
28 var foo3 = new m2.c1(); variable
DinvocationExpressionInFunctionParameter.ts3 function foo3(x = foo1(123)) { //should error, 123 is not string function
DinitializedParameterBeforeNonoptionalNotOptional.ts9 export declare function foo3({a, b: {c}}: { function
DwidenToAny2.ts1 function foo3<T>(x: T[]): T { function
DgenericFunctionSpecializations1.ts1 function foo3<T>(test: string); // error function
/third_party/typescript/tests/cases/fourslash/
DfindAllRefsImportNamed.ts12 const [ foo0Def, foo0, foo1, foo2Def, foo2, foo3 ] = test.ranges(); constant
14 …definition: "(alias) function foo(a: number, b: number): void\nexport foo", ranges: [foo1, foo3] }; constant
DfindAllRefsReExportsUseInImportType.ts17 const [full0Def, full0, foo0Def, foo0, foo1Def, foo1, foo2Def, foo2, foo3, full1, foo4, full2] = te… constant
31 const fooAppRanges = [foo2, foo3]; constant
/third_party/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/
DcallSignaturesWithAccessibilityModifiersOnParameters.ts18 foo3<T>(public x: T, private y: T) { } method in C
26 foo3<T>(x: T, private y: T); method
DcallSignaturesWithDuplicateParameters.ts18 foo3<T>(x: T, x: T) { } method in C
26 foo3<T>(x: T, x: T); method
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/
DgenericCallWithGenericSignatureArguments2.ts32 function foo3<T>(x: T, a: (x: T) => T, b: (x: T) => T) { function
67 function foo3<T>(x: T, a: (x: T) => T, b: (x: U) => U) { function
DgenericClassWithFunctionTypedMemberArguments.ts40 foo3(x: T, cb: (a: T) => U, y: U) { method in C2
50 foo3<T,U>(x: T, cb: (a: T) => U, y: U) { method in C3
/third_party/boost/libs/callable_traits/test/
Dreturn_type.cpp23 struct foo3 { struct
46 CT_ASSERT(std::is_same< return_type_t<foo3>, int>{}); in main() argument
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/
DsubtypingWithCallSignaturesA.ts1 declare function foo3(cb: (x: number) => number): typeof cb; function
/third_party/typescript/tests/cases/conformance/esnext/logicalAssignment/
DlogicalAssignment6.ts12 function foo3(results: number[] | undefined, results1: number[] | undefined) { function

1234567891011