Home
last modified time | relevance | path

Searched full:thrown (Results 1 – 25 of 163) sorted by relevance

1234567

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DExceptions.sts19 * Represents exception that is thrown in case of null pointer dereference
37 * Represents exception that is thrown in case of ?
54 * Represents exception that is thrown when provided argument have value outside the allowable range
71 …* Represents exception that is thrown when a method has been invoked at an illegal or inappropriat…
88 * Represents exception that is thrown when class is not found
105 * Represents exception that is thrown when verifier detects errors in class
122 * Represents exception that is thrown when linker detects errors in class
139 * Represents exception that is thrown when runtime detects incompatible changes in class
156 * Represents exception that is thrown when the requested operation is not supported.
173 …* @class Represents exception that is thrown when attempting to wait, notify or notifyAll on objec…
[all …]
DErrors.sts55 * @class Represents an error that occurs when exception is thrown and not catched
116 …* @class Represents exception that is thrown when illegal arithmetic operation is occured (e.g. di…
197 * @class Represents exception that is thrown when provided collection index is out of bounds
206 * @class Represents exception that is thrown when provided string index is out of bounds
215 * @class Represents exception that is thrown in case of illegal class casting
224 …* @class Represents exception that is thrown when attempting to store an object of different type …
233 * @class Represents exception that is thrown when negative array size is supplied
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/06.statements/02.multiple_catch_clauses_in_try_statements/
Dfinally.params.yaml18 // finally block with no exception thrown
32 // return from finally block with no exception thrown
45 // return from finally block with exception thrown
60 // exception thrown, no suitable catch, propagates outside
88 // error thrown, no suitable catch, propagates outside
117 // exception thrown, with suitable catch, no propagation outside
147 // error thrown, with suitable catch, no propagation outside
178 // exception thrown, with suitable catch, re-thrown from catch
207 // error thrown, with suitable catch, re-thrown from catch
237 // exception thrown, with suitable catch, re-thrown from finally
[all …]
Dexec.sts20 Try block execution completes abruptly if an exception x is thrown inside the try block.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/15.try_statements/02.finally_clause/
Dfinally.params.yaml27 // finally block with no error thrown
39 // return from finally block with no error thrown
50 // return from finally block with error thrown
63 // error thrown, no suitable catch, propagates outside
88 // error thrown, with suitable catch, no propagation outside
115 // error thrown, with suitable catch, re-thrown from catch
144 // error thrown, with suitable catch, re-thrown from finally
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/coroutines/
Dlaunch_exception.sts34 console.println("No exceptions thrown by coro_stack_overflow() but should be!")
38 console.println("Expected StackOverflowError but another exception has been thrown!");
48 console.println("No exceptions thrown by coro_error() but should be!")
52 console.println("Expected Error but another exception has been thrown!");
Dlaunch_oom.sts32 console.println("Wrong exception thrown!");
36 console.println("No exception thrown but should be!");
/arkcompiler/runtime_core/static_core/runtime/tests/
Dexception_test.cpp174 << "AbstractMethod exception should have been thrown, but another has"; in TEST_F()
175 ASSERT_NE(result.GetAs<int64_t>(), noExceptions) << "No exceptions were thrown"; in TEST_F()
259 << "AbstractMethod exception should have been thrown, but another has"; in TEST_F()
260 ASSERT_NE(result.GetAs<int64_t>(), noExceptions) << "No exceptions were thrown"; in TEST_F()
347 << "AbstractMethod exception should have been thrown, but another has"; in TEST_F()
348 ASSERT_NE(result.GetAs<int64_t>(), noExceptions) << "No exceptions were thrown"; in TEST_F()
436 << "AbstractMethod exception should have been thrown, but another has"; in TEST_F()
437 ASSERT_NE(result.GetAs<int64_t>(), noExceptions) << "No exceptions were thrown"; in TEST_F()
526 << "AbstractMethod exception should have been thrown, but another has"; in TEST_F()
527 ASSERT_NE(result.GetAs<int64_t>(), noExceptions) << "No exceptions were thrown"; in TEST_F()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/14.throw_statements/
Dthrow_neg2.sts17 …atements cause an exception to be thrown. If no such try statement is found, then the UncatchedExc…
Dthrow_neg.sts18 desc: Throw statements cause an exception to be thrown.
Dthrow.sts18 desc: Throw statements cause an exception or Error to be thrown.
Dthrow_neg1.sts18 Throw statements cause an exception to be thrown. It is necessary at the compile time
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D8_statements.rst55 action is performed without an exception or an error being thrown.
58 if it causes an exception or an error to be thrown.
766 A ``throw`` statement causes *exception* or *error* to be thrown (see
769 (see :ref:`Try Statements`) is found that catches the thrown value. If no
770 ``try`` statement is found, then ``UncaughtExceptionError`` is thrown.
781 This implies that the thrown object is never ``null``.
786 be thrown at any place in the code.
790 thrown value
791 thrown object
856 If an error is thrown in the ``try`` block directly or indirectly, then the
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/15.try_statements/
Dtry.params.yaml43 // no catch block, Error thrown
56 // no finally block, Error thrown
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dcheckcast.yaml28 … resolved type, accumulator content remains unchanged. Otherwise ClassCastException is thrown.
314 description: Check that ClassCastException is thrown when object cannot be cast to a type
317 Otherwise ClassCastException is thrown.
367 description: Check that ClassCastException is thrown when array cannot be cast to a type
370 Otherwise ClassCastException is thrown.
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dcheckcast.yaml49 … resolved type, accumulator content remains unchanged. Otherwise ClassCastException is thrown.
787 description: Check that ClassCastException is thrown when object cannot be cast to a type
790 Otherwise ClassCastException is thrown.
856 description: Check that ClassCastException is thrown when object cannot be cast to a type
859 Otherwise ClassCastException is thrown.
911 description: Check that ClassCastException is thrown when array cannot be cast to a type
914 Otherwise ClassCastException is thrown.
956 description: Check that ClassCastException is thrown when array cannot be cast to a type
959 Otherwise ClassCastException is thrown.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/02.superinterfaces_and_subinterfaces/
Dcirculary_interface_declaration.sts18 …erfaces are detected at run time, as interfaces are loaded, then a ClassCircularityError is thrown.
/arkcompiler/runtime_core/docs/
Ddebugger-vscode-communication.md21 …on was not established at the allocated time the `Can not launch debug server` error will be thrown
/arkcompiler/runtime_core/static_core/docs/
Ddebugger-vscode-communication.md21 …on was not established at the allocated time the `Can not launch debug server` error will be thrown
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/03.class_extension_clause/
Dcircularly_class_declaration.sts18 …ed classes are detected at run time, as classes are loaded, then a ClassCircularityError is thrown.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/15.exceptions/
Dthrow_exception.sts18 assert: An exception can be thrown explicitly using the throw statement or implicitlyby the Virtual…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/18.ensure-not-nullish_expression/
Dnull_check_exception_3.sts17 …f the result of the evaluation of e is equal to null or undefined, then NullPointerError is thrown.
Dnull_check_exception_2.sts17 …f the result of the evaluation of e is equal to null or undefined, then NullPointerError is thrown.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/15.try_statements/01.catch_clauses/
Dcatch.sts20 - Catch identifier that provides access to the object associated with the error thrown; and
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/15.try_statements/03.try_statement_execution/
Dexec.sts20 Try block execution completes abruptly if an exception or error x is thrown inside the try block.

1234567