Home
last modified time | relevance | path

Searched full:executed (Results 1 – 25 of 232) sorted by relevance

12345678910

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/taskpool/
Dgroup_tasks.sts91 }, new Error("taskpool:: taskGroup is not executed or has been executed"));
102 assertEQ(e.message, "taskpool:: taskGroup is not executed or has been executed");
117 }, new Error("taskpool:: taskGroup is not executed or has been executed"));
123 // Executed task
127 // Executed task via SequenceRunner
Dseqrunner_tasks.sts91 }, new Error("taskpool:: task is not executed or has been executed"));
101 assertEQ(e.message, "taskpool:: sequenceRunner task has been executed");
114 }, new Error("taskpool:: sequenceRunner task has been executed"));
Dcommon_tasks.sts127 // Add callbacks for executed task
129 …let expectedCallbackError = new Error("taskpool:: The executed task does not support the registrat…
169 let expectedError = new Error("taskpool:: task is not executed or has been executed");
188 assertEQ(e.message, "taskpool:: task is not executed or has been executed");
271 …dency(task3); }, new Error("taskpool:: cannot removeDependency on a dependent and executed task"));
/arkcompiler/runtime_core/static_core/runtime/mem/gc/workers/
Dgc_workers_task_queue.cpp37 size_t executed = 0; in RunInCurrentThread() local
39executed = taskmanager::TaskScheduler::GetTaskScheduler()->HelpWorkersWithTasks(GC_TASK_PROPERTIES… in RunInCurrentThread()
40 } while (executed != 0); in RunInCurrentThread()
/arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/tests/
Dtest_runner.py48 stdout=b"executed",
60 expected = {"compile": {"error": "", "exit_code": 0, "output": "executed"}, "disassembly": None}
91 stdout=b"executed",
111 "output": "executed"
183 stdout=b"executed",
203 "output": "executed"
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
Dtaskpool.sts98 * @param callback Callback to be registered and executed when the task is enqueued
99 * @throws Error if task is executed. It does not support the registration of listeners
109 * @param callback Callback to be registered and executed before the task execution
110 * @throws Error if task is executed. It does not support the registration of listeners
120 * @param callback Callback to be registered and executed when the task fails to execute
121 * @throws Error if task is executed. It does not support the registration of listeners
129 * Register a callback and call it when the task successfully executed
131 * @param callback Callback to be registered and executed when the task successfully executed
132 * @throws Error if task is executed. It does not support the registration of listeners
144 * - this task or argument tasks executed (as common or via SequenceRunner)
[all …]
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Dunion_type_parameters.sts30 assert foo<D>(new B<D>()) == 42: "Error! branch with return 42 must be executed";
31 assert foo<D>(new C<D>()) == 41: "Error! branch with return 41 must be executed";
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/02.separate_module_initializer/
Dimport_statements.sts21 initializers are executed to ensure that they all have valid initial values
22 …e separate module has top-level statements (see Top-Level Statements), then they are also executed.
/arkcompiler/ets_frontend/es2panda/test/parse_command/
DREADME.md79 + `--add_case`: Add the file path of a single test case to be executed.
80 + `--add_case_dir`: Add the directory where the test cases are to be executed and the script will a…
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D8_statements.rst116 declarations, are executed one by one in the textual order of their
125 ``return`` statement, and is executed accordingly.
209 ``true``, then *thenStatement* is executed. Otherwise, *elseStatement* is
210 executed (if provided). A :index:`compile-time error` occurs if the expression
610 body, class initializer, or top-level statement are not executed.
638 … there is only a default clause in switchBlock then the default's statements/block are not executed
852 ``catch`` clause block is executed.
948 executed without regard to whether a ``try-catch`` completes normally or
957 A ``finally`` block is executed without regard to how (by reaching
993 // finally clause will be executed after try-catch is
[all …]
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DdynamicContext.cpp222 // First compile of the finaly clause, executed if the statement executed normally in EmitFinalizer()
234 // Third compile of the finaly clause, executed if the statement executed abruptly in EmitFinalizer()
259 …// Second compile of the finaly clause, executed if the statement executed normally, but abrupted … in EmitFinalizerInsertion()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Drunner_base.py151 … # ignored test is a test what should be loaded and executed, but its failure should be ignored
156 # list of file names, each is a name of a test. Every test should be executed
159 # list of results of every executed test
161 # name of file with a list of only tests what should be executed
162 # if it's specified other tests are not executed
164 … # name of the single test file in form of a relative path from test_root what should be executed
165 # if it's specified other tests are not executed even if test_list is set
169 # failed + ignored + passed + excluded_after = len of all executed tests
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dbasics.rst506 case label1: // will be executed if label1 is matched
512 case label3: // will be executed if label2 or label3 is matched
526 the corresponding statements are executed.
529 default statements are executed.
535 executed.
569 A ``for`` statement is executed repeatedly until the specified loop exit
580 When a ``for`` statement is executed, the following process takes place:
583 #. An ``init`` expression is executed, if any. This expression usually
588 body are to be executed. If the value of condition is ``false``, then
591 #. The statements of the ``for`` body are executed.
[all …]
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/
Dinterop.readme.md28 …s of such). Therefore, source compilation will be skipped, and the binaries will be executed as is.
30 - If only **sts** files are found matching the pattern, they will compiled and executed using the d…
34 … handling the invocation outcome , while the latter indicates a runtime the feature is executed in.
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dmonitor.yaml271 … - description: Check that a thread owns a monitor after several executed monitorexit instructions
288 …Check that a thread owns a monitor if amount of executed monitorexit instructions is less than amo…
289 of executed monitorenter instructions
298 …Check that a thread does not own a monitor if amount of executed monitorexit instructions is the s…
299 amount of executed monitorenter instructions
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/topLevelStmts/
DglobalClassHandler.h47 * @param init_statements statements which should be executed
69 * @return Statements, which should be executed before the start
/arkcompiler/ets_frontend/test/scripts/utils/
Dreadme.md6 …y commit information from 00:00 on the day before the script run to the time the script is executed
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/05.if_statements/
Dif_not_executed.sts17 desc: If statement (not executed)
Dif_neg.sts18 desc: An if statement can be conditionally executed, or one of the two two statements can be select…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/07.while_statements_and_do_statements/
Dwhile_not_executed.sts17 desc: While statement (not executed)
/arkcompiler/runtime_core/static_core/docs/
Dtask_manager.md13 - for which VM instance (`static` or `dynamic`) this task is executed;
25 …n proportion based on the current context(i.e. which language currently executed - static or dynam…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/04.array_literal/
Darr_abrupt.sts19 Initializer expressions are executed from left to right.
Darr_expr.sts19 Initializer expressions are executed from left to right.
/arkcompiler/runtime_core/docs/diagrams/
Dmm-components.pucomponent22 [GC] .> [GCThread] : executed in
/arkcompiler/runtime_core/static_core/docs/diagrams/
Dmm-components.plantuml22 [GC] .> [GCThread] : executed in

12345678910