| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | trailing_lambda_and_optional_parameterets10.ets | 53 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");
|
| D | union_type_parameters.ets | 30 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/ |
| D | runner_base.py | 62 … # 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/ |
| D | gc_workers_task_queue.cpp | 36 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/ |
| D | Worker.ets | 22 * 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/ |
| D | Workers.ets | 22 * 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/ |
| D | test_runner.py | 51 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/ |
| D | taskpool.ets | 127 /// 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/ |
| D | long_task.ets | 54 }, 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'));
|
| D | group_tasks.ets | 114 …}, 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
|
| D | seqrunner_tasks.ets | 83 …}, 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/ |
| D | debugger_call_function_on_request.h | 32 …* - `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/ |
| D | debugger_call_function_on_request.h | 32 …* - `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/ |
| D | import_statements.ets | 21 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/ |
| D | worker_thread.cpp | 95 size_t executed = 0; in ExecuteTasksFromLocalQueue() local 103 executed++; in ExecuteTasksFromLocalQueue() 105 return executed; in ExecuteTasksFromLocalQueue()
|
| D | task.h | 65 * @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/ |
| D | README.md | 79 + `--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/ |
| D | dynamicContext.cpp | 223 // 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/ |
| D | 8_statements.rst | 118 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/ |
| D | basics.rst | 506 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/ |
| D | runner_base.py | 152 … # 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/ |
| D | monitor.yaml | 271 … - 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/ |
| D | interop.readme.md | 30 …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/ |
| D | ets_try_catch9.ets | 16 … 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
|
| D | ets_try_catch14.ets | 16 … 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
|