Home
last modified time | relevance | path

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

12345678910>>...12

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Dtrailing_lambda_and_optional_parameterets10.ets53 assertTrue(Tracker.lambdaCalled, "Scenario 1: Lambda should be executed");
54 assertTrue(Tracker.blockExecuted, "Scenario 1: Block should be executed");
64 assertTrue(Tracker.lambdaCalled, "Scenario 2: Lambda should be executed");
65 assertTrue(Tracker.blockExecuted, "Scenario 2: Block should be executed");
75 assertTrue(Tracker.lambdaCalled, "Scenario 3: Lambda should be executed");
76 assertTrue(Tracker.blockExecuted, "Scenario 3: Block should be executed");
84 assertTrue(Tracker.blockExecuted, "Boundary Test: Block should be executed");
93 assertTrue(Tracker.lambdaCalled, "Boundary Test: Lambda should be executed");
Dunion_type_parameters.ets30 assertEQ(foo<D>(new B<D>()), 42, "Error! branch with return 42 must be executed")
31 assertEQ(foo<D>(new C<D>()), 41, "Error! branch with return 41 must be executed")
/arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/
Drunner_base.py62 … # ignored test is a test what should be loaded and executed, but its failure should be ignored
67 # list of file names, each is a name of a test. Every test should be executed
70 # list of results of every executed test
72 # name of file with a list of only tests what should be executed
73 # if it's specified other tests are not executed
77 … # name of the single test file in form of a relative path from test_root what should be executed
78 # if it's specified other tests are not executed even if test_list is set
82 # failed + ignored + passed + excluded_after = len of all executed tests
/arkcompiler/runtime_core/static_core/runtime/mem/gc/workers/
Dgc_workers_task_queue.cpp36 size_t executed = 0; in RunInCurrentThread() local
38 executed = GetGC()->GetWorkersTaskQueue()->ExecuteForegroundTask(); in RunInCurrentThread()
39 } while (executed != 0); in RunInCurrentThread()
/arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_test/bytecode_har/src/main/ets/workers/
DWorker.ets22 * The event handler is executed in the worker thread.
34 * The event handler is executed in the worker thread.
43 * The event handler is executed in the worker thread.
/arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_test/bytecode_har1/src/main/ets/workers/
DWorkers.ets22 * The event handler is executed in the worker thread.
34 * The event handler is executed in the worker thread.
43 * The event handler is executed in the worker thread.
/arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/tests/
Dtest_runner.py51 stdout=b"executed",
68 …expected = {"compile": {"error": "", "exit_code": 0, "output": "executed"}, "disassembly": None, "…
90 stdout=b"executed",
139 "output": "executed"
220 stdout=b"executed",
240 "output": "executed"
288 stdout=b"executed",
306 "output": "executed"
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
Dtaskpool.ets127 /// the task priority is idle, only be executed if there are no other priorities
206 * @param callback Callback to be registered and executed when the task is enqueued
207 * @throws Error if task is executed. It does not support the registration of listeners
217 * @param callback Callback to be registered and executed before the task execution
218 * @throws Error if task is executed. It does not support the registration of listeners
228 * @param callback Callback to be registered and executed when the task fails to execute
229 * @throws Error if task is executed. It does not support the registration of listeners
237 * Register a callback and call it when the task successfully executed
239 … * @param callback Callback to be registered and executed when the task successfully executed
240 * @throws Error if task is executed. It does not support the registration of listeners
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-common-tests/taskpool/
Dlong_task.ets54 }, new Error('taskpool:: The long task can only be executed once'));
80 …}, new Error('taskpool:: The concurrent task has been executed and cannot be executed periodically…
93 new Error('taskpool:: The long task can only be executed once'));
Dgroup_tasks.ets114 …}, new Error('taskpool:: The concurrent task has been executed and cannot be executed periodically…
216 }, new Error('taskpool:: taskGroup is not executed or has been executed'));
227 arktest.assertEQ(e.message, 'taskpool:: taskGroup is not executed or has been executed');
241 }, new Error('taskpool:: taskGroup is not executed or has been executed'));
255 }, new Error('taskpool:: taskGroup is not executed or has been executed'));
266 // Executed task
270 // Executed task via SequenceRunner
Dseqrunner_tasks.ets83 …}, new Error('taskpool:: The concurrent task has been executed and cannot be executed periodically…
181 }, new Error('taskpool:: task is not executed or has been executed'));
198 arktest.assertEQ(e.message, 'taskpool:: sequenceRunner task has been executed');
210 }, new Error('taskpool:: sequenceRunner task has been executed'));
/arkcompiler/toolchain/tooling/static/types/
Ddebugger_call_function_on_request.h32 …* - `callFrameId_`: size_t - The identifier of the call frame where the function will be executed.…
33 …* - `functionDeclaration_`: std::string - The function declaration string to be executed. (Require…
41 …nContextId_`: size_t - The identifier of the execution context where the function will be executed.
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
Ddebugger_call_function_on_request.h32 …* - `callFrameId_`: size_t - The identifier of the call frame where the function will be executed.…
33 …* - `functionDeclaration_`: std::string - The function declaration string to be executed. (Require…
41 …nContextId_`: size_t - The identifier of the execution context where the function will be executed.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/02.separate_module_initializer/
Dimport_statements.ets21 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/runtime_core/static_core/libpandabase/taskmanager/
Dworker_thread.cpp95 size_t executed = 0; in ExecuteTasksFromLocalQueue() local
103 executed++; in ExecuteTasksFromLocalQueue()
105 return executed; in ExecuteTasksFromLocalQueue()
Dtask.h65 * @param runner - body of task, that will be executed.
71 /// @brief Makes task invalid, it should not be executed anymore.
/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/ets_frontend/ets2panda/compiler/core/
DdynamicContext.cpp223 // First compile of the finaly clause, executed if the statement executed normally in EmitFinalizer()
236 // Third compile of the finaly clause, executed if the statement executed abruptly in EmitFinalizer()
261 …// Second compile of the finaly clause, executed if the statement executed normally, but abrupted … in EmitFinalizerInsertion()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D8_statements.rst118 declarations, are executed one after another in the textual order of their
127 ``return`` statement, and is executed accordingly.
225 executed. Otherwise, *elseStatement* is executed (if provided).
678 not executed.
706 … there is only a default clause in switchBlock then the default's statements/block are not executed
798 executed, then the execution continues through any remaining *caseClause*(s) and
899 ``catch`` clause block is executed.
986 executed without regard to whether a ``try-catch`` completes normally or
997 A ``finally`` block is executed without regard to how (by reaching ``return``
1031 // finally clause will be executed after try-catch is
[all …]
/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/tests-u-runner/runner/
Drunner_base.py152 … # ignored test is a test what should be loaded and executed, but its failure should be ignored
157 # list of file names, each is a name of a test. Every test should be executed
160 # list of results of every executed test
162 # name of file with a list of only tests what should be executed
163 # if it's specified other tests are not executed
165 … # name of the single test file in form of a relative path from test_root what should be executed
166 # if it's specified other tests are not executed even if test_list is set
170 # failed + ignored + passed + excluded_after = len of all executed tests
/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/runtime_core/static_core/tests/vm-benchmarks/
Dinterop.readme.md30 …s of such). Therefore, source compilation will be skipped, and the binaries will be executed as is.
32 - If only **ets** files are found matching the pattern, they will compiled and executed using the d…
36 …) handling the invocation outcome, while the latter indicates a runtime the feature is executed in.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dets_try_catch9.ets16 … Catch Resolving JIT IfImm is replaced by DeoptimizeIf when the following try block is not executed
36 …ch Resolving AOT+PGO IfImm is replaced by DeoptimizeIf when the following try block is not executed
Dets_try_catch14.ets16 … Catch Resolving JIT IfImm is replaced by DeoptimizeIf when the following try block is not executed
36 …ch Resolving AOT+PGO IfImm is replaced by DeoptimizeIf when the following try block is not executed

12345678910>>...12