Home
last modified time | relevance | path

Searched full:future (Results 1 – 25 of 117) sorted by relevance

12345

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/stream/
DStreamTransformTest.ets48 // 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 …]
DStreamDuplexTest.ets46 // 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 …]
DStreamReadableTest.ets42 // 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 …]
DStreamWritableTest.ets38 // 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/
Dtaskpool.py37 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/
Dutils.py28 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/
Dets_object.cpp80 // 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/
DtokenType.h177 /* strict mode future reserved keywords */
185 /* context dependent future */
/arkcompiler/runtime_core/static_core/plugins/ets/doc/annotations/
Danno2.txt23 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/
Dguide.rst62 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/
DPromiseRef.ets19 * 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/
Dreserved.ets18 desc: The following identifiers are also treated as soft keywords reserved for the future use (or u…
/arkcompiler/ets_frontend/ets2panda/linter/
Dtslinter.sh18 # get absolute path to linter folder for possible use in future
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_object_state_info.cpp48 …// 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/
Denum_indexing.ets25 // check required in future
/arkcompiler/runtime_core/static_core/runtime/mem/gc/reference-processor/
Dreference_processor.h60 …* 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/
Djson.yaml14 # excluded due to future milestone
/arkcompiler/ets_frontend/ets2panda/bindings/
DREADME.md7 change path from you future build dir in files:
/arkcompiler/runtime_core/scripts/
Drun-check-concurrency-format.sh19 …'<mutex>' 'pthread' '<shared_mutex>' '<condition_variable>' '<future>' '<stop_token>' 'this_thread'
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/
Dpgo_profiler_test_one.cpp17 #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/
DCMakeLists.txt27 # this will be fixed in the future
/arkcompiler/ets_frontend/ets2panda/ir/
DsrcDump.h26 #include <future>
/arkcompiler/runtime_core/static_core/libpandafile/
Dliteral_data_accessor.h30 // by adding `INTARRAY` in the future
/arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/suites/
Dpreparation_step.py103 future = executor.submit(ets_templates_generator.generate)
105 UiUpdater("Tests are generating").start(future)
/arkcompiler/runtime_core/libpandafile/
Dliteral_data_accessor.h30 // by adding `INTARRAY` in the future

12345