Home
last modified time | relevance | path

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

/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/mesa3d/src/gtest/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/grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Dchannel.pyx.pxi187 on_success, on_failure, deadline): argument
192 `on_failure` will be invoked with no arguments. Note that this situation
200 on_failure: A callable object to be invoked in case a Python exception is
209 if on_failure is not None:
210 on_failure()
383 def on_failure(): function
389 self._channel_state, self._c_completion_queue, on_success, on_failure, None)
537 # NOTE(gnossen): It is acceptable for on_failure to be None here because
/third_party/mesa3d/src/microsoft/ci/
Dgitlab-ci.yml20 when: on_failure
44 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()
653 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.h63 void on_failure();
Dshrpx_connect_blocker.cc75 void ConnectBlocker::on_failure() { in on_failure() function in shrpx::ConnectBlocker
Dshrpx_http2_session.cc411 worker_blocker->on_failure(); in initiate_connection()
422 worker_blocker->on_failure(); in initiate_connection()
532 worker_blocker->on_failure(); in initiate_connection()
597 worker_blocker->on_failure(); in initiate_connection()
2368 worker_blocker->on_failure(); in on_timeout()
Dshrpx_http_downstream_connection.cc394 worker_blocker->on_failure(); in initiate_connection()
Dshrpx_worker.cc1418 connect_blocker->on_failure(); in downstream_failure()
/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/gn/src/util/test/
Dtest.h118 #define TEST_ASSERT_(expression, on_failure) \ argument
123 on_failure(test_result)
/third_party/skia/m133/third_party/externals/vulkanmemoryallocator/
D.travis.yml37 on_failure: always
/third_party/mesa3d/src/gallium/drivers/d3d12/ci/
Dgitlab-ci.yml25 when: on_failure
/third_party/python/
D.travis.yml209 on_failure: always
218 on_failure: always
/third_party/cJSON/
Dappveyor.yml84 on_failure:
/third_party/mesa3d/.gitlab-ci/test/
Dgitlab-ci.yml154 when: on_failure
188 when: on_failure
/third_party/jerryscript/
D.travis.yml175 on_failure: always
/third_party/mesa3d/
D.gitlab-ci.yml346 when: on_failure
/third_party/rust/rust/compiler/rustc_trait_selection/src/traits/select/
Dmod.rs746 cache.on_failure(dfn); in evaluate_predicate_recursively()
1083 stack.cache().on_failure(stack.dfn); in evaluate_trait_predicate_recursively()
2878 fn on_failure(&self, dfn: usize) { in on_failure() method
2879 debug!(?dfn, "on_failure"); in on_failure()
2882 debug!("on_failure: removing {:?}", key); in on_failure()
2892 /// was a failure, then `on_failure` should have been invoked
/third_party/libinput/
D.gitlab-ci.yml1033 when: on_failure
/third_party/rust/rust/src/tools/compiletest/src/
Druntest.rs2667 on_failure: impl FnOnce(Self), in fatal_proc_rec_with_ctx()
2670 proc_res.fatal(None, || on_failure(*self)); in fatal_proc_rec_with_ctx()
4399 pub fn fatal(&self, err: Option<&str>, on_failure: impl FnOnce()) -> ! { in fatal()
4404 on_failure(); in fatal()