Home
last modified time | relevance | path

Searched refs:reaction (Results 1 – 24 of 24) sorted by relevance

/external/catch2/include/internal/
Dcatch_interfaces_capture.h57 AssertionReaction& reaction ) = 0;
62 AssertionReaction& reaction ) = 0;
65 AssertionReaction& reaction ) = 0;
69 AssertionReaction& reaction ) = 0;
75 AssertionReaction &reaction ) = 0;
Dcatch_run_context.h58 AssertionReaction& reaction ) override;
63 AssertionReaction& reaction ) override;
66 AssertionReaction& reaction ) override;
70 AssertionReaction& reaction ) override;
76 AssertionReaction &reaction ) override;
124 void populateReaction( AssertionReaction& reaction );
Dcatch_run_context.cpp390 AssertionReaction& reaction in handleExpr() argument
407 populateReaction( reaction ); in handleExpr()
429 AssertionReaction& reaction in handleMessage() argument
440 populateReaction( reaction ); in handleMessage()
444 AssertionReaction& reaction in handleUnexpectedExceptionNotThrown() argument
446 handleNonExpr(info, Catch::ResultWas::DidntThrowException, reaction); in handleUnexpectedExceptionNotThrown()
452 AssertionReaction& reaction in handleUnexpectedInflightException() argument
460 populateReaction( reaction ); in handleUnexpectedInflightException()
463 void RunContext::populateReaction( AssertionReaction& reaction ) { in populateReaction() argument
464 reaction.shouldDebugBreak = m_config->shouldDebugBreak(); in populateReaction()
[all …]
/external/google-breakpad/src/testing/src/
Dgmock-spec-builders.cc247 void ReportUninterestingCall(CallReaction reaction, const string& msg) { in ReportUninterestingCall() argument
248 switch (reaction) { in ReportUninterestingCall()
339 const CallReaction reaction = in UntypedInvokeWith() local
348 reaction == kAllow ? LogIsVisible(kInfo) : in UntypedInvokeWith()
351 reaction == kWarn ? LogIsVisible(kWarning) : in UntypedInvokeWith()
373 ReportUninterestingCall(reaction, ss.str()); in UntypedInvokeWith()
598 internal::CallReaction reaction) in SetReactionOnUninterestingCalls() argument
601 g_uninteresting_call_reaction[mock_obj] = reaction; in SetReactionOnUninterestingCalls()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/src/
Dgmock-spec-builders.cc247 void ReportUninterestingCall(CallReaction reaction, const string& msg) { in ReportUninterestingCall() argument
251 switch (reaction) { in ReportUninterestingCall()
349 const CallReaction reaction = in UntypedInvokeWith() local
358 reaction == kAllow ? LogIsVisible(kInfo) : in UntypedInvokeWith()
361 reaction == kWarn ? LogIsVisible(kWarning) : in UntypedInvokeWith()
383 ReportUninterestingCall(reaction, ss.str()); in UntypedInvokeWith()
608 internal::CallReaction reaction) in SetReactionOnUninterestingCalls() argument
611 g_uninteresting_call_reaction[mock_obj] = reaction; in SetReactionOnUninterestingCalls()
/external/googletest/googlemock/src/
Dgmock-spec-builders.cc279 void ReportUninterestingCall(CallReaction reaction, const std::string& msg) { in ReportUninterestingCall() argument
283 switch (reaction) { in ReportUninterestingCall()
384 const CallReaction reaction = in UntypedInvokeWith() local
393 reaction == kAllow ? LogIsVisible(kInfo) : in UntypedInvokeWith()
396 reaction == kWarn in UntypedInvokeWith()
420 ReportUninterestingCall(reaction, ss.str()); in UntypedInvokeWith()
655 internal::CallReaction reaction) in SetReactionOnUninterestingCalls() argument
658 g_uninteresting_call_reaction[mock_obj] = reaction; in SetReactionOnUninterestingCalls()
/external/v8/src/builtins/
Dbuiltins-promise-gen.cc337 Node* const reaction = in PerformPromiseThen() local
340 StoreObjectField(promise, JSPromise::kReactionsOrResultOffset, reaction); in PerformPromiseThen()
403 Node* const reaction = Allocate(PromiseReaction::kSize); in AllocatePromiseReaction() local
404 StoreMapNoWriteBarrier(reaction, Heap::kPromiseReactionMapRootIndex); in AllocatePromiseReaction()
405 StoreObjectFieldNoWriteBarrier(reaction, PromiseReaction::kNextOffset, next); in AllocatePromiseReaction()
406 StoreObjectFieldNoWriteBarrier(reaction, in AllocatePromiseReaction()
410 reaction, PromiseReaction::kFulfillHandlerOffset, fulfill_handler); in AllocatePromiseReaction()
412 reaction, PromiseReaction::kRejectHandlerOffset, reject_handler); in AllocatePromiseReaction()
413 return reaction; in AllocatePromiseReaction()
/external/catch2/single_include/catch2/
Dcatch.hpp2111 AssertionReaction& reaction ) = 0;
2116 AssertionReaction& reaction ) = 0;
2119 AssertionReaction& reaction ) = 0;
2123 AssertionReaction& reaction ) = 0;
2129 AssertionReaction &reaction ) = 0;
6159 AssertionReaction& reaction ) override;
6164 AssertionReaction& reaction ) override;
6167 AssertionReaction& reaction ) override;
6171 AssertionReaction& reaction ) override;
6177 AssertionReaction &reaction ) override;
[all …]
/external/v8/src/
Disolate.cc2102 Handle<PromiseReaction> reaction = Handle<PromiseReaction>::cast(current); in Throw() local
2104 reaction->promise_or_capability(), isolate); in Throw()
2111 if (reaction->reject_handler()->IsUndefined(isolate)) { in Throw()
2117 JSReceiver::cast(reaction->reject_handler()), isolate); in Throw()
2122 current = handle(reaction->next(), isolate); in Throw()
Dobjects.cc16415 Handle<PromiseReaction> reaction = Handle<PromiseReaction>::cast(task); in TriggerPromiseReactions() local
16416 reactions = handle(reaction->next(), isolate); in TriggerPromiseReactions()
16432 HeapObject* handler = reaction->reject_handler(); in TriggerPromiseReactions()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-spec-builders.h1726 void ReportUninterestingCall(CallReaction reaction, const string& msg);
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-spec-builders.h1799 void ReportUninterestingCall(CallReaction reaction, const string& msg);
/external/googletest/googlemock/include/gmock/
Dgmock-spec-builders.h1789 void ReportUninterestingCall(CallReaction reaction, const std::string& msg);
/external/swiftshader/third_party/llvm-7.0/llvm/docs/Proposals/
DGitHubMove.rst18 community's reaction and, if we collectively decide to move, the time-frame. Be
/external/python/cpython2/Doc/whatsnew/
D2.1.rst132 The reaction to nested scopes was widespread concern about the dangers of
D2.0.rst680 the changes in the face of public reaction, so for the :mod:`socket` module, the
/external/python/cpython3/Doc/whatsnew/
D2.1.rst132 The reaction to nested scopes was widespread concern about the dangers of
D2.0.rst680 the changes in the face of public reaction, so for the :mod:`socket` module, the
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt8263 連鎖反應 < chain\-reaction;
15636 反映 < reaction;
22894 連鎖反應 > chain\-reaction;
31804 反映 > reaction;
31831 反應 > reaction;
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/brotli/tests/testdata/
Dlcet10.txt4877 of their reaction to what SPERBERG-McQUEEN termed the issue of
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Den-IPA.txt11558 $x{reaction → riækʃən ; # riæktiɑn rikʃən
Dinternal_raw_IPA.txt135103 reaction %45327 riˈækʃən
Dinternal_raw_IPA-old.txt161268 reaction %37768 riˈækʃən