/third_party/mksh/ |
D | check.pl | 638 $why = ''; 642 $why .= "\ttest timed out (limit of $test{'time-limit'} seconds)\n"; 658 $why .= 667 $why .= $tmp; 675 $why .= $tmp; 682 $why .= $tmp; 711 $why = "\tDescription" 713 . $why; 721 print $why if $verbose; 803 local($why) = ''; [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | controlFlowInstanceofExtendsFunction.symbols | 32 why() { 33 >why : Symbol(X.why, Decl(controlFlowInstanceofExtendsFunction.ts, 13, 5)) 71 x.why() // should compile 72 >x.why : Symbol(X.why, Decl(controlFlowInstanceofExtendsFunction.ts, 13, 5)) 74 >why : Symbol(X.why, Decl(controlFlowInstanceofExtendsFunction.ts, 13, 5))
|
D | controlFlowInstanceofExtendsFunction.types | 34 why() { 35 >why : () => void 83 x.why() // should compile 84 >x.why() : void 85 >x.why : () => void 87 >why : () => void
|
D | controlFlowInstanceofExtendsFunction.js | 17 why() { method in X 32 x.why() // should compile 48 X.prototype.why = function () { method in X 61 exports.x.why(); // should compile
|
D | ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.types | 60 Object.defineProperty(B, "NS", { value: "why though", writable: true }); 61 >Object.defineProperty(B, "NS", { value: "why though", writable: true }) : any 67 >{ value: "why though", writable: true } : { value: string; writable: true; } 69 >"why though" : "why though"
|
D | avoid.symbols | 13 var why:any=f(); // error void fn 14 >why : Symbol(why, Decl(avoid.ts, 5, 3))
|
D | avoid.js | 7 var why:any=f(); // error void fn variable 27 var why = f(); // error void fn
|
D | twiceNestedKeyofIndexInference.types | 67 const newState: State = set(state, ["a", 'b'], 'why'); // shouldn't be an error 69 >set(state, ["a", 'b'], 'why') : Pick<State, "d"> & Required<{ a: Pick<{ b: string; c: number; }, "… 75 >'why' : "why"
|
D | avoid.types | 15 var why:any=f(); // error void fn 16 >why : any
|
/third_party/flutter/skia/third_party/externals/icu/source/data/brkitr/dictionaries/ |
D | thaidict.txt | 5414 # ดี.ซี. -- TODO: why does this have full stop in it? 15997 # วี.ดี. # TODO: why do these have full stops? 16382 # ส.ธรนินทร์ -- TODO: why do these have full stops? 23343 # เอ.ยู.เอ. -- TODO: why do we have a full stop?
|
/third_party/icu/icu4c/source/data/brkitr/dictionaries/ |
D | thaidict.txt | 5414 # ดี.ซี. -- TODO: why does this have full stop in it? 15997 # วี.ดี. # TODO: why do these have full stops? 16382 # ส.ธรนินทร์ -- TODO: why do these have full stops? 23343 # เอ.ยู.เอ. -- TODO: why do we have a full stop?
|
/third_party/skia/third_party/externals/icu/source/data/brkitr/dictionaries/ |
D | thaidict.txt | 5414 # ดี.ซี. -- TODO: why does this have full stop in it? 15997 # วี.ดี. # TODO: why do these have full stops? 16382 # ส.ธรนินทร์ -- TODO: why do these have full stops? 23343 # เอ.ยู.เอ. -- TODO: why do we have a full stop?
|
/third_party/glslang/SPIRV/ |
D | InReadableOrder.cpp | 71 void visit(Block* block, spv::ReachReason why, Block* header) in visit() argument 74 if (why == spv::ReachViaControlFlow) { in visit() 79 callback_(block, why, header); in visit() 95 if (why == spv::ReachViaControlFlow) { in visit() 98 visit(*it, why, nullptr); in visit()
|
/third_party/grpc/src/core/lib/channel/ |
D | handshaker.cc | 87 void HandshakeManager::ShutdownAllPending(grpc_error* why) { in ShutdownAllPending() argument 90 head->Shutdown(GRPC_ERROR_REF(why)); in ShutdownAllPending() 93 GRPC_ERROR_UNREF(why); in ShutdownAllPending() 109 void HandshakeManager::Shutdown(grpc_error* why) { in Shutdown() argument 115 handshakers_[index_ - 1]->Shutdown(GRPC_ERROR_REF(why)); in Shutdown() 118 GRPC_ERROR_UNREF(why); in Shutdown()
|
D | handshaker.h | 81 virtual void Shutdown(grpc_error* why) = 0; 108 void ShutdownAllPending(grpc_error* why); 116 void Shutdown(grpc_error* why);
|
/third_party/node/deps/npm/test/ |
D | common-tap.js | 218 exports.skipIfWindows = function (why) { argument 220 if (!why) why = 'this test not available on windows' 221 require('tap').plan(0, why) 225 exports.pendIfWindows = function (why) { argument 227 if (!why) why = 'this test is pending further changes on windows' 228 require('tap').fail(' ', { todo: why, diagnostic: false })
|
/third_party/python/Lib/ |
D | trace.py | 508 def globaltrace_trackcallers(self, frame, why, arg): argument 513 if why == 'call': 519 def globaltrace_countfuncs(self, frame, why, arg): argument 524 if why == 'call': 528 def globaltrace_lt(self, frame, why, arg): argument 534 if why == 'call': 551 def localtrace_trace_and_count(self, frame, why, arg): argument 552 if why == "line": 566 def localtrace_trace(self, frame, why, arg): argument 567 if why == "line": [all …]
|
D | asyncore.py | 355 except OSError as why: 356 if why.errno in (EWOULDBLOCK, ECONNABORTED, EAGAIN): 367 except OSError as why: 368 if why.errno == EWOULDBLOCK: 370 elif why.errno in _DISCONNECTED: 386 except OSError as why: 388 if why.errno in _DISCONNECTED: 402 except OSError as why: 403 if why.errno not in (ENOTCONN, EBADF):
|
/third_party/python/Tools/unicode/ |
D | gencodec.py | 134 except TypeError as why: 135 print('* failed to convert %r: %s' % (t, why)) 396 except ValueError as why: 397 print('* conversion failed: %s' % why) 417 except ValueError as why: 418 print('* conversion failed: %s' % why)
|
/third_party/toybox/toys/net/ |
D | sntp.c | 203 struct timeval why; in sntp_main() local 209 why.tv_sec = tv2.tv_sec; in sntp_main() 210 why.tv_usec = tv2.tv_nsec/1000; in sntp_main() 211 if (adjtime(&why, 0)) perror_exit("adjtime"); in sntp_main()
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | controlFlowInstanceofExtendsFunction.ts | 16 why() { method in X 31 x.why() // should compile
|
/third_party/gettext/gnulib-local/lib/ |
D | argmatch.h.diff | 10 /* Report on stderr why argmatch failed. Report correct values. */ 18 /* Report on stderr why argmatch failed. Report correct values. */
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-spec-builders.h | 188 ::std::ostream* what, ::std::ostream* why) 1207 ::std::ostream* why) in GetActionForArguments() argument 1215 DescribeCallCountTo(why); in GetActionForArguments() 1699 ::std::ostream* what, ::std::ostream* why) override in UntypedFindMatchingExpectation() argument 1706 this->FormatUnexpectedCallMessageLocked(args, what, why); in UntypedFindMatchingExpectation() 1714 const Action<F>* action = exp->GetActionForArguments(this, args, what, why); in UntypedFindMatchingExpectation() 1753 ::std::ostream* why) const in FormatUnexpectedCallMessageLocked() argument 1758 PrintTriedExpectationsLocked(args, why); in FormatUnexpectedCallMessageLocked() 1765 ::std::ostream* why) const in PrintTriedExpectationsLocked() argument 1769 *why << "Google Mock tried the following " << count << " " in PrintTriedExpectationsLocked() [all …]
|
/third_party/grpc/test/core/util/ |
D | passthru_endpoint.cc | 116 static void me_shutdown(grpc_endpoint* ep, grpc_error* why) { in me_shutdown() argument 123 GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING("Shutdown", &why, 1)); in me_shutdown() 130 GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING("Shutdown", &why, 1)); in me_shutdown() 135 GRPC_ERROR_UNREF(why); in me_shutdown()
|
D | mock_endpoint.cc | 79 static void me_shutdown(grpc_endpoint* ep, grpc_error* why) { in me_shutdown() argument 85 "Endpoint Shutdown", &why, 1)); in me_shutdown() 90 GRPC_ERROR_UNREF(why); in me_shutdown()
|