Home
last modified time | relevance | path

Searched refs:except (Results 1 – 25 of 5282) sorted by relevance

12345678910>>...212

/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Doperation.pxd.pxi4 # you may not use this file except in compliance with the License.
18 cdef void c(self) except *
19 cdef void un_c(self) except *
32 cdef void c(self) except *
33 cdef void un_c(self) except *
42 cdef void c(self) except *
43 cdef void un_c(self) except *
50 cdef void c(self) except *
51 cdef void un_c(self) except *
64 cdef void c(self) except *
[all …]
Dcredentials.pxd.pxi4 # you may not use this file except in compliance with the License.
18 cdef grpc_call_credentials *c(self) except *
29 const char **error_details) except * with gil
31 cdef void _destroy(void *state) except * with gil
39 cdef grpc_call_credentials *c(self) except *
49 cdef grpc_call_credentials *c(self) except *
54 cdef grpc_channel_credentials *c(self) except *
68 cdef grpc_channel_credentials *c(self) except *
76 cdef grpc_channel_credentials *c(self) except *
83 cdef grpc_channel_credentials *c(self) except *
[all …]
Doperation.pyx.pxi4 # you may not use this file except in compliance with the License.
18 cdef void c(self) except *:
21 cdef void un_c(self) except *:
34 cdef void c(self) except *:
44 cdef void un_c(self) except *:
61 cdef void c(self) except *:
71 cdef void un_c(self) except *:
83 cdef void c(self) except *:
87 cdef void un_c(self) except *:
102 cdef void c(self) except *:
[all …]
Dcredentials.pyx.pxi4 # you may not use this file except in compliance with the License.
33 cdef grpc_call_credentials *c(self) except *:
44 const char **error_details) except * with gil:
59 cdef void _destroy(void *state) except * with gil:
70 cdef grpc_call_credentials *c(self) except *:
105 cdef grpc_call_credentials *c(self) except *:
111 cdef grpc_channel_credentials *c(self) except *:
139 cdef grpc_channel_credentials *c(self) except *:
168 cdef grpc_channel_credentials *c(self) except *:
186 cdef grpc_channel_credentials *c(self) except *:
[all …]
Dtime.pxd.pxi4 # you may not use this file except in compliance with the License.
16 cdef gpr_timespec _timespec_from_time(object time) except *
19 cdef double _time_from_timespec(gpr_timespec timespec) except *
Dmetadata.pxd.pxi4 # you may not use this file except in compliance with the License.
17 metadata, grpc_metadata **c_metadata, size_t *c_count) except *
20 cdef void _release_c_metadata(grpc_metadata *c_metadata, int count) except *
Dtime.pyx.pxi4 # you may not use this file except in compliance with the License.
16 cdef gpr_timespec _timespec_from_time(object time) except *:
26 cdef double _time_from_timespec(gpr_timespec timespec) except *:
Darguments.pxd.pxi4 # you may not use this file except in compliance with the License.
26 cdef void c(self, argument, references) except *
36 cdef grpc_channel_args *c_args(self) except *
/third_party/boost/libs/serialization/test/
Dtest_unregistered.cpp84 bool except = false; in save_unregistered1() local
89 except = true; in save_unregistered1()
92 BOOST_CHECK_MESSAGE(except, "lack of registration not detected !"); in save_unregistered1()
111 bool except = false;
116 except = true;
123 BOOST_CHECK_MESSAGE(except, "lack of registration not detected !");
139 bool except = false; in save_unregistered2() local
144 except = true; in save_unregistered2()
147 BOOST_CHECK_MESSAGE(! except, "registration not detected !"); in save_unregistered2()
165 bool except = false; in load_unregistered2() local
[all …]
/third_party/boost/libs/metaparse/doc/
Dexcept.qbk1 [#except]
2 [section except]
7 struct except;
20 `except` accepts the input when `P` rejects it and the result of parsing is the
21 `Result` argument. When `P` accepts the input, `except` rejects it and the
26 #include <boost/metaparse/except.hpp>
33 get_result<except<p, c, msg>, s, pos>::type
36 get_remaining<except<p, c, msg>, s, pos>::type
39 get_position<except<p, c, msg>, s, pos>::type
47 #include <boost/metaparse/except.hpp>
[all …]
/third_party/boost/boost/coroutine2/detail/
Dpull_control_block_cc.ipp68 except = std::current_exception();
97 except = std::current_exception();
108 except{},
112 if ( except) {
113 std::rethrow_exception( except);
123 except{},
148 if ( except) {
149 std::rethrow_exception( except);
224 except = std::current_exception();
253 except = std::current_exception();
[all …]
Dpush_control_block_cc.ipp68 except = std::current_exception();
99 except = std::current_exception();
110 except{} {
120 except{} {
138 if ( except) {
139 std::rethrow_exception( except);
150 if ( except) {
151 std::rethrow_exception( except);
199 except = std::current_exception();
230 except = std::current_exception();
[all …]
/third_party/ltp/testcases/kernel/mem/mtest06/
Dshmat1.c115 unsigned long except; /* exception type. */ in sig_handler() local
127 except = scp->trapno; in sig_handler()
131 switch (except) { in sig_handler()
134 "Exception - invalid TSS, exception #[%ld]\n", except); in sig_handler()
139 except); in sig_handler()
144 except); in sig_handler()
149 except); in sig_handler()
153 "Exception - page fault, exception #[%ld]\n", except); in sig_handler()
159 except); in sig_handler()
/third_party/boost/libs/metaparse/test/
Dexcept.cpp21 BOOST_METAPARSE_TEST_CASE(except) in BOOST_METAPARSE_TEST_CASE() argument
24 using boost::metaparse::except; in BOOST_METAPARSE_TEST_CASE()
36 apply_wrap2<except<one_char, int13, test_failure>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
45 except<fail<test_failure>, int13, test_failure>, in BOOST_METAPARSE_TEST_CASE()
/third_party/python/Doc/tutorial/
Derrors.rst92 ... except ValueError:
99 :keyword:`except` keywords) is executed.
101 * If no exception occurs, the *except clause* is skipped and execution of the
106 :keyword:`except` keyword, the except clause is executed, and then execution
109 * If an exception occurs which does not match the exception named in the except
114 A :keyword:`try` statement may have more than one except clause, to specify
117 in other handlers of the same :keyword:`!try` statement. An except clause may
120 ... except (RuntimeError, TypeError, NameError):
123 A class in an :keyword:`except` clause is compatible with an exception if it is
125 except clause listing a derived class is not compatible with a base class). For
[all …]
/third_party/icu/icu4c/source/test/testdata/
Dnumberpermutationtest.txt928 compact-short percent sign-accounting-except-zero
942 compact-short currency/EUR sign-accounting-except-zero
956 compact-short measure-unit/length-furlong sign-accounting-except-zero
970 scientific/+ee/sign-always percent sign-accounting-except-zero
984 scientific/+ee/sign-always currency/EUR sign-accounting-except-zero
998 scientific/+ee/sign-always measure-unit/length-furlong sign-accounting-except-zero
1600 compact-short unit-width-narrow sign-accounting-except-zero
1614 compact-short unit-width-full-name sign-accounting-except-zero
1628 scientific/+ee/sign-always unit-width-narrow sign-accounting-except-zero
1642 scientific/+ee/sign-always unit-width-full-name sign-accounting-except-zero
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/
Dnumberpermutationtest.txt928 compact-short percent sign-accounting-except-zero
942 compact-short currency/EUR sign-accounting-except-zero
956 compact-short measure-unit/length-furlong sign-accounting-except-zero
970 scientific/+ee/sign-always percent sign-accounting-except-zero
984 scientific/+ee/sign-always currency/EUR sign-accounting-except-zero
998 scientific/+ee/sign-always measure-unit/length-furlong sign-accounting-except-zero
1600 compact-short unit-width-narrow sign-accounting-except-zero
1614 compact-short unit-width-full-name sign-accounting-except-zero
1628 scientific/+ee/sign-always unit-width-narrow sign-accounting-except-zero
1642 scientific/+ee/sign-always unit-width-full-name sign-accounting-except-zero
[all …]
/third_party/node/test/parallel/
Dtest-module-readonly.js33 let except = null; variable
38 except = err;
48 assert.ifError(except);
/third_party/libxml2/test/relaxng/
DtutorA.rng117 <element name="except">
236 <ref name="except-name-class"/>
240 <ref name="except-name-class"/>
249 <define name="except-name-class">
253 <element name="except">
288 <except>
291 </except>
301 <except>
303 </except>
Dambig_name-class.rng117 <element name="except">
236 <ref name="except-name-class"/>
240 <ref name="except-name-class"/>
249 <define name="except-name-class">
253 <element name="except">
288 <except>
291 </except>
301 <except>
303 </except>
/third_party/boost/boost/beast/_experimental/unit_test/
Dsuite.hpp283 except(F&& f, String const& reason);
286 except(F&& f) in except() function in boost::beast::unit_test::suite
288 return except(f, ""); in except()
292 except(F&& f, String const& reason);
295 except(F&& f) in except() function in boost::beast::unit_test::suite
297 return except<E>(f, ""); in except()
483 except(F&& f, String const& reason) in except() function in boost::beast::unit_test::suite
501 except(F&& f, String const& reason) in except() function in boost::beast::unit_test::suite
/third_party/flutter/skia/tools/skqp/src/
Dskqp_main.cpp107 std::string except; in main() local
109 std::tie(outcome, except) = skqp.evaluateGM(backend, gmFactory); in main()
110 if (!except.empty()) { in main()
111 out << "ERROR: " << testName << " (" << except << ")\n"; in main()
/third_party/mingw-w64/mingw-w64-headers/crt/
Dsehmap.h8 #undef except
12 #define except __except macro
/third_party/skia/tools/skqp/src/
Dskqp_main.cpp122 std::string except; in main() local
124 std::tie(outcome, except) = skqp.evaluateGM(backend, gmFactory); in main()
125 if (!except.empty()) { in main()
126 out << "ERROR: " << testName << " (" << except << ")\n"; in main()
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/
Dcall.pxd.pxi4 # you may not use this file except in compliance with the License.
45 …ef void _create_grpc_call(self, object timeout, bytes method, CallCredentials credentials) except *
46 cdef void _set_status(self, AioRpcStatus status) except *
47 cdef void _set_initial_metadata(self, tuple initial_metadata) except *

12345678910>>...212