| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/ |
| D | ReflectGetBadCases.sts | 59 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 65 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 71 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 77 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 83 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 89 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 95 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 101 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 107 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1 115 … result += e.toString().contains("`target` argument of Reflect.get must be indexed", 0) ? 0 : 1 [all …]
|
| /arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/ |
| D | HashSetTest.java | 29 // Test if the set contains a certain element in main() 30 if (set.contains("Banana")) { in main() 31 System.out.println("The set contains the element 'Banana'."); in main() 36 if (!set.contains("Banana")) { in main()
|
| D | StringTest.java | 30 // Test if the string contains a substring in main() 31 if (text.contains("World")) { in main() 32 System.out.println("The string contains \"World\"."); in main()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/ |
| D | readme.md | 20 - The template itself. It contains a mix of Jinja2 statements and ArkTS code. The content will be r… 29 The specific level template contains the loop over all objects in the configuration file. Then the … 47 …template (see example below) and `test_verifier_lib.j2` - the file that contains function for veri… 85 This example contains two YAML objects fragments, each of them will be used for creating a separate… 110 - object_type - type of object that contains the tested method 112 - init_object_data_type - type of container that contains test data, usually this is an array 116 - param_list - dictionary that contains test data for each parameter 117 - param_types - dictionary that contains type for each parameter 118 - param_init_data_types - dictionary that contains data type that used for parameters initialization 121 …- name of a function that used for test result verification. Usually it contains two parameters, a…
|
| /arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
| D | baseline_assembler.h | 55 …return ((3 + numVregs) * FRAME_SLOT_SIZE); // +3: contains numVregs, undefined, callTarget, newTa… in GetSpecialRegisterOffset() 57 … return -(5 * FRAME_SLOT_SIZE); // -5: contains frametype, rbp, pc, sp, callsize(jumpSizeAfterCall) in GetSpecialRegisterOffset() 59 … return -(6 * FRAME_SLOT_SIZE); // -6: contains frametype, rbp, pc, sp, callsize, env, in GetSpecialRegisterOffset() 61 … return -(7 * FRAME_SLOT_SIZE); // -7: contains frametype, rbp, pc, sp, callsize, env, acc, in GetSpecialRegisterOffset() 63 … return -(8 * FRAME_SLOT_SIZE); // -8: contains frametype, rbp, pc, sp, callsize, env, acc, thisObj in GetSpecialRegisterOffset() 65 // -9: contains frametype, rbp, pc, sp, callsize, env, acc, thisObj, call-target in GetSpecialRegisterOffset()
|
| /arkcompiler/runtime_core/static_core/verification/util/ |
| D | addr_map.h | 164 return addrRange_.Contains(addr); in IsInAddressSpace() 169 if (!addrRange_.Contains(addrFrom) || !addrRange_.Contains(addrTo)) { in Mark() 179 if (!addrRange_.Contains(addrFrom) || !addrRange_.Contains(addrTo)) { in Clear() 189 if (!addrRange_.Contains(addrFrom) || !addrRange_.Contains(addrTo)) { in HasMarks()
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | stack_like_allocator_test.cpp | 182 ASSERT_FALSE(alloc.Contains(invalidAddr)); // NOLINT(clang-analyzer-unix.Malloc) in TEST_F() 185 ASSERT_TRUE(alloc.Contains(addr1Inside)); in TEST_F() 186 ASSERT_FALSE(alloc.Contains(invalidAddr)); // NOLINT(clang-analyzer-unix.Malloc) in TEST_F() 189 ASSERT_FALSE(alloc.Contains(addr1Inside)); in TEST_F() 190 ASSERT_FALSE(alloc.Contains(invalidAddr)); in TEST_F() 195 ASSERT_TRUE(alloc.Contains(addr1Inside)); in TEST_F() 196 ASSERT_TRUE(alloc.Contains(addr2Inside)); in TEST_F() 197 ASSERT_FALSE(alloc.Contains(invalidAddr)); in TEST_F()
|
| D | frame_allocator_test.cpp | 191 ASSERT_FALSE(alloc.Contains(invalidAddr)); in CheckAddrInsideAllocator() 196 ASSERT_TRUE(alloc.Contains(addr1Inside)); in CheckAddrInsideAllocator() 197 ASSERT_FALSE(alloc.Contains(invalidAddr)); in CheckAddrInsideAllocator() 200 ASSERT_FALSE(alloc.Contains(addr1Inside)); in CheckAddrInsideAllocator() 201 ASSERT_FALSE(alloc.Contains(invalidAddr)); in CheckAddrInsideAllocator() 208 ASSERT_TRUE(alloc.Contains(addr1Inside)); in CheckAddrInsideAllocator() 209 ASSERT_TRUE(alloc.Contains(addr2Inside)); in CheckAddrInsideAllocator() 210 ASSERT_FALSE(alloc.Contains(invalidAddr)); in CheckAddrInsideAllocator()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | condition_chain_cache.cpp | 28 static bool Contains(const ConditionChain *chain0, const ConditionChain *chain1) in Contains() function 53 return Contains(chain0, chain1) && Contains(chain1, chain0); in Equal()
|
| /arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/ts/ |
| D | StringTest.ts | 23 // Test if the string contains a substring 25 console.log('The string contains "World".');
|
| D | HashSetTest.ts | 21 // Test if the set contains a certain element 23 console.log('The set contains the element \'Banana\'.');
|
| /arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/js/ |
| D | StringTest.js | 23 // Test if the string contains a substring 25 console.log('The string contains "World".');
|
| D | HashSetTest.js | 21 // Test if the set contains a certain element 23 console.log('The set contains the element \'Banana\'.');
|
| /arkcompiler/ets_frontend/test262/ |
| D | README.md | 3 es5_tests.txt: This file contains a list of ES5 test cases. If useful cases are found missing, you… 4 es2015_tests.txt: This file contains a full list of use cases of ES2015 except those filtered out … 5 es2021_tests.txt: This file contains a full list of use cases of ES2021 except those filtered out … 6 intl_tests.txt: This file contains a list of internationalization test cases. If you find useful c… 7 skip_tests.json: This file contains a list of use cases that do not meet the requirements. If usefu… 8 intl_skip_tests.json: This file contains a list of non-compliant internationalization use cases. If… 39 Run test262 - ES2015. all: Contains all use cases for 80 #### 2.4.2 Contains all use cases for ES5 and ES2015
|
| D | es2022_tests.txt | 217 language/expressions/class/elements/literal-name-init-err-contains-arguments.js 229 language/expressions/class/elements/equality-init-err-contains-super.js 230 language/expressions/class/elements/static-literal-init-err-contains-arguments.js 233 language/expressions/class/elements/static-comp-name-init-err-contains-super.js 238 language/expressions/class/elements/comp-name-init-err-contains-super.js 239 language/expressions/class/elements/arrow-fnc-init-err-contains-super.js 247 language/expressions/class/elements/ternary-init-err-contains-super.js 255 language/expressions/class/elements/nested-comp-name-init-err-contains-arguments.js 256 language/expressions/class/elements/nested-static-comp-name-init-err-contains-super.js 266 language/expressions/class/elements/nested-literal-name-init-err-contains-super.js [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/01.static_methods/ |
| D | static_method_declaration_with_keywords.sts | 20 …: It is compile-time error if a method declaration that contains the keyword static also contains …
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/07.native_methods/ |
| D | native_method_declaration_with_keywords.sts | 20 …: It is compile-time error if a method declaration that contains the keyword native also contains …
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/03.abstract_methods/ |
| D | abstract_method_declaration_with_keywords.sts | 20 … It is compile-time error if a method declaration that contains the keyword abstract also contains…
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | bytecode_profiling.md | 5 Each bytecode instruction, that supports profiling, contains additional field - profile index. It d… 13 For each method, that contains instructions with profiling data, Runtime should allocate profiling …
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/06.overriding_methods/ |
| D | override_method_declaration_with_keywords.sts | 20 … It is compile-time error if a method declaration that contains the keyword override also contains…
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | checker.rb | 69 def contains?(str, match) 94 @current_index = @lines.index { |line| contains?(line, match) } 102 index = @lines.drop(@current_index).index { |line| contains?(line, match) } 111 raise_error "#{@name} should not occur: #{match_str(match)}" if contains?(line, match) 119 raise_error "#{@name} should not occur: #{match_str(match)}" if contains?(line, match) 275 @events_scope.lines.count { |event| contains?(event, match) } 293 res = @events_scope.lines.count { |event| contains?(event, match) } 314 @ir_scope.lines.count { |inst| contains?(inst, match) } 366 …if line.start_with?('METHOD_INFO:') && contains?(@disasm_lines[index + 1].split(':', 2)[1].strip, … 396 if contains?(line, match)
|
| /arkcompiler/runtime_core/docs/ |
| D | runtime-compiled_code-interaction.md | 54 must contains a valid pointer to `panda::ManagedThread` on entry to each compiled function. 83 A stack frame contains data necessary to execute the function the frame belongs to. 88 …rames are organized into a linked list. The field `panda::Frame::prev_` contains a pointer to the … 140 `stack pointer` register contains a pointer to the last stack element. 141 `frame pointer` register contains a pointer to the place in the stack where the return address is s… 143 Panda contains special class for getting cframe layout: `class CFrameLayout`. Everything related to… 156 // r0 contains a pointer to the current `panda::Method` 161 // r0 contains a pointer to `panada::Method` which describes `int max(int, int)` function. 168 // r0 contains the function result 172 The Compiler have an entrypoints table. Each entrypoint contains a link to the Bridge Function. [all …]
|
| /arkcompiler/runtime_core/libpandabase/mem/ |
| D | gc_barrier.h | 170 BOOL_ADDRESS, // contains address of bool value (bool*) 171 UINT8_ADDRESS, // contains address of uint8_t value 172 … FUNC_WITH_OBJ_REF_ADDRESS, // contains address of function with this sig: void foo(void* ); 173 UINT8_LITERAL, // contains uint8_t value 174 …FUNC_WITH_TWO_OBJ_REF_ADDRESSES, // contains address of function with this sig: void foo(void* , …
|
| /arkcompiler/runtime_core/static_core/libpandabase/mem/ |
| D | gc_barrier.h | 166 …PRE_WRITE_BARRIER_ADDRESS, // contains nullptr or address of function (during concurrent ma… 168 UINT8_ADDRESS, // contains address of uint8_t value 169 … FUNC_WITH_OBJ_REF_ADDRESS, // contains address of function with this sig: void foo(void* ); 170 UINT8_LITERAL, // contains uint8_t value 171 …FUNC_WITH_TWO_OBJ_REF_ADDRESSES, // contains address of function with this sig: void foo(void* , …
|
| /arkcompiler/runtime_core/static_core/runtime/bridge/arch/arm/ |
| D | handle_call_v4_v4_v4_imm4_id16_arm.S | 27 orr r3, r9, r3 // r3 now contains v4_v4_v4_imm4 29 and r9, r9, #0xF // r9 now contains acc position
|