/third_party/typescript/tests/baselines/reference/ |
D | typeArgumentsWithStringLiteralTypes01.js | 11 function fun2<T, U>(x: T, y: U) { 25 export let c = fun2("Hello", "World"); 26 export let d = fun2("Hello", "Hello"); 56 export let c = fun2<"Hello", "Hello">("Hello", "Hello"); 57 export let d = fun2<"Hello", "Hello">("Hello", "World"); 86 export let a = fun2<"Hello", "World">("Hello", "World"); 87 export let b = fun2<"Hello", "World">("World", "Hello"); 88 export let c = fun2<"World", "Hello">("Hello", "Hello"); 89 export let d = fun2<"World", "Hello">("World", "World"); 118 function fun2(x, y) { function [all …]
|
D | typeArgumentsWithStringLiteralTypes01.symbols | 31 function fun2<T, U>(x: T, y: U) { 32 >fun2 : Symbol(fun2, Decl(typeArgumentsWithStringLiteralTypes01.ts, 7, 1)) 72 export let c = fun2("Hello", "World"); 74 >fun2 : Symbol(fun2, Decl(typeArgumentsWithStringLiteralTypes01.ts, 7, 1)) 76 export let d = fun2("Hello", "Hello"); 78 >fun2 : Symbol(fun2, Decl(typeArgumentsWithStringLiteralTypes01.ts, 7, 1)) 176 export let c = fun2<"Hello", "Hello">("Hello", "Hello"); 178 >fun2 : Symbol(fun2, Decl(typeArgumentsWithStringLiteralTypes01.ts, 7, 1)) 180 export let d = fun2<"Hello", "Hello">("Hello", "World"); 182 >fun2 : Symbol(fun2, Decl(typeArgumentsWithStringLiteralTypes01.ts, 7, 1)) [all …]
|
D | typeArgumentsWithStringLiteralTypes01.types | 30 function fun2<T, U>(x: T, y: U) { 31 >fun2 : <T, U>(x: T, y: U) => T | U 75 export let c = fun2("Hello", "World"); 77 >fun2("Hello", "World") : "Hello" | "World" 78 >fun2 : <T, U>(x: T, y: U) => T | U 82 export let d = fun2("Hello", "Hello"); 84 >fun2("Hello", "Hello") : "Hello" 85 >fun2 : <T, U>(x: T, y: U) => T | U 226 export let c = fun2<"Hello", "Hello">("Hello", "Hello"); 228 >fun2<"Hello", "Hello">("Hello", "Hello") : "Hello" [all …]
|
D | declarationEmitQualifiedAliasTypeArgument.js | 27 export const fun2 = create<Q>(); constant 33 exports.fun2 = exports.fun = void 0; 36 exports.fun2 = bbb_1.create(); 42 export declare const fun2: () => import("./bbb").INode<Q>;
|
D | generatorTypeCheck45.types | 2 declare function foo<T, U>(x: T, fun: () => Iterator<(x: T) => U>, fun2: (y: U) => T): T; 3 >foo : <T, U>(x: T, fun: () => Iterator<(x: T) => U, any, undefined>, fun2: (y: U) => T) => T 7 >fun2 : (y: U) => T 12 >foo : <T, U>(x: T, fun: () => Iterator<(x: T) => U, any, undefined>, fun2: (y: U) => T) => T
|
D | generatorTypeCheck46.types | 2 declare function foo<T, U>(x: T, fun: () => Iterable<(x: T) => U>, fun2: (y: U) => T): T; 3 >foo : <T, U>(x: T, fun: () => Iterable<(x: T) => U>, fun2: (y: U) => T) => T 7 >fun2 : (y: U) => T 12 >foo : <T, U>(x: T, fun: () => Iterable<(x: T) => U>, fun2: (y: U) => T) => T
|
D | generatorTypeCheck45.symbols | 2 declare function foo<T, U>(x: T, fun: () => Iterator<(x: T) => U>, fun2: (y: U) => T): T; 13 >fun2 : Symbol(fun2, Decl(generatorTypeCheck45.ts, 0, 66))
|
D | generatorTypeCheck46.symbols | 2 declare function foo<T, U>(x: T, fun: () => Iterable<(x: T) => U>, fun2: (y: U) => T): T; 13 >fun2 : Symbol(fun2, Decl(generatorTypeCheck46.ts, 0, 66))
|
D | declarationEmitQualifiedAliasTypeArgument.symbols | 58 export const fun2 = create<Q>(); 59 >fun2 : Symbol(fun2, Decl(index.ts, 5, 12))
|
D | declarationEmitQualifiedAliasTypeArgument.types | 46 export const fun2 = create<Q>(); 47 >fun2 : () => import("tests/cases/compiler/bbb").INode<Q>
|
D | typeArgumentsWithStringLiteralTypes01.errors.txt | 59 function fun2<T, U>(x: T, y: U) { 73 export let c = fun2("Hello", "World"); 74 export let d = fun2("Hello", "Hello"); 126 export let c = fun2<"Hello", "Hello">("Hello", "Hello"); 127 export let d = fun2<"Hello", "Hello">("Hello", "World"); 185 export let a = fun2<"Hello", "World">("Hello", "World"); 186 export let b = fun2<"Hello", "World">("World", "Hello"); 189 export let c = fun2<"World", "Hello">("Hello", "Hello"); 192 export let d = fun2<"World", "Hello">("World", "World");
|
/third_party/typescript/tests/cases/conformance/types/stringLiteral/ |
D | typeArgumentsWithStringLiteralTypes01.ts | 12 function fun2<T, U>(x: T, y: U) { function 26 export let c = fun2("Hello", "World"); 27 export let d = fun2("Hello", "Hello"); 57 export let c = fun2<"Hello", "Hello">("Hello", "Hello"); 58 export let d = fun2<"Hello", "Hello">("Hello", "World"); 87 export let a = fun2<"Hello", "World">("Hello", "World"); 88 export let b = fun2<"Hello", "World">("World", "Hello"); 89 export let c = fun2<"World", "Hello">("Hello", "Hello"); 90 export let d = fun2<"World", "Hello">("World", "World");
|
/third_party/curl/CMake/ |
D | CurlTests.c | 493 #define c99_vmacro2(first, ...) fun2(first, __VA_ARGS__) 496 int fun2(int arg1, int arg2); 501 int fun2(int arg1, int arg2) { in fun2() function 516 #define gcc_vmacro2(first, args...) fun2(first, args) 519 int fun2(int arg1, int arg2); 524 int fun2(int arg1, int arg2) { in fun2() function
|
/third_party/boost/libs/geometry/test/core/ |
D | assert.cpp | 48 void fun2(bool condition, const char* msg = "") in fun2() function 61 fun2(a == 1); in test_main() 62 BOOST_CHECK_EXCEPTION(fun2(a == 2), assert_failure_exception, is_ok); in test_main()
|
/third_party/boost/libs/dll/test/ |
D | cpp_import_class_test.cpp | 89 auto fun2 = cl.import<double(double, double), int(int, int)>("func"); in main() local 91 BOOST_TEST((cl->*fun2)(3.,2.) == 6.); in main() 92 BOOST_TEST((cl->*fun2)(5 ,2 ) == 7 ); in main()
|
/third_party/boost/libs/spirit/test/qi/ |
D | actions.cpp | 31 void fun2(int i) in fun2() function 74 qi::parse(s1, e1, '{' >> int_[&fun2] >> '}'); in main() 80 qi::parse(s1, e1, '{' >> int_[fun2] >> '}'); in main()
|
/third_party/glslang/Test/ |
D | hlsl.function.frag | 6 uint fun2(float4 col) 18 uint entityId = fun2(fun0());
|
D | spv.1.4.OpSelect.frag | 15 void fun2(){} 36 cond > 0 ? fun1() : fun2(); // not allowed by any version
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.function.frag.out | 19 0:7 Function Definition: fun2(vf4; ( temp uint) 44 0:18 Function Call: fun2(vf4; ( temp uint) 77 0:7 Function Definition: fun2(vf4; ( temp uint) 102 0:18 Function Call: fun2(vf4; ( temp uint)
|
D | spv.1.4.OpSelect.frag.out | 14 Name 8 "fun2(" 140 97: 2 FunctionCall 8(fun2() 149 8(fun2(): 2 Function None 3
|
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/ |
D | transformation_add_parameter_test.cpp | 279 OpName %12 "fun2(i1;" in TEST() 394 OpName %12 "fun2(i1;" in TEST() 527 OpName %12 "fun2(i1;" in TEST() 619 OpName %12 "fun2(i1;" in TEST() 768 OpName %12 "fun2(i1;" in TEST()
|
/third_party/spirv-tools/test/fuzz/ |
D | transformation_add_parameter_test.cpp | 262 OpName %12 "fun2(i1;" in TEST() 377 OpName %12 "fun2(i1;" in TEST() 510 OpName %12 "fun2(i1;" in TEST() 602 OpName %12 "fun2(i1;" in TEST() 751 OpName %12 "fun2(i1;" in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
D | transformation_add_parameter_test.cpp | 279 OpName %12 "fun2(i1;" in TEST() 394 OpName %12 "fun2(i1;" in TEST() 527 OpName %12 "fun2(i1;" in TEST() 619 OpName %12 "fun2(i1;" in TEST() 768 OpName %12 "fun2(i1;" in TEST()
|
/third_party/typescript/tests/cases/conformance/es6/yieldExpressions/ |
D | generatorTypeCheck45.ts | 2 declare function foo<T, U>(x: T, fun: () => Iterator<(x: T) => U>, fun2: (y: U) => T): T;
|
D | generatorTypeCheck46.ts | 2 declare function foo<T, U>(x: T, fun: () => Iterable<(x: T) => U>, fun2: (y: U) => T): T;
|