Home
last modified time | relevance | path

Searched full:put (Results 1 – 25 of 233) sorted by relevance

12345678910

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/
DLRUCacheIteratorTest.ets46 that.put('string','abc');
53 that.put(1,2)
54 that.put(3,10)
55 that.put(5,15)
56 that.put('abc',20);
66 that.put(1,2);
67 that.put(3,10);
68 that.put(5,15);
69 that.put('abc',20);
81 that.put(1,2)
[all …]
DLRUCacheTest.ets32 suite.addTest("LRUCache Put Once", testLRUCachePutOnce);
33 suite.addTest("LRUCache Put Twice", testLRUCachePutTwice);
34 suite.addTest("LRUCache Put&Get", testLRUCachePutAndGet);
35 suite.addTest("LRUCache Put CapacityChenged", testLRUCachePutCapacityChenged);
45 suite.addTest("LRUCache ToString Put", testLRUCacheToStringPut);
73 that.put(1,2);
80 that.put(1,2)
81 that.put(2,10)
82 that.put('abcd',15)
93 that.put('1111','bcjdshc')
[all …]
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DStringFasta.ets21 IUB.put(c'a', 0.2);
22 IUB.put(c'c', 0.2);
23 IUB.put(c'g', 0.2);
24 IUB.put(c't', 0.2);
25 IUB.put(c'B', 0.2);
26 IUB.put(c'D', 0.2);
27 IUB.put(c'H', 0.2);
28 IUB.put(c'K', 0.2);
29 IUB.put(c'M', 0.2);
30 IUB.put(c'N', 0.2);
[all …]
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
DStringFasta.ets21 IUB.put(c'a', 0.2);
22 IUB.put(c'c', 0.2);
23 IUB.put(c'g', 0.2);
24 IUB.put(c't', 0.2);
25 IUB.put(c'B', 0.2);
26 IUB.put(c'D', 0.2);
27 IUB.put(c'H', 0.2);
28 IUB.put(c'K', 0.2);
29 IUB.put(c'M', 0.2);
30 IUB.put(c'N', 0.2);
[all …]
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/FixedArray/
DStringFasta.ets21 IUB.put(c'a', 0.2);
22 IUB.put(c'c', 0.2);
23 IUB.put(c'g', 0.2);
24 IUB.put(c't', 0.2);
25 IUB.put(c'B', 0.2);
26 IUB.put(c'D', 0.2);
27 IUB.put(c'H', 0.2);
28 IUB.put(c'K', 0.2);
29 IUB.put(c'M', 0.2);
30 IUB.put(c'N', 0.2);
[all …]
/arkcompiler/runtime_core/static_core/docs/coroutines/
Djsmicro_job_queue.plantuml3 + put(Promise, Coroutine)
7 + put(Promise, Coroutine)
Djob_queue.plantuml3 + put(Promise, Coroutine)
Dcoroutines.md43 * Put the current coroutine to the front `ready_to_run_list`
52 * Put the coro to the front of `ready_to_run_list`
55 * Put `promise` argument and the current coroutine to the `job_queue`
56 * Put the current coroutine to the end of `wait_list`
71 The promise is put into the JobQueue and the coroutine is put into `wait_list` until the promise ge…
118 Implementation of `put` gets the associated JS instance of Promise (or creates a new one) and conne…
124 virtual void put(Promise promise, Coroutine coro) override {
350 Launching `foo` leads to put the `main` coroutine to the beginning of `ready_to_run_list`.<br>
411 > virtual void MicroJobQueue::put(Promise promise, Coroutine coro) override {
436 `await` method will put `foo` coroutine to `wait_list`. The main coroutine will be resumed in `foo_…
[all …]
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/
DTreeMapTest.java26 treeMap.put("Apple", 1); in main()
27 treeMap.put("Banana", 2); in main()
28 treeMap.put("Cherry", 3); in main()
DHashMapTest.java26 hashMap.put("Apple", 1); in main()
27 hashMap.put("Banana", 2); in main()
28 hashMap.put("Cherry", 3); in main()
/arkcompiler/toolchain/test/autotest/aw/
Dtoolchain_websocket.py55 await queue.put(message)
73 await self.to_send_msg_queue_for_connect_server.put(message)
105 await received_queue.put(response)
129 await receive_queue.put(response)
167 await self.debugger_server_instance.put(instance_id)
/arkcompiler/runtime_core/docs/changelogs/
D2022-08-18-isa-changelog.md33 To adapt runtime design, we put string and literal array into the index header of methods,
37 stringId and literalarrayId in a class should be put in a same index header.
38 Instead, we only ask that all methodId, stringId and literalarrayId in a method should be put in on…
D2024-05-26-file_format-changelog.md11 …ags and scope names. To maintain abc's size, some long scope names will be put into a literal arra…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/04.scopes/
Dclass_level_protected1.ets33 public put(p: int) {
42 d.put(42)
Dclass_level_public.ets38 public put(p: int) {
47 d.put(42)
Dclass_level_protected2.ets43 public put(p: int) {
61 d.put(42)
/arkcompiler/runtime_core/static_core/verification/
DTODO.txt2 - [x] Updating typesystem put under lock (ClassLinker::AddFile)
3 …- [x] (using atomic flag) Verification of method put under lock to exclude double verification at …
/arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/services/
Dcommon.test.ts32 put: jest.Mock<Promise<AxiosResponse<U>>, [string, P]>,
45 put: jest.fn(),
111 it('should return parsed data if PUT request is successful', async () => {
113 mockApiInstance.put.mockResolvedValue(response);
118 it('should return error message if PUT request fails', async () => {
121 mockApiInstance.put.mockRejectedValue(axiosError);
/arkcompiler/runtime_core/static_core/plugins/ets/sdk/native/tools/
Dformat_logger.h30 int put = vsnprintf_s(buffer.data(), bufferSize, bufferSize - 1, fmt, args); in FormatString() local
31 if (put < 0) { in FormatString()
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Disinstance.yaml30 put 1 into accumulator, otherwise put 0.
162 put 1 into accumulator, otherwise put 0.
285 put 1 into accumulator, otherwise put 0.
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Disinstance.yaml52 put 1 into accumulator, otherwise put 0.
329 put 1 into accumulator, otherwise put 0.
454 put 1 into accumulator, otherwise put 0.
622 put 1 into accumulator, otherwise put 0.
727 put 1 into accumulator, otherwise put 0.
Dnewobj.yaml37 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
200 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
241 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
284 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
345 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
413 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
760 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
1134 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
1178 …default values (i.e. 0 for primitives and null for objects) and put a reference to the newly creat…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/19.union_types/
Dunion_type_narrowing_attribute_n.params.yaml18 type HTTPMethod = "GET" | "POST" | "PUT";
/arkcompiler/runtime_core/docs/diagrams/
Dstatic-analyzer-gc-func-list-gen.puactivity28 and put them to list of all functions in project;
/arkcompiler/runtime_core/static_core/docs/diagrams/
Dstatic-analyzer-gc-func-list-gen-activity.plantuml28 and put them to list of all functions in project;

12345678910