Home
last modified time | relevance | path

Searched full:on_failure (Results 1 – 25 of 30) sorted by relevance

12

/third_party/googletest/googletest/include/gtest/
Dgtest_pred_impl.h77 #define GTEST_ASSERT_(expression, on_failure) \ argument
82 on_failure(gtest_ar.failure_message())
99 #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure) \ argument
100 GTEST_ASSERT_(pred_format(#v1, v1), on_failure)
104 #define GTEST_PRED1_(pred, v1, on_failure) \ argument
105 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, #v1, pred, v1), on_failure)
133 #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure) \ argument
134 GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), on_failure)
138 #define GTEST_PRED2_(pred, v1, v2, on_failure) \ argument
140 on_failure)
[all …]
/third_party/node/deps/googletest/include/gtest/
Dgtest_pred_impl.h77 #define GTEST_ASSERT_(expression, on_failure) \ argument
82 on_failure(gtest_ar.failure_message())
99 #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure) \ argument
100 GTEST_ASSERT_(pred_format(#v1, v1), on_failure)
104 #define GTEST_PRED1_(pred, v1, on_failure) \ argument
105 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, #v1, pred, v1), on_failure)
133 #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure) \ argument
134 GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), on_failure)
138 #define GTEST_PRED2_(pred, v1, v2, on_failure) \ argument
140 on_failure)
[all …]
/third_party/mesa3d/src/gtest/include/gtest/
Dgtest_pred_impl.h75 #define GTEST_ASSERT_(expression, on_failure) \ argument
80 on_failure(gtest_ar.failure_message())
101 #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\ argument
103 on_failure)
107 #define GTEST_PRED1_(pred, v1, on_failure)\ argument
111 v1), on_failure)
148 #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\ argument
150 on_failure)
154 #define GTEST_PRED2_(pred, v1, v2, on_failure)\ argument
160 v2), on_failure)
[all …]
/third_party/mesa3d/src/microsoft/ci/
Dgitlab-ci.yml17 when: on_failure
38 when: on_failure
/third_party/nghttp2/src/
Dshrpx_live_check.cc45 live_check->on_failure(); in readcb()
59 live_check->on_failure(); in writecb()
74 live_check->on_failure(); in timeoutcb()
85 live_check->on_failure(); in backoff_timeoutcb()
99 live_check->on_failure(); in settings_timeout_cb()
239 this->on_failure(); in initiate_connection()
662 void LiveCheck::on_failure() { in on_failure() function in shrpx::LiveCheck
Dshrpx_memcached_connection.cc220 connect_blocker_.on_failure(); in connected()
270 connect_blocker_.on_failure(); in tls_handshake()
282 connect_blocker_.on_failure(); in tls_handshake()
718 connect_blocker_.on_failure(); in add_request()
771 connect_blocker_.on_failure(); in reconnect_or_fail()
Dshrpx_connect_blocker.h52 void on_failure();
Dshrpx_live_check.h56 void on_failure();
Dshrpx_connect_blocker.cc75 void ConnectBlocker::on_failure() { in on_failure() function in shrpx::ConnectBlocker
Dshrpx_http2_session.cc404 worker_blocker->on_failure(); in initiate_connection()
415 worker_blocker->on_failure(); in initiate_connection()
525 worker_blocker->on_failure(); in initiate_connection()
590 worker_blocker->on_failure(); in initiate_connection()
2377 worker_blocker->on_failure(); in on_timeout()
/third_party/googletest/googletest/scripts/
Dgen_gtest_pred_impl.py156 #define GTEST_ASSERT_(expression, on_failure) \\
161 on_failure(gtest_ar.failure_message())
261 #define GTEST_PRED_FORMAT%(n)s_(pred_format, %(vs)s, on_failure)\\
263 on_failure)
267 #define GTEST_PRED%(n)s_(pred, %(vs)s, on_failure)\\
279 impl += """), on_failure)
/third_party/node/deps/v8/src/regexp/
Dregexp-dotprinter.cc57 void DotPrinterImpl::PrintOnFailure(RegExpNode* from, RegExpNode* on_failure) { in PrintOnFailure() argument
58 os_ << " n" << from << " -> n" << on_failure << " [style=dotted];\n"; in PrintOnFailure()
59 Visit(on_failure); in PrintOnFailure()
Dregexp-bytecode-generator.cc184 Label* on_failure, in LoadCurrentCharacterImpl() argument
192 EmitOrLink(on_failure); in LoadCurrentCharacterImpl()
219 if (check_bounds) EmitOrLink(on_failure); in LoadCurrentCharacterImpl()
Dregexp-compiler.cc816 base::uc16 c, Label* on_failure, int cp_offset, in EmitSimpleCharacter() argument
821 assembler->LoadCurrentCharacter(cp_offset, on_failure, check); in EmitSimpleCharacter()
824 assembler->CheckNotCharacter(c, on_failure); in EmitSimpleCharacter()
831 base::uc16 c, Label* on_failure, int cp_offset, in EmitAtomNonLetter() argument
851 macro_assembler->LoadCurrentCharacter(cp_offset, on_failure, check); in EmitAtomNonLetter()
854 macro_assembler->CheckNotCharacter(c, on_failure); in EmitAtomNonLetter()
861 Label* on_failure) { in ShortCutEmitCharacterPair() argument
870 macro_assembler->CheckNotCharacterAfterAnd(c1, mask, on_failure); in ShortCutEmitCharacterPair()
882 on_failure); in ShortCutEmitCharacterPair()
891 base::uc16 c, Label* on_failure, int cp_offset, in EmitAtomLetter() argument
[all …]
Dregexp-macro-assembler.h80 // fail to match then goto the on_failure label. End of input always
161 void CheckNotInSurrogatePair(int cp_offset, Label* on_failure);
Dregexp-macro-assembler.cc232 Label* on_failure) { in CheckNotInSurrogatePair() argument
239 CheckCharacterInRange(kLeadSurrogateStart, kLeadSurrogateEnd, on_failure); in CheckNotInSurrogatePair()
/third_party/mesa3d/.gitlab-ci/test/
Dgitlab-ci.yml46 when: on_failure
74 when: on_failure
110 when: on_failure
/third_party/gn/src/util/test/
Dtest.h118 #define TEST_ASSERT_(expression, on_failure) \ argument
123 on_failure(test_result)
/third_party/python/
D.travis.yml209 on_failure: always
218 on_failure: always
/third_party/mesa3d/src/gallium/drivers/d3d12/ci/
Dgitlab-ci.yml23 when: on_failure
/third_party/cJSON/
Dappveyor.yml84 on_failure:
/third_party/jerryscript/
D.travis.yml175 on_failure: always
/third_party/mesa3d/
D.gitlab-ci.yml283 when: on_failure
/third_party/node/deps/v8/src/regexp/arm64/
Dregexp-macro-assembler-arm64.h35 Label* on_failure, bool check_end_of_string);
Dregexp-macro-assembler-arm64.cc258 base::Vector<const base::uc16> str, int cp_offset, Label* on_failure, in CheckCharacters() argument
264 CheckPosition(cp_offset + str.length() - 1, on_failure); in CheckCharacters()
283 CompareAndBranchOrBacktrack(w10, str[i], ne, on_failure); in CheckCharacters()

12