Searched refs:funC (Results 1 – 6 of 6) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | typeGuardFunctionGenerics.types | 47 declare function funC<T>(p1: (p1) => p1 is T): T; 48 >funC : <T>(p1: (p1: any) => p1 is T) => T 84 let test2: B = funC(isB); 86 >funC(isB) : B 87 >funC : <T>(p1: (p1: any) => p1 is T) => T
|
D | typeGuardFunctionGenerics.symbols | 59 declare function funC<T>(p1: (p1) => p1 is T): T; 60 >funC : Symbol(funC, Decl(typeGuardFunctionGenerics.ts, 17, 58)) 110 let test2: B = funC(isB); 113 >funC : Symbol(funC, Decl(typeGuardFunctionGenerics.ts, 17, 58))
|
D | typeGuardFunctionGenerics.js | 20 declare function funC<T>(p1: (p1) => p1 is T): T; 29 let test2: B = funC(isB); 73 var test2 = funC(isB);
|
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/ |
D | typeGuardFunctionGenerics.ts | 20 declare function funC<T>(p1: (p1) => p1 is T): T; 29 let test2: B = funC(isB);
|
/third_party/boost/libs/optional/test/ |
D | optional_test_value_access.cpp | 132 FunC funC; in test_function_value_or_eval() local 139 BOOST_TEST_EQ(o1.value_or_eval(funC), 1); in test_function_value_or_eval() 140 BOOST_TEST_EQ(oN.value_or_eval(funC), 6); in test_function_value_or_eval()
|
D | optional_test_old_impl.cpp | 133 FunC funC; in test_function_value_or_eval() local 140 BOOST_TEST_EQ(o1.value_or_eval(funC), 1); in test_function_value_or_eval() 141 BOOST_TEST_EQ(oN.value_or_eval(funC), 6); in test_function_value_or_eval()
|