Home
last modified time | relevance | path

Searched refs:thunk (Results 1 – 25 of 30) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DlastPropertyInLiteralWins.types3 thunk: (str: string) => void;
4 >thunk : (str: string) => void
11 thing.thunk("str");
12 >thing.thunk("str") : void
13 >thing.thunk : (str: string) => void
15 >thunk : (str: string) => void
19 …{ // Should error, as last one wins, and is wrong type thunk: (str: string) => {}, thunk: (n…
21 …r, as last one wins, and is wrong type thunk: (str: string) => {}, thunk: (num: number) => {…
23 thunk: (str: string) => {},
24 >thunk : (str: string) => void
[all …]
DlastPropertyInLiteralWins.symbols5 thunk: (str: string) => void;
6 >thunk : Symbol(Thing.thunk, Decl(lastPropertyInLiteralWins.ts, 0, 17))
14 thing.thunk("str");
15 >thing.thunk : Symbol(Thing.thunk, Decl(lastPropertyInLiteralWins.ts, 0, 17))
17 >thunk : Symbol(Thing.thunk, Decl(lastPropertyInLiteralWins.ts, 0, 17))
22 thunk: (str: string) => {},
23 >thunk : Symbol(thunk, Decl(lastPropertyInLiteralWins.ts, 6, 6), Decl(lastPropertyInLiteralWins.ts,…
26 thunk: (num: number) => {}
27 >thunk : Symbol(thunk, Decl(lastPropertyInLiteralWins.ts, 6, 6), Decl(lastPropertyInLiteralWins.ts,…
32 test({ // Should be OK. Last 'thunk' is of correct type
[all …]
DlastPropertyInLiteralWins.js3 thunk: (str: string) => void;
6 thing.thunk("str");
9 thunk: (str: string) => {}, method
10 thunk: (num: number) => {} method
14 thunk: (num: number) => {}, method
15 thunk: (str: string) => {} method
21 thing.thunk("str");
24 thunk: function (str) { }, method
25 thunk: function (num) { } method
28 thunk: function (num) { }, method
[all …]
DlastPropertyInLiteralWins.errors.txt4 tests/cases/compiler/lastPropertyInLiteralWins.ts(9,5): error TS2300: Duplicate identifier 'thunk'.
6 tests/cases/compiler/lastPropertyInLiteralWins.ts(14,5): error TS2300: Duplicate identifier 'thunk'.
11 thunk: (str: string) => void;
14 thing.thunk("str");
17 thunk: (str: string) => {},
22 …/lastPropertyInLiteralWins.ts:2:5: The expected type comes from property 'thunk' which is declared…
23 thunk: (num: number) => {}
25 !!! error TS2300: Duplicate identifier 'thunk'.
28 …/lastPropertyInLiteralWins.ts:2:5: The expected type comes from property 'thunk' which is declared…
31 test({ // Should be OK. Last 'thunk' is of correct type
[all …]
DcallWithSpread2.symbols29 declare function thunk(): string;
30 >thunk : Symbol(thunk, Decl(callWithSpread2.ts, 4, 41))
79 thunk(...ns)
80 >thunk : Symbol(thunk, Decl(callWithSpread2.ts, 4, 41))
DcallWithSpread2.js7 declare function thunk(): string;
25 thunk(...ns)
55 thunk.apply(void 0, ns);
DcallWithSpread2.types29 declare function thunk(): string;
30 >thunk : () => string
96 thunk(...ns)
97 >thunk(...ns) : string
98 >thunk : () => string
DcallWithSpread2.errors.txt24 declare function thunk(): string;
44 thunk(...ns)
/third_party/grpc/src/python/grpcio/grpc/
D_interceptor.py27 def _continuation(self, thunk, index): argument
28 return lambda context: self._intercept_at(thunk, index, context)
30 def _intercept_at(self, thunk, index, context): argument
33 thunk = self._continuation(thunk, index + 1)
34 return interceptor.intercept_service(thunk, context)
36 return thunk(context)
38 def execute(self, thunk, context): argument
39 return self._intercept_at(thunk, 0, context)
204 def __init__(self, thunk, method, interceptor): argument
205 self._thunk = thunk
[all …]
/third_party/typescript/tests/cases/compiler/
DlastPropertyInLiteralWins.ts2 thunk: (str: string) => void; property
5 thing.thunk("str");
8 thunk: (str: string) => {},
9 thunk: (num: number) => {}
13 thunk: (num: number) => {},
14 thunk: (str: string) => {}
/third_party/typescript/tests/cases/conformance/expressions/functionCalls/
DcallWithSpread2.ts6 declare function thunk(): string;
24 thunk(...ns)
/third_party/boost/boost/outcome/experimental/status-code/
Dstatus_code_domain.hpp166 constexpr explicit string_ref(_thunk_spec thunk) noexcept in string_ref() argument
167 : _thunk(thunk) in string_ref()
175 _thunk_spec thunk = _checking_string_thunk in string_ref() argument
177 _thunk_spec thunk = nullptr in string_ref()
184 , _thunk(thunk)
/third_party/boost/libs/hof/doc/html/_sources/include/boost/hof/
Deval.hpp.txt17 /// The `eval` function will evaluate a "thunk". This can be either a nullary
/third_party/e2fsprogs/lib/support/
Dsort_r.h238 extern void qsort_r(void *base, size_t nel, size_t width, void *thunk,
/third_party/ejdb/src/util/
Dsort_r.h259 void *base, size_t nel, size_t width, void *thunk,
/third_party/python/Modules/_ctypes/
D_ctypes.c3709 CThunkObject *thunk; in PyCFuncPtr_new() local
3768 thunk = _ctypes_alloc_callback(callable, in PyCFuncPtr_new()
3772 if (!thunk) in PyCFuncPtr_new()
3777 Py_DECREF(thunk); in PyCFuncPtr_new()
3784 self->thunk = thunk; in PyCFuncPtr_new()
3785 *(void **)self->b_ptr = (void *)thunk->pcl_exec; in PyCFuncPtr_new()
3787 Py_INCREF((PyObject *)thunk); /* for KeepRef */ in PyCFuncPtr_new()
3788 if (-1 == KeepRef((CDataObject *)self, 0, (PyObject *)thunk)) { in PyCFuncPtr_new()
4246 Py_VISIT(self->thunk); in PyCFuncPtr_traverse()
4260 Py_CLEAR(self->thunk); in PyCFuncPtr_clear()
Dctypes.h87 CThunkObject *thunk; member
/third_party/flutter/flutter/packages/flutter/lib/src/scheduler/
Dticker.dart388 void thunk(dynamic value) {
391 orCancel.then<void>(thunk, onError: thunk);
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/
Dreadme.markdown77 …* getNodeModulesDirs - a thunk (no-argument function) that returns the paths using standard `node_…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMachO.h866 uint32_t thunk; member
872 uint64_t thunk; member
878 uintptr_t thunk; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMachO.h901 uint32_t thunk; member
907 uint64_t thunk; member
913 uintptr_t thunk; member
/third_party/boost/libs/hof/doc/html/
Dsearchindex.js1 …third:[0,17,19],thoma:2,those:[8,10,16,20],though:[8,12,38],three:[16,17],thunk:37,time:[6,10,14,1…
/third_party/ejdb/src/jql/
Djqp.c304 yythunk *thunk= &yy->__thunks[pos]; in yyDone() local
305 int yyleng= thunk->end ? yyText(yy, thunk->begin, thunk->end) : thunk->begin; in yyDone()
306 yyprintf((stderr, "DO [%d] %p %s\n", pos, thunk->action, yy->__text)); in yyDone()
307 thunk->action(yy, yy->__text, yyleng); in yyDone()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86.td419 // to provide their own custom thunk definitions in highly specialized
423 "retpoline-external-thunk", "UseRetpolineExternalThunk", "true",
425 "on the specified user provided thunk rather than emitting one "
/third_party/e2fsprogs/lib/et/
Dcom_err.texinfo514 Ts'o, and so bugs and comments should be sent to @t{tytso@@thunk.org}.

12