| /third_party/python/Lib/test/ |
| D | test_raise.py | 15 except: 30 except RuntimeError as e: 39 except IndexError as e: 42 except IndexError as exc2: 51 except: 54 except KeyError: 63 except: 76 except: 84 except: 86 except ValueError as e: [all …]
|
| D | test_opcodes.py | 13 except NameError: pass 14 except ZeroDivisionError: pass 15 except TypeError: pass 17 except: pass 31 except OSError: 62 except: pass 65 except AClass: pass 68 except AClass: pass 71 except CClass: self.fail() 72 except: pass [all …]
|
| D | test_exception_variations.py | 12 except: 30 except: 47 except: 61 except: 74 except: 84 except: 95 except: 109 except: 135 except: 156 except: [all …]
|
| D | pythoninfo.py | 63 except AttributeError: 71 except AttributeError: 174 except BlockingIOError as exc: 177 except OSError as exc: 225 except OSError: 318 except ImportError: 325 except KeyError: 345 except ImportError: 383 except OSError: 394 except ImportError: [all …]
|
| D | test_exceptions.py | 44 except exc as err: 48 except exc as err: 66 except EOFError: 93 except NameError: pass 105 except SyntaxError: pass 112 except TabError: pass 122 except TypeError: pass 129 except ZeroDivisionError: pass 133 except Exception as e: pass 145 except SyntaxError as e: [all …]
|
| /third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/ |
| D | operation.pxd.pxi | 4 # 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 …]
|
| D | operation.pyx.pxi | 4 # 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 …]
|
| D | credentials.pxd.pxi | 4 # 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 …]
|
| /third_party/python/Lib/asyncio/ |
| D | selector_events.py | 18 except ImportError: # pragma: no cover 37 except KeyError: 124 except InterruptedError: 126 except BlockingIOError: 141 except OSError: 169 except (BlockingIOError, InterruptedError, ConnectionAbortedError): 172 except OSError as exc: 219 except BaseException: 224 except (SystemExit, KeyboardInterrupt): 226 except BaseException as exc: [all …]
|
| D | __main__.py | 35 except SystemExit: 37 except KeyboardInterrupt as ex: 41 except BaseException as ex: 52 except BaseException as exc: 59 except SystemExit: 61 except BaseException: 109 except ImportError: 119 except KeyboardInterrupt:
|
| /third_party/python/Tools/scripts/ |
| D | pickle2db.py | 30 except ImportError: 34 except ImportError: 38 except ImportError: 42 except ImportError: 47 except ImportError: 60 except getopt.error: 73 except IOError: 83 except AttributeError: 89 except AttributeError: 95 except AttributeError: [all …]
|
| D | db2pickle.py | 25 except ImportError: 29 except ImportError: 33 except ImportError: 37 except ImportError: 42 except ImportError: 55 except getopt.error: 69 except IOError: 78 except AttributeError: 84 except AttributeError: 90 except AttributeError: [all …]
|
| /third_party/grpc/src/python/grpcio_channelz/grpc_channelz/v1/ |
| D | _servicer.py | 4 # you may not use this file except in compliance with the License. 35 except (ValueError, json_format.ParseError) as e: 46 except (ValueError, json_format.ParseError) as e: 57 except ValueError as e: 60 except json_format.ParseError as e: 73 except ValueError as e: 76 except json_format.ParseError as e: 87 except ValueError as e: 90 except json_format.ParseError as e: 101 except ValueError as e: [all …]
|
| /third_party/python/Doc/tutorial/ |
| D | errors.rst | 92 ... 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 107 continues after the try/except block. 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 not in other handlers of the same :keyword:`!try` statement. An *except clause* 120 ... except (RuntimeError, TypeError, NameError): 123 A class in an :keyword:`except` clause is compatible with an exception if it is [all …]
|
| /third_party/boost/libs/metaparse/doc/ |
| D | except.qbk | 1 [#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/python/Lib/lib2to3/fixes/ |
| D | fix_except.py | 1 """Fixer for except statements with named exceptions. 5 - "except E, T:" where T is a name: 7 except E as T: 9 - "except E, T:" where T is not a name, tuple or list: 11 except E as t: 14 This is done because the target of an "except" clause must be a 17 - "except E, T:" where T is a tuple or list literal: 19 except E as t: 33 if n.children[0].value == 'except': 42 tail=(['except' ':' (simple_stmt | suite)] [all …]
|
| /third_party/flutter/skia/infra/bots/recipe_modules/builder_name_schema/examples/ |
| D | full.py | 24 except ValueError: 29 except ValueError: 34 except ValueError: 45 except ValueError: 50 except ValueError: 56 except ValueError: 62 except ValueError: 67 except ValueError: 76 except ValueError: 89 except ValueError:
|
| /third_party/skia/infra/bots/recipe_modules/builder_name_schema/examples/ |
| D | full.py | 25 except ValueError: 30 except ValueError: 35 except ValueError: 46 except ValueError: 51 except ValueError: 57 except ValueError: 63 except ValueError: 68 except ValueError: 77 except ValueError: 90 except ValueError:
|
| /third_party/boost/libs/outcome/test/tests/ |
| D | noexcept-propagation.cpp | 60 struct Except struct 63 Except() = delete; argument 64 Except(const Except & /*unused*/) noexcept(false) in Except() argument 68 Except(Except && /*unused*/) noexcept(false) in Except() argument 72 Except &operator=(const Except & /*unused*/) noexcept(false) { return *this; } in operator =() argument 73 Except &operator=(Except && /*unused*/) noexcept(false) { return *this; } in operator =() argument 74 ~Except() noexcept(false) { n = 0; } in ~Except() argument 76 using type = outcome<Except>;
|
| /third_party/python/Lib/test/libregrtest/ |
| D | utils.py | 138 except KeyError: 145 except KeyError: 152 except KeyError: 159 except KeyError: 166 except KeyError: 173 except KeyError: 180 except KeyError: 187 except KeyError: 194 except KeyError: 201 except KeyError: [all …]
|
| /third_party/skia/platform_tools/debugging/lldb/ |
| D | skia.py | 52 except: 58 except: 71 except: 80 except: 98 except: 104 except: 117 except: 129 except: 147 except: 153 except: [all …]
|
| /third_party/grpc/src/python/grpcio/grpc/ |
| D | _interceptor.py | 4 # you may not use this file except in compliance with the License. 57 except AttributeError: 62 except AttributeError: 67 except AttributeError: 72 except AttributeError: 77 except AttributeError: 82 except AttributeError: 249 except grpc.RpcError as rpc_error: 251 except Exception as exception: # pylint:disable=broad-except 300 except Exception as exception: # pylint:disable=broad-except [all …]
|
| /third_party/boost/boost/coroutine2/detail/ |
| D | pull_control_block_cc.ipp | 68 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 …]
|
| /third_party/grpc/src/python/grpcio_testing/grpc_testing/_server/ |
| D | _service.py | 4 # you may not use this file except in compliance with the License. 49 except Exception as exception: # pylint: disable=broad-except 58 except Exception as exception: # pylint: disable=broad-except 64 except StopIteration: 67 except Exception as exception: # pylint: disable=broad-except
|
| /third_party/boost/libs/serialization/test/ |
| D | test_unregistered.cpp | 84 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 …]
|