Searched refs:callb (Results 1 - 6 of 6) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | contextualTypingOfLambdaReturnExpression.js | 2 function callb(lam: (l: number) => void); 3 function callb(lam: (n: string) => void); 4 function callb(a) { } function 6 callb((a) => a.length); // Ok, we choose the second overload because the first one gave us an error when trying to resolve the lambda return type 7 callb((a) => { a.length; }); // Error, we picked the first overload and errored when type checking the lambda body
10 function callb(a) { }
11 callb(function (a) { return a.length; }); // Ok, we choose the second overload because the first one gave us an error when trying to resolve the lambda return type
12 callb(function (a) { a.length; }); // Error, we picked the first overload and errored when type checking the lambda body
|
H A D | noImplicitAnyWithOverloads.js | 7 function callb(lam: (l: A) => void); 8 function callb(lam: (n: B) => void); 9 function callb(a) { } function 10 callb((a) => { a.foo; }); // error, chose first overload
13 function callb(a) { }
14 callb(function (a) { a.foo; }); // error, chose first overload
|
H A D | functionOverloadAmbiguity1.js | 2 function callb(lam: (l: number) => void ); 3 function callb(lam: (n: string) => void ); 4 function callb(a) { } function 5 callb((a) => { a.length; } ); // error, chose first overload 14 function callb(a) { }
15 callb(function (a) { a.length; }); // error, chose first overload
|
H A D | functionAssignment.js | 31 function callb(lam:(l: number) => void ); 32 function callb(lam:(n: string)=>void); 33 function callb(a) { } function 35 callb((a) =>{ a.length; }); 55 function callb(a) { }
56 callb(function (a) { a.length; });
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | x509.c | 35 static int callb(int ok, X509_STORE_CTX *ctx); 303 X509_STORE_set_verify_cb(ctx, callb); in x509_main() 1127 static int callb(int ok, X509_STORE_CTX *ctx) in callb() function
|
/third_party/openssl/apps/ |
H A D | x509.c | 35 static int callb(int ok, X509_STORE_CTX *ctx); 303 X509_STORE_set_verify_cb(ctx, callb); in x509_main() 1127 static int callb(int ok, X509_STORE_CTX *ctx) in callb() function
|
Completed in 8 milliseconds