| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/15.literal_types/ |
| D | custom_literal_type.params.yaml | 30 let a: "some str" | "another str" | Number | boolean | string = "some str" 32 a = "another str" 33 assertEQ( a, "another str" ) 44 type LITERAL = "some str" | "another str" | Number | boolean | string 49 a = "another str" 50 assertEQ( a, "another str" )
|
| D | function_literal_type.params.yaml | 23 let a: "another str" = "another str" 178 assertEQ( foo<"another str">("another str"), "another str" ) 231 Use rest parameter of literal array and argument of another literal type 237 fooL("another str") 253 type TPL = ["some str", "another str", undefined, null] 256 assertEQ(j[1], "another str") 261 let a: TPL = [ "some str", "another str", undefined, null ] 269 type TPL = ["some str, "another str", undefined, null] 272 foo( [ "some str", new String("another str"), undefined, null ] )
|
| /arkcompiler/runtime_core/static_core/libpandabase/taskmanager/ |
| D | task_queue_set.cpp | 33 // Atomic with relaxed order reason: no order dependency with another variables in TaskQueueSet() 41 // Atomic with relaxed order reason: no order dependency with another variables in ~TaskQueueSet() 61 // Atomic with relaxed order reason: no order dependency with another variables in GetQueue() 72 // Atomic with relaxed order reason: no order dependency with another variables in SelectQueue() 85 // Atomic with relaxed order reason: no order dependency with another variables in SelectQueue() 102 // Atomic with relaxed order reason: no order dependency with another variables in AreQueuesEmpty() 118 // Atomic with relaxed order reason: no order dependency with another variables in GetCountOfLiveTasks()
|
| D | task_queue_set.h | 67 // Atomic with relaxed order reason: no order dependency with another variables in CreateQueue() 72 // Atomic with relaxed order reason: no order dependency with another variables in CreateQueue() 94 // Atomic with relaxed order reason: no order dependency with another variables in DeleteQueue() 96 // Atomic with relaxed order reason: no order dependency with another variables in DeleteQueue()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/18.annotations/01.declaring_annotations/ |
| D | declaration_default_values.params.yaml | 19 a + 'another string' 44 ['some string' + 'another string', 'some string2' + 'another string2']
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | memory_barriers_doc.md | 5 …ray, NewObject, NewMultiArray so that if the created objects are used in another thread, the initi… 6 We can remove the barrier if we prove that the created object cannot be passed to another thread be… 7 This can happen if we save the object to memory or pass it to another method 22 If we visit an instruction that can pass an object to another thread(Store instruction, Call instru… 25 …he barrier in the last instruction before potentially passing the created objects to another thread
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/09.tuple_types_conversions/decl_var/ |
| D | decl-var.ets | 19 Tuple types conversion is the conversion of one tuple type to another. 29 // variable declaration with another variable 37 // constant declaration with another constant 41 // variable declaration with another constant 45 // constant declaration with another variable
|
| D | decl-var_n.ets | 19 Tuple types conversion is the conversion of one tuple type to another. 31 // variable declaration with another variable 37 // constant declaration with another variable
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/06.type_declarations/01.type_alias_declaration/ |
| D | scope.params.yaml | 15 # use an alias defined in another unit 41 # use an alias defined and exported as type from another unit 65 # use an alias defined and exported from another unit 89 # use an alias defined and exported as type under a different name from another unit 113 # use an alias defined and not exported from another unit 139 # use an alias defined and exported from another unit, duplicate
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | type_literals.ets | 119 …let v2: { x: LocalType } = {x: {a: 1, b: '2'}}; // Non-fixable, type captures another type declare… 124 let v3: {[one]: 1}; // Non-fixable, type captures another object declared in local scope 127 …let v4: { y: LocalClass } = {y: new LocalClass()}; // Non-fixable, type captures another type decl… 129 …let v5: { lc: typeof LocalClass }; // Non-fixable, type captures another type declared in local sc… 131 let v6: { lc: typeof v1 }; // Non-fixable, type captures another object declared in local scope
|
| D | type_literals.ets.migrate.ets | 199 …let v2: { x: LocalType } = {x: {a: 1, b: '2'}}; // Non-fixable, type captures another type declare… 204 let v3: {[one]: 1}; // Non-fixable, type captures another object declared in local scope 207 …let v4: { y: LocalClass } = {y: new LocalClass()}; // Non-fixable, type captures another type decl… 209 …let v5: { lc: typeof LocalClass }; // Non-fixable, type captures another type declared in local sc… 211 let v6: { lc: typeof v1 }; // Non-fixable, type captures another object declared in local scope
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/04.interface_members/ |
| D | field_initializer_with_other_field.ets | 17 desc: Field initializer with reference to another interface field. 18 assert: It is a compile-time error if the initializer of an interface field uses another field whos…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/06.callable_types/01.callable_types_with_invoke_method/ |
| D | ct_invoke_access.params.yaml | 16 // private invoke from same-class another invoke 36 // protected invoke from same-class another invoke 81 // protected invoke from another class invoke 93 // protected invoke from another class method
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/ |
| D | field_declaration_with_busy_name.ets | 19 desc: Declare a field with the name that is already used for another field or a method or a member … 20 …ss declaration to declare a field with the name that is already used for another field or a method…
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | cflow_jump_from_exc_handler_to_exc_handler.pa | 17 # direct jump from one handler to another 35 # direct jump from one handler to another
|
| D | cflow_fallthrough_from_exc_handler_to_exc_handler.pa | 17 # fallthrough from one handler to another 35 # direct jump from one handler to another
|
| /arkcompiler/runtime_core/static_core/tests/verifier-tests/ |
| D | cflow_jump_from_exc_handler_to_exc_handler.pa | 17 # direct jump from one handler to another 35 # direct jump from one handler to another
|
| D | cflow_fallthrough_from_exc_handler_to_exc_handler.pa | 17 # fallthrough from one handler to another 35 # direct jump from one handler to another
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/coroutines/ |
| D | wake_for_another_event.ets | 18 * that will be resolved in then callback of another promise 19 * that will be resolved in another coroutine
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/LightWeightSet/ |
| D | LightWeightSetAddAllHasAllHasTest.ets | 46 … assertEQ(result, true, "The lightWeightSet should add all elements from another lightWeightSet"); 54 … assertEQ(result, false, "The lightWeightSet should add all elements from another lightWeightSet"); 64 … assertEQ(result, true, "The lightWeightSet should add all elements from another lightWeightSet"); 93 …assertEQ(result, true, "The lightWeightSet should contain all elements from another lightWeightSet… 106 … "The lightWeightSet should not contain elements that are not set in another lightWeightSet"); 121 … "The lightWeightSet should not contain elements that are out of range in another lightWeightSet");
|
| /arkcompiler/ets_runtime/test/aottest/typedarray_load_store/ |
| D | typedarray_load_store.ts | 74 /** TypedArray constructed from another TypedArray(constructed from ArrayBuffer). */ 79 /** TypedArray constructed from another TypedArray(constructed from TypedArray). */ 121 /** TypedArray constructed from another TypedArray(constructed from ArrayBuffer). */ 126 /** TypedArray constructed from another TypedArray(constructed from TypedArray). */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/09.tuple_types_conversions/assn_var/ |
| D | assn-var.ets | 19 Tuple types conversion is the conversion of one tuple type to another. 34 // variable assignment with another variable 38 // variable assignment with another constant
|
| D | assn-var_n.ets | 19 Tuple types conversion is the conversion of one tuple type to another. 29 // variable assignment with another variable
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | RegisterSpiller.ets | 40 let s3: String = "another "; 42 let s5: String = "This is another string";
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/06.callable_types/02.callable_types_with_instantiate_method/ |
| D | ct_inst_access.params.yaml | 16 // private instantiate from same-class another instantiate 46 // protected instantiate from same-class another instantiate 111 // protected instantiate from another class instantiate 128 // protected instantiate from another class method
|