| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/strings/ |
| D | string_compare_to.sts | 37 [ "AAAX", "AAAA", 1 ], // different 4c str -> GT 38 [ "AAAA", "AAAX", -1], // different 4c str -> LT 44 [ "AAAAX", "AAAAAAA", 1 ], // different str -> GT 45 [ "AAAAAAA", "AAAAX", -1 ], // different str -> LT 48 [ "AAAAAAAX", "AAAAAAAA", 1 ], // different 8c str -> GT 49 [ "AAAAAAAA", "AAAAAAAX", -1], // different 8c str -> LT 50 [ "AAAAAAAA", "AAAAAAAAAAAA", -1 ], // same prefix different length -> LT 51 [ "AAAAAAAAAAA", "AAAAAAAAA", 1 ], // same prefix different length -> GT 53 [ "XXXAAAAAXXX", "AAAAAAAAXXX", 1 ], // different str same length -> GT 54 [ "AAAAAAAAXXX", "XXXAAAAAXXX", -1], // different str same length -> LT [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/03.overloading_for_functions/ |
| D | function_argument_equivalent_neg_n2.params.yaml | 27 # different list of type arguments 32 # different return values 37 # different return values 2 42 # different return values 3 47 # different return values 3
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/02.override-compatible_signatures/ |
| D | neg.params.yaml | 23 // different return type 64 // different return type 71 // different access modifier 80 // different return type variable 96 // different access modifiers 105 // different formal parameter names
|
| D | override_compatible_signature.params.yaml | 27 # different return type 41 # different arguments number 0:1 54 # different arguments number 2:1 127 # same type parameters number, different parameters 140 # different type parameters number 153 # different type parameters number
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/11.tuple_types_conversion/call_func/ |
| D | call-func_n.params.yaml | 16 # different types 22 # different number of elements 29 # different number of elements
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/11.tuple_types_conversion/call_cons/ |
| D | call-cons_n.params.yaml | 16 # different types 22 # different number of elements 29 # different number of elements
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/11.tuple_types_conversion/call_meth/ |
| D | call-meth_n.params.yaml | 16 # different types 22 # different number of elements 29 # different number of elements
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
| D | generational-gc-base.h | 95 // Atomic with relaxed order reason: memory accesses from different threads in RecordCountFreedYoung() 109 // Atomic with relaxed order reason: memory accesses from different threads in RecordSizeFreedYoung() 123 // Atomic with relaxed order reason: memory accesses from different threads in RecordCountMovedYoung() 137 // Atomic with relaxed order reason: memory accesses from different threads in RecordSizeMovedYoung() 161 // Atomic with relaxed order reason: memory accesses from different threads in RecordCountMovedTenured() 175 // Atomic with relaxed order reason: memory accesses from different threads in RecordSizeMovedTenured() 189 // Atomic with relaxed order reason: memory accesses from different threads in RecordCountFreedTenured() 203 // Atomic with relaxed order reason: memory accesses from different threads in RecordSizeFreedTenured()
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | task_manager.md | 3 …different tasks for two components `GC` and `JIT`. Both of this components can use more than one t… 41 … is WorkerThread, i.e. we shouldn't have one `TaskQueue` for tasks from different task producers (… 54 1. Distribute threads from pool between consumers in accordance with different policies
|
| D | rationale-for-bytecode.md | 21 In real world, different CPU manufacturers provide different sets of commands for their devices – 22 or, in other words, different CPUs have different _instruction set architectures_. This means 24 vary across CPUs and/or different operating systems. 40 Just as real CPUs can expose different instruction set architectures, there is no universal way of 179 overloads are calls (different number of operands) and calls are the most popular instructions in 219 no, they must not, virtual registers may hold value of different types (just as hardware registers,
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/09.constructor_declaration/02.constructor_overload_signatures/ |
| D | different_access_modifiers.sts | 20 …A compile-time error occurs if at least two different overload signatures or implementation signat… 21 different access modifiers.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/24.relational_expressions/05.enumeration_relational_operators/ |
| D | enum2_neg.params.yaml | 30 // different enum types 37 // different enum types 45 // string values, different enum types
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/08.function_declarations/09.function_overload_signatures/ |
| D | overload.sts | 20 different ways by writing overload signatures, i.e., by writing several 21 function headers that have the same name but different signatures
|
| D | overload_neg.sts | 20 different ways by writing overload signatures, i.e., by writing several 21 function headers that have the same name but different signatures
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/coroutines/ |
| D | await_standalone_promise.sts | 18 assert value == 42 : "Awaited value of resolved promise is different\ 23 … assert err.toString().contains("Panda", 0) : "Awaited value of rejected promise is different\
|
| D | launch_n_workers.sts | 114 // Test 2. Run a coroutine and make sure that its worker ID is different from MAIN 120 …// Test 3. Run a batch of coroutines without await so they would be distributed to different worke… 126 … Run a chain of several coroutines that await each other. Coroutines will run on different workers. 132 // Test 5. Run coroutines on different workers and await them.
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | multi_typeerror_function_implicit_return_value.sts | 30 /* @@@ label Error TypeError: Function cannot have different primitive return types, require 'boole… 31 /* @@@ label1 Error TypeError: Function cannot have different primitive return types, require 'bool…
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
| D | datainfo.h | 90 DEBUG_ASSERT(infoSize == secondInfo.GetInfo().size(), "two dataInfo's size different"); in IsEqual() 102 DEBUG_ASSERT(infoSize == LiveInfoBak.size(), "two dataInfo's size different"); in IsEqual() 114 DEBUG_ASSERT(infoSize == secondInfo.GetInfo().size(), "two dataInfo's size different"); in AndBits() 123 DEBUG_ASSERT(infoSize == secondInfo.GetInfo().size(), "two dataInfo's size different"); in OrBits() 139 DEBUG_ASSERT(infoSize == secondInfo.GetInfo().size(), "two dataInfo's size different"); in EorBits() 149 DEBUG_ASSERT(infoSize == secondInfo.GetInfo().size(), "two dataInfo's size different"); in Difference()
|
| /arkcompiler/runtime_core/docs/ |
| D | rationale-for-bytecode.md | 21 In real world, different CPU manufacturers provide different sets of commands for their devices – 22 or, in other words, different CPUs have different _instruction set architectures_. This means 24 vary across CPUs and/or different operating systems. 40 Just as real CPUs can expose different instruction set architectures, there is no universal way of 179 overloads are calls (different number of operands) and calls are the most popular instructions in 219 no, they must not, virtual registers may hold value of different types (just as hardware registers,
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/19.packages/03.import_and_overloading_of_function_names/ |
| D | pkgs_0.sts | 18 desc: Different imported functions have the same name but different signatures.
|
| D | pkgs_ab3.sts | 18 desc: Different imported functions have the same name but different signatures.
|
| D | pkgs_a.sts | 18 desc: Different imported functions have the same name but different signatures.
|
| D | pkgs_a3.sts | 18 desc: Different imported functions have the same name but different signatures.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/07.function_and_method_overloading/02.class_method_overloading/ |
| D | cm_over2.params.yaml | 17 // override-equivalent signatures, different return types 27 // override-equivalent signatures, different return types 36 // override-equivalent signatures, different return types 76 // primitives and boxed, different return types and throws clauses 121 // arrays of primitives and boxed, different return types and throws clauses 166 // enums, different return types and throws clauses 188 // tuples, different return types and throws clauses 214 // unions, different return types and throws clauses 244 // function types, different return types and throws clauses 276 // nullish types with different return types and throws clauses
|
| /arkcompiler/runtime_core/static_core/verification/ |
| D | TODO.txt | 4 …(? is writing to the field at the same time from different thread same value needs to be synced, m… 23 7. done Origins: at method entry, give different @start origins to parameters!
|