Home
last modified time | relevance | path

Searched full:added (Results 1 – 25 of 334) sorted by relevance

12345678910>>...14

/arkcompiler/runtime_core/docs/changelogs/
D2023-12-31-isa-changelog.md12 …5593c94d5/zh-cn/application-dev/arkts-utils/arkts-sendable.md), 12 bytecode instructions are added.
14 …ch will use define semantic instead of set semantic, the following bytecode instructions are added:
19 …port private properties in class and access to them, the following bytecode instructions are added:
25 3. To support `#x in obj` syntax, the following bytecode instruction is added:
28 …d get a value which can be used as class property key, the following bytecode instruction is added:
31 …improve the performance of class field initialization, the following bytecode instruction is added:
34 6. To support sendable class, the following bytecode instructions are added:
D2024-05-24-isa-changelog.md12 …false" bytecode instructions, the following two bytecode instructions are added as an improved ver…
16 … to a runtime error. To avoid this, the following bytecode instruction is added to replace the abo…
D2024-07-05-file_format-changelog.md11 To support sendable function, a new Function Kind SENDABLE_FUNCTION is added for marking functions …
D2024-03-20-isa-changelog.md12 … lazy loading of module variables in sendable class, the following bytecode instructions are added:
/arkcompiler/runtime_core/static_core/tests/checked/verify_aot_tests/
Dverify_aot_test.pa27 #! EVENT /AotManager,.*test.*,ADDED/
33 #! EVENT /AotManager,.*test.*,ADDED/
39 #! EVENT /AotManager,.*test.*,ADDED/
45 #! EVENT /AotManager,.*test.*,ADDED/
51 #! EVENT /AotManager,.*test.*,ADDED/
57 #! EVENT /AotManager,.*test.*,ADDED/
63 #! EVENT /AotManager,.*test.*,ADDED/
82 #! EVENT /AotManager,.*test.*,ADDED/
89 #! EVENT /AotManager,.*test.*,ADDED/
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/PlainArray/
DPlainArrayCloneAddTests.ets83 …Q(clonePlainArray.getKeyAt(TestData.testNumber5), TestData.testNumber6, "The key should be added");
84 …onePlainArray.getValueAt(TestData.testNumber5), TestData.testNumber1, "The value should be added");
104 assertEQ(plainArray.toString(), TestData.testString2, "The elements should be added");
121 assertEQ(plainArray.toString(), TestData.testString3, "The elements should be added");
130 assertTrue(plainArray.has(-TestData.testNumber1), "The key should be added");
131 assertTrue(plainArray.has(0), "The key should be added");
132 assertTrue(plainArray.has(TestData.testNumberMax), "The key should be added");
133 assertTrue(plainArray.has(TestData.testNumberMin), "The key should be added");
/arkcompiler/runtime_core/tests/checked/verify_aot_tests/
Dverify_aot_test.pa27 #! EVENT /AotManager,.*test.*,ADDED/
33 #! EVENT /AotManager,.*test.*,ADDED/
39 #! EVENT /AotManager,.*test.*,ADDED/
45 #! EVENT /AotManager,.*test.*,ADDED/
51 #! EVENT /AotManager,.*test.*,ADDED/
57 #! EVENT /AotManager,.*test.*,ADDED/
63 #! EVENT /AotManager,.*test.*,ADDED/
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/ArrayList/
DArrayListInsertHasGetIndexOfTests.ets153 assertTrue(arrayList.has(TestData.testString1), "Elements should be added");
154 assertTrue(arrayList.has(TestData.testNumber1), "Elements should be added");
155 assertTrue(arrayList.has(TestData.testObject1), "Elements should be added");
156 assertTrue(arrayList.has(undefined), "Elements should be added");
157 assertTrue(arrayList.has(null), "Elements should be added");
158 assertTrue(arrayList.has(true), "Elements should be added");
159 assertTrue(arrayList.has(TestData.testObject2), "Elements should be added");
160 assertTrue(arrayList.has(TestData.testString2), "Elements should be added");
161 assertTrue(arrayList.has(TestData.testString3), "Elements should be added");
162 assertTrue(arrayList.has(TestData.testString4), "Elements should be added");
[all …]
/arkcompiler/runtime_core/static_core/isa/
DChangeLog.md11 + Added more variants of arithmetic opcodes
15 + Added x_oom exception for lda.str
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/HashSet/
DHashSetAddRemoveTest.ets43 assertEQ(result, true, "The hashSet should contain the added value");
51 assertEQ(result, true, "The hashSet should contain the added null value");
59 assertEQ(result, true, "The hashSet should contain the added value");
68 assertEQ(result, true, "The hashSet should contain the added value");
79 assertEQ(result, true, "The hashSet should contain the added value");
/arkcompiler/runtime_core/static_core/runtime/mem/gc/workers/
Dgc_workers_task_pool.h37 * @return true if task successfully added to pool, false - otherwise
46 * @return true if task successfully added to pool, false - otherwise
74 * @return true if task successfully added to pool, false - otherwise
/arkcompiler/runtime_core/libpandabase/
DREADME.md53 Sub-arguments should not be added to the parser via `PandArgParser::Add`.
96 …- add an argument to parser. Returns `true` if argument was succsessfully added. `PandArgBase` is …
102 - `bool IsArgSet(PandArgBase* arg)` - returns `true` if an argument was added to a parser
103 …const std::string& arg_name)` - returns `true` if an argument with given name was added to a parser
114 … end of sequence, ```PopBackTail()``` removes the last added argument. Tail arguments may be added
/arkcompiler/runtime_core/static_core/libpandabase/
DREADME.md53 Sub-arguments should not be added to the parser via `PandArgParser::Add`.
96 …- add an argument to parser. Returns `true` if argument was succsessfully added. `PandArgBase` is …
102 - `bool IsArgSet(PandArgBase* arg)` - returns `true` if an argument was added to a parser
103 …const std::string& arg_name)` - returns `true` if an argument with given name was added to a parser
114 … end of sequence, ```PopBackTail()``` removes the last added argument. Tail arguments may be added
/arkcompiler/runtime_core/static_core/plugins/ets/doc/concurrency/
Dos_based_lock_deadlock_seq.plantuml31 "coroutine C" -> "Thread #1": added to execution list for this Thread
39 "coroutine D" --> "Thread #2": added to execution list for this Thread
/arkcompiler/ets_runtime/ecmascript/mem/
Dfree_object_set.h80 uint64_t isAdded_ = 0; // 0: not added, 1: is added
/arkcompiler/runtime_core/static_core/tests/checked/
Dboot_an_location.pa23 #! EVENT /AotManager,.*,ADDED/
30 #! EVENT_NOT /AotManager,.*,ADDED/
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/LightWeightSet/
DLightWeightSetConstructorIsEmptyAddTest.ets83 assertEQ(result, true, "The lightWeightSet should contain the added value");
91 assertEQ(result, true, "The lightWeightSet should contain the added value");
100 assertEQ(result, true, "The lightWeightSet should contain the added value");
/arkcompiler/ets_runtime/test/aottest/forof_set_test/
Dforof_set_test.ts67 // test 'd' is added
69 print('d is added');
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
Dgc_adaptive_marking_stack.h49 * @param object object which will be added to the stack
56 * @param object object which will be added to the stack
/arkcompiler/toolchain/adapter/
DBUILD.gn34 # which are related to the previewer, can be added to this script.
62 # which are related to the previewer, can be added to this script.
/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/libpandabase/taskmanager/
Dschedulable_task_queue_interface.h32 * 1. property of tasks you added
33 * 2. count of tasks you added
/arkcompiler/runtime_core/static_core/cmake/
DTesting.cmake60 # paths is specified in INCLUDE_DIRS, these paths will be added as include
72 # * Target-specific definition PANDA_GTEST is added.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/01.evaluation_of_expressions/03.operator_precedence/
Drel.ets26 // prefix and postfix added
30 // bitwise xor, unary + and - added
/arkcompiler/runtime_core/cmake/
DTesting.cmake60 # paths is specified in INCLUDE_DIRS, these paths will be added as include
72 # * Target-specific definition PANDA_GTEST is added.

12345678910>>...14