Searched refs:throwing (Results 1 – 25 of 189) sorted by relevance
12345678
/third_party/boost/libs/outcome/doc/src/content/tutorial/advanced/payload/ |
D | copy_file.md | 17 Before Outcome, the common design pattern was to provide throwing and non-throwing overloads 18 of every API. As you can see above, the throwing API throws a [`filesystem::filesystem_error`](http… 20 refer to the files which were the source of any failure. However the non-throwing overload 22 non-throwing overload sometimes. 25 and additionally have the non-throwing edition return the exact same additional information 26 as the throwing edition?
|
D | copy_file3.md | 2 title = "Auto-throwing filesystem_error" 13 Seeing as we are replacing the throwing overload of `copy_file()` in the
|
/third_party/boost/libs/type_traits/doc/ |
D | is_nothrow_move_constructible.qbk | 14 __inherit If T is a (possibly cv-qualified) type with a non-throwing move-constructor 15 or a type without move-constructor but with non-throwing copy-constructor, 24 non-throwing copy-constructor; this is always safe, if possibly sub-optimal.
|
D | is_nothrow_move_assignable.qbk | 14 __inherit If `T` is a (possibly cv-qualified) type with a non-throwing move assignment-operator 15 or a type without move assignment-operator but with non-throwing assignment-operator, 27 non-throwing assignment-operator; this is always safe, if possibly sub-optimal.
|
D | has_nothrow_destruct.qbk | 13 __inherit If T is a (possibly cv-qualified) type with a non-throwing destructor 24 Note that destructors are assumed to be non-throwing unless they are explicitly marked otherwise wi…
|
D | is_nothrow_swappable.qbk | 16 where `std::swap` is visible) is valid and non-throwing, inherits from
|
D | has_nothrow_assign.qbk | 13 __inherit If T is a (possibly cv-qualified) type with a non-throwing assignment-operator
|
D | intrinsics.qbk | 62 …[[BOOST_IS_NOTHROW_MOVE_ASSIGN(T)][Should evaluate to true T has a non-throwing move assign operat… 63 …[[BOOST_IS_NOTHROW_MOVE_CONSTRUCT(T)][Should evaluate to true T has a non-throwing move constructo…
|
D | has_nothrow_copy.qbk | 16 __inherit If T is a (possibly cv-qualified) type with a non-throwing copy-constructor
|
D | has_nothrow_constructor.qbk | 16 __inherit If T is a (possibly cv-qualified) type with a non-throwing default-constructor
|
/third_party/boost/libs/outcome/doc/src/content/tutorial/advanced/constructors/ |
D | _index.md | 3 …truction of objects which use result<T, EC> to return failure instead of throwing a C++ exception." 12 that one cannot avoid throwing C++ exceptions to abort a construction. 17 shows you how to implement these for those who are absolutely adverse to ever throwing an exception,
|
D | static-constructor.md | 17 Remember that `operator new` has a non-throwing form, `new(std::nothrow)`.
|
/third_party/boost/libs/outcome/doc/src/content/reference/traits/ |
D | is_error_type_enum.md | 3 …or `E` types constructible from `Enum` types which are to receive error throwing no-value policies… 6 …for `E` types constructible from `Enum` types which are to receive error throwing no-value policies
|
D | is_error_type.md | 3 …le integral constant type true for `E` types which are to receive error throwing no-value policies… 7 error throwing no-value policies. Special weakened implicit construction enable
|
/third_party/boost/libs/throw_exception/ |
D | README.md | 4 Common infrastructure for throwing exceptions
|
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/ |
D | no-throw-literal.md | 1 # Disallow throwing literals as exceptions (`no-throw-literal`) 10 This rule is aimed at maintaining consistency when throwing exception by disallowing to throw liter…
|
/third_party/boost/libs/convert/doc/ |
D | introduction.qbk | 22 * the choice of immediate or delayed exception-throwing and non-throwing conversion-failure ['proce…
|
D | design_notes.qbk | 21 …# ['(R3a)] error-processing is orthogonal to the normal program flow (exception-throwing interface… 22 …# ['(R3b)] normal and error-processing flows are part of the same program flow (non-throwing inter… 23 # ['(R4)] The throwing interface shall return the result of successful conversion or shall throw an… 24 # ['(R5)] The non-throwing interface shall return the result and/or some indication of conversion s…
|
/third_party/flutter/flutter/packages/flutter/test/animation/ |
D | iteration_patterns_test.dart | 83 testWidgets('AnimationController with throwing listener', (WidgetTester tester) async { 103 testWidgets('AnimationController with throwing status listener', (WidgetTester tester) async {
|
/third_party/node/test/message/ |
D | promise_unhandled_warn_with_error.out | 10 …onWarning: Unhandled promise rejection. This error originated either by throwing inside of an asyn…
|
/third_party/node/doc/guides/ |
D | cpp-style-guide.md | 32 * [Avoid throwing JavaScript errors in C++ methods](#avoid-throwing-javascript-errors-in-c) 33 …* [Avoid throwing JavaScript errors in nested C++ methods](#avoid-throwing-javascript-errors-in-ne… 329 ### Avoid throwing JavaScript errors in C++ 383 #### Avoid throwing JavaScript errors in nested C++ methods
|
/third_party/boost/libs/contract/test/ |
D | Jamfile.v2 | 57 # No throwing_except test (as throwing twice calls terminate). 106 # No throwing_except test (as throwing twice calls terminate). 186 # No throwing_except test (as throwing twice calls terminate). 234 # No throwing_except test (as throwing twice calls terminate). 292 # No throwing_except test (as throwing twice calls terminate).
|
/third_party/boost/libs/property_tree/doc/ |
D | accessing.qbk | 34 # The throwing version (__ptree_get__): 47 …of throwing. This is very useful in common situations where one wants to allow omitting of some ke…
|
/third_party/boost/libs/core/doc/ |
D | uncaught_exceptions.qbk | 21 throwing an exception from a destructor can terminate the program.
|
/third_party/boost/libs/outcome/doc/src/content/reference/functions/ |
D | strong_swap.md | 8 … if, and only if, either or both of `value_type` or `error_type` have a throwing move constructor …
|
12345678