| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/ |
| D | array_with_type_parameter.ets | 86 /* @@? 18:5 Error TypeError: Cannot use array creation expression with type parameter. */ 87 /* @@? 22:5 Error TypeError: Cannot use array creation expression with type parameter. */ 88 /* @@? 23:5 Error TypeError: Cannot use array creation expression with type parameter. */ 89 /* @@? 31:5 Error TypeError: Cannot use array creation expression with type parameter. */ 90 /* @@? 35:5 Error TypeError: Cannot use array creation expression with type parameter. */ 91 /* @@? 41:5 Error TypeError: Cannot use array creation expression with type parameter. */ 92 /* @@? 42:5 Error TypeError: Cannot use array creation expression with type parameter. */ 93 /* @@? 64:9 Error TypeError: Cannot use array creation expression with type parameter. */ 94 /* @@? 70:5 Error TypeError: Cannot use array creation expression with type parameter. */ 95 /* @@? 76:9 Error TypeError: Cannot use array creation expression with non-constructable element ty… [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/02.generic_instantiations/01.type_arguments/type_arguments_of_parameterized_declarations/ |
| D | interface_args_neg.params.yaml | 112 …let v: J<J<X>[]> = new A<J<X>[]>(new J<X>[0]) // cannot use array creation expression with interfa… 115 …let v: J<J<X[]>[]> = new A<J<X[]>[]>(new J<X[]>[0]) // cannot use array creation expression with i… 118 …let v: J<J<I>[]> = new A<J<I>[]>(new J<I>[0]) // cannot use array creation expression with interfa… 121 …let v: J<J<I[]>[]> = new A<J<I[]>[]>(new J<I[]>[0]) // cannot use array creation expression with i… 124 …null>[]> = new A<J<I[]|null>[]>(new J<I[]|null>[0]) // cannot use array creation expression with i… 127 …let v: J<J<Color[]>[]> = new A<J<Color[]>[]>(new J<Color[]>[0]) // cannot use array creation expre… 130 let v: J<B> = new A<B>(new J<X>[0]) // cannot use array creation expression with interfaces. 135 let v: J<B> = new A<B>(new J<X[]>[0]) // cannot use array creation expression with interfaces. 140 …let v: J<J<B>[]> = new A<J<B>[]>(new J<B>[0]) // cannot use array creation expression with interfa…
|
| D | method_args1_neg.params.yaml | 98 let v: I[] = new I[0] // cannot use array creation expression with interfaces 103 let v: I[]|null = new I[0] // cannot use array creation expression with interfaces
|
| /arkcompiler/ets_frontend/ets2panda/test/unit/ |
| D | union_normalization_test_2.cpp | 71 // Create union type, which will be normalized inside creation function in TEST_F() 82 // Create union type, which will be normalized inside creation function in TEST_F() 93 // Create union type, which will be normalized inside creation function in TEST_F() 107 // Create union type, which will be normalized inside creation function in TEST_F() 186 // Create union type, which will be normalized inside creation function in TEST_F() 198 // Create union type, which will be normalized inside creation function in TEST_F() 211 // Create union type, which will be normalized inside creation function in TEST_F() 226 // Create union type, which will be normalized inside creation function in TEST_F() 246 // Create union type, which will be normalized inside creation function in TEST_F() 265 // Create union type, which will be normalized inside creation function in TEST_F() [all …]
|
| D | union_normalization_test_1.cpp | 54 // Create union type, which will be normalized inside creation function in TEST_F() 81 // Create union type, which will be normalized inside creation function in TEST_F() 114 // Create union type, which will be normalized inside creation function in TEST_F() 138 // Create union type, which will be normalized inside creation function in TEST_F() 169 // Create union type, which will be normalized inside creation function in TEST_F()
|
| /arkcompiler/runtime_core/static_core/runtime/scheduler/ |
| D | worker_thread.cpp | 23 /* static - creation of the initial Worker thread */ 33 /* Common actions for creation of the thread. */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/14.new_expressions/ |
| D | class_instance_creation_expressions.params.yaml | 14 --- # List of valid class instance creation samples
|
| D | class_instance_creation_expressions.ets | 19 desc: Class instance creation expression
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/03.array_creation_expressions/ |
| D | array_create_from_type_parameter_neg_0.ets | 17 desc: Cannot use array creation expression with type parameter
|
| D | array_creation_expressions.ets | 19 desc: Array creation expression
|
| D | array_create_from_type_parameter_neg_3.ets | 17 desc: Cannot use array creation expression with type parameter
|
| D | array_create_from_type_parameter_neg_2.ets | 17 desc: Cannot use array creation expression with type parameter
|
| D | array_create_from_type_parameter_neg_1.ets | 17 desc: Cannot use array creation expression with type parameter
|
| D | expr.ets | 19 An array creation expression creates an object that is a new array with the elements of
|
| D | array_creation_expressions.params.yaml | 14 --- # List of valid array creation expressions
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | instantied_interface_with_array_creation_expression.ets | 22 /* @@@ label Error TypeError: Cannot use array creation expression with abstract classes and interf…
|
| D | instantied_abstract_class_with_array_creation_expression.ets | 22 /* @@@ label Error TypeError: Cannot use array creation expression with abstract classes and interf…
|
| D | array_union_type_not_contains_nullish_type.ets | 24 /* @@@ label Error TypeError: Cannot use array creation expression with non-constructable element t…
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
| D | gc_settings.h | 124 * @brief Limit the creation rate of tasks during marking in nanoseconds. 125 …* if average task creation is less than this value - it increases the stack size limit to create t… 192 * Limit the creation rate of tasks during marking in nanoseconds. 193 …* If average task creation is less than this value - it increases the stack size limit twice to cr…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/16.array_types/01.resizable_array_types/ |
| D | rat11.ets | 17 desc: Test the creation of a two-dimensional array(string[][]).
|
| D | rat09.ets | 17 desc: Test the creation of a two-dimensional array(number[][]).
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/09.constructor_declaration/ |
| D | constructor_declaration_with_type_arguments.ets | 18 assert: A constructor is used in the creation of an object that is an instance of a class. A constr…
|
| D | constructor_declaration.ets | 20 assert: A constructor is used in the creation of an object that is an instance of a class. A constr…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/core/ |
| D | IntlDateTimeFormat.cpp | 223 return ThrowInternalError(env, "Locale hour cycle resolver instance creation failed"); in GetLocaleHourCycle() 263 return ThrowInternalError(env, "DateTimePatternGenerator instance creation failed"); in CreateSkeletonBasedDateFormat() 270 return ThrowInternalError(env, "DateFormat pattern creation failed"); in CreateSkeletonBasedDateFormat() 275 return ThrowInternalError(env, "DateFormat instance creation failed"); in CreateSkeletonBasedDateFormat() 413 return ThrowInternalError(env, "locale aligned date+time format creation failed"); in CreateDateTimeFormatPattern() 421 return ThrowInternalError(env, "locale aligned date+time format pattern creation failed"); in CreateDateTimeFormatPattern() 456 return ThrowInternalError(env, "DateTimePatternGenerator instance creation failed"); in CreateStyleBasedDateFormatAlignedWithLocale() 469 … return ThrowInternalError(env, "locale aligned style based time formatter creation failed"); in CreateStyleBasedDateFormatAlignedWithLocale() 494 … return ThrowInternalError(env, "locale aligned style based date+time formatter creation failed"); in CreateStyleBasedDateFormatAlignedWithLocale() 588 // DateFormat creation failed in CreateICUDateFormat() [all …]
|
| /arkcompiler/runtime_core/static_core/runtime/coroutines/ |
| D | coroutine_manager.h | 121 * @brief Should be called after CoroutineManager creation and before any other method calls. 138 * @brief The public coroutine creation interface. 149 …* @brief The public coroutine creation and execution interface. Switching to the newly created cor… 161 * @brief The public coroutine creation and execution interface with native entrypoint. 297 … * context creation function, which should be defined in concrete CoroutineManager implementations.
|