| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/stream/ |
| D | StreamTransformTest.ets | 48 // this test case will be completed future 55 // this test case will be completed future 62 // this test case will be completed future 69 // this test case will be completed future 76 // this test case will be completed future 83 // this test case will be completed future 90 // this test case will be completed future 98 // this test case will be completed future 106 // this test case will be completed future 114 // this test case will be completed future [all …]
|
| D | StreamDuplexTest.ets | 46 // this test case will be completed future 53 // this test case will be completed future 60 // this test case will be completed future 67 // this test case will be completed future 74 // this test case will be completed future 81 // this test case will be completed future 88 // this test case will be completed future 96 // this test case will be completed future 104 // this test case will be completed future 112 // this test case will be completed future [all …]
|
| D | StreamReadableTest.ets | 42 // this test case will be completed future 49 // this test case will be completed future 59 // this test case will be completed future 66 // this test case will be completed future 73 // this test case will be completed future 80 // this test case will be completed future 87 // this test case will be completed future 94 // this test case will be completed future 102 // this test case will be completed future 110 // this test case will be completed future [all …]
|
| D | StreamWritableTest.ets | 38 // this test case will be completed future 45 // this test case will be completed future 52 // this test case will be completed future 59 // this test case will be completed future 66 // this test case will be completed future 73 // this test case will be completed future 80 // this test case will be completed future 88 // this test case will be completed future 96 // this test case will be completed future 103 // this test case will be completed future [all …]
|
| /arkcompiler/toolchain/test/autotest/aw/ |
| D | taskpool.py | 37 future = asyncio.run_coroutine_threadsafe(coro=coroutine, loop=self.event_loop) 38 future.add_done_callback(callback) if callback else None 40 future.add_done_callback(self._task_done) 51 def _task_done(self, future): argument 53 if future.exception(): 57 self.task_exception = future.exception()
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/ |
| D | utils.py | 28 from concurrent.futures import Future 284 def __in_progress(timer_function: Callable, future: Future) -> None: argument 286 if future.running(): 287 timer_function(future) 290 def __timer(cls, future: Future) -> None: argument 291 retimer = threading.Timer(2, cls.__in_progress, args=(cls.__timer, future)) 294 def start(self, future: Future) -> None: argument 296 self.__in_progress(self.__timer, future)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
| D | ets_object.cpp | 80 // word with acquire order to mark future relaxed read from EtsObjectStateInfo visible for us. in TryGetHashCode() 121 …// mark word with acquire order to mark future relaxed read from EtsObjectStateInfo visible for u… in TryGetInteropIndex() 143 …// mark word with acquire order to mark future relaxed read from EtsObjectStateInfo visible for u… in TrySetInteropIndex() 174 // word with acquire order to mark future relaxed read from EtsObjectStateInfo visible for us. in TryDropInteropIndex() 195 // word with acquire order to mark future relaxed read from EtsObjectStateInfo visible for us. in TryCheckIfHasInteropIndex()
|
| /arkcompiler/ets_frontend/es2panda/lexer/token/ |
| D | tokenType.h | 177 /* strict mode future reserved keywords */ 185 /* context dependent future */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/annotations/ |
| D | anno2.txt | 23 A set of *built-in annotations* can be added to some future language version. 55 A notion of *plugin-defined annotations* can be added to some future language version.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/cookbook/ |
| D | guide.rst | 62 compilation failure in the future versions. 77 list in future releases based on the developer feedback and more real-world
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | PromiseRef.ets | 19 * Class represents a result of an asynchronous operation in the future.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/07.keywords/ |
| D | reserved.ets | 18 desc: The following identifiers are also treated as soft keywords reserved for the future use (or u…
|
| /arkcompiler/ets_frontend/ets2panda/linter/ |
| D | tslinter.sh | 18 # get absolute path to linter folder for possible use in future
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_object_state_info.cpp | 48 …// Atomic with acquire order reason: ordering constraints for correctness of future non-atomic and… in TryAddNewInfo() 82 …// Atomic with acquire order reason: ordering constraints for correctness of future non-atomic and… in TryReadEtsHash() 104 …// Atomic with acquire order reason: ordering constraints for correctness of future non-atomic and… in TryReadInteropIndex() 127 …// Atomic with acquire order reason: ordering constraints for correctness of future non-atomic and… in TryDropInteropIndex()
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | enum_indexing.ets | 25 // check required in future
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/reference-processor/ |
| D | reference_processor.h | 60 …* Save reference for future processing and handle it with GC point of view (mark needed fields, if… 65 …/// Save reference for future processing and handle it with GC point of view (traverse needed fiel…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_es_checked/ |
| D | json.yaml | 14 # excluded due to future milestone
|
| /arkcompiler/ets_frontend/ets2panda/bindings/ |
| D | README.md | 7 change path from you future build dir in files:
|
| /arkcompiler/runtime_core/scripts/ |
| D | run-check-concurrency-format.sh | 19 …'<mutex>' 'pthread' '<shared_mutex>' '<condition_variable>' '<future>' '<stop_token>' 'this_thread'
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/ |
| D | pgo_profiler_test_one.cpp | 17 #include <future> 403 std::future<void> future1 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0() 411 std::future<void> future2 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0() 444 std::future<void> future1 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0() 452 std::future<void> future2 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0()
|
| /arkcompiler/ets_frontend/ets2panda/test/ |
| D | CMakeLists.txt | 27 # this will be fixed in the future
|
| /arkcompiler/ets_frontend/ets2panda/ir/ |
| D | srcDump.h | 26 #include <future>
|
| /arkcompiler/runtime_core/static_core/libpandafile/ |
| D | literal_data_accessor.h | 30 // by adding `INTARRAY` in the future
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/suites/ |
| D | preparation_step.py | 103 future = executor.submit(ets_templates_generator.generate) 105 UiUpdater("Tests are generating").start(future)
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | literal_data_accessor.h | 30 // by adding `INTARRAY` in the future
|