/third_party/typescript/tests/baselines/reference/ |
D | lastPropertyInLiteralWins.types | 3 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 …]
|
D | lastPropertyInLiteralWins.symbols | 5 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 …]
|
D | lastPropertyInLiteralWins.js | 3 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 …]
|
D | lastPropertyInLiteralWins.errors.txt | 4 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 …]
|
D | callWithSpread2.symbols | 29 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))
|
D | callWithSpread2.js | 7 declare function thunk(): string; 25 thunk(...ns) 55 thunk.apply(void 0, ns);
|
D | callWithSpread2.types | 29 declare function thunk(): string; 30 >thunk : () => string 96 thunk(...ns) 97 >thunk(...ns) : string 98 >thunk : () => string
|
D | callWithSpread2.errors.txt | 24 declare function thunk(): string; 44 thunk(...ns)
|
/third_party/grpc/src/python/grpcio/grpc/ |
D | _interceptor.py | 27 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/ |
D | lastPropertyInLiteralWins.ts | 2 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/ |
D | callWithSpread2.ts | 6 declare function thunk(): string; 24 thunk(...ns)
|
/third_party/boost/boost/outcome/experimental/status-code/ |
D | status_code_domain.hpp | 166 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/ |
D | eval.hpp.txt | 17 /// The `eval` function will evaluate a "thunk". This can be either a nullary
|
/third_party/e2fsprogs/lib/support/ |
D | sort_r.h | 238 extern void qsort_r(void *base, size_t nel, size_t width, void *thunk,
|
/third_party/ejdb/src/util/ |
D | sort_r.h | 259 void *base, size_t nel, size_t width, void *thunk,
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes.c | 3709 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()
|
D | ctypes.h | 87 CThunkObject *thunk; member
|
/third_party/flutter/flutter/packages/flutter/lib/src/scheduler/ |
D | ticker.dart | 388 void thunk(dynamic value) { 391 orCancel.then<void>(thunk, onError: thunk);
|
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/ |
D | readme.markdown | 77 …* 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/ |
D | MachO.h | 866 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/ |
D | MachO.h | 901 uint32_t thunk; member 907 uint64_t thunk; member 913 uintptr_t thunk; member
|
/third_party/boost/libs/hof/doc/html/ |
D | searchindex.js | 1 …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/ |
D | jqp.c | 304 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/ |
D | X86.td | 419 // 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/ |
D | com_err.texinfo | 514 Ts'o, and so bugs and comments should be sent to @t{tytso@@thunk.org}.
|