Home
last modified time | relevance | path

Searched full:implementation (Results 1 – 25 of 522) sorted by relevance

12345678910>>...21

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/generic_declarations/generic_classes/implementation_of_different_types/
Dimplement_generic_interface.params.yaml18 desc: Test the generic implementation class to handle a single small positive integer.
24 desc: Test the generic implementation class to handle a single large positive integer.
30 desc: Test the generic implementation class to handle a single small negative integer.
36 desc: Test the generic implementation class to handle a single large negative integer.
42 desc: Test the generic implementation class to handle the integer zero.
48 …desc: Test the generic implementation class to handle a single small positive floating - point num…
54 …desc: Test the generic implementation class to handle a single large positive floating - point num…
60 …desc: Test the generic implementation class to handle a single small negative floating - point num…
66 …desc: Test the generic implementation class to handle a single large negative floating - point num…
72 desc: Test the generic implementation class to handle the floating - point number zero.
[all …]
/arkcompiler/runtime_core/static_core/compiler/optimizer/templates/intrinsics/
Dentrypoints_bridge_asm_macro.inl.erb25 % implementation = intrn.impl.rpartition("::").last
26 // Default intrinsic implementation with runtime_call which is called by Codegen::CallIntrinsic
27 ENTRYPOINT <%= implementation %>Bridge, <%= implementation %>, <%= intrn.impl_signature.args.count.…
28 // Default implementation for virtually called intrinsics from compiled frame
29 ENTRYPOINT <%= implementation %>CompiledAbiBridge, <%= implementation %>CompiledAbi, <%= (intrn.imp…
31 BRIDGE_SELECTOR <%= implementation %>BridgeSelectorEntryPoint, <%= implementation %>CompiledAbi, <%…
33 % implementation = intrn.fast_path if intrn.respond_to?(:fast_path)
38 RUNTIME_CALL_CHECKER <%= implementation %>RuntimeCallChecker, <%= implementation %>
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/
Dentrypoints_bridge_asm_macro.inl.erb24 % implementation = intrn.impl.rpartition("::").last
25 // Default intrinsic implementation with runtime_call which is called by Codegen::CallIntrinsic
26 ENTRYPOINT <%= implementation %>Bridge, <%= implementation %>, <%= intrn.impl_signature.args.count.…
27 // Default implementation for virtually called intrinsics from compiled frame
28 ENTRYPOINT <%= implementation %>CompiledAbiBridge, <%= implementation %>CompiledAbi, <%= (intrn.imp…
30 BRIDGE_SELECTOR <%= implementation %>BridgeSelectorEntryPoint, <%= implementation %>CompiledAbi, <%…
32 % implementation = intrn.fast_path if intrn.respond_to?(:fast_path)
38 RUNTIME_CALL_CHECKER <%= implementation %>RuntimeCallChecker, <%= implementation %>
/arkcompiler/runtime_core/libabckit/tests/stress/
Dfail_list_test262.json2 …"/tmp/abckit_test262/implementation-contributed/v8/mjsunit/asm/sqlite3/sqlite-change-heap.js": "13…
3 …"/tmp/abckit_test262/implementation-contributed/v8/mjsunit/asm/sqlite3/sqlite-pointer-masking.js":…
4 …"/tmp/abckit_test262/implementation-contributed/v8/mjsunit/asm/sqlite3/sqlite-safe-heap.js": "139",
5 "/tmp/abckit_test262/implementation-contributed/v8/mjsunit/asm/sqlite3/sqlite.js": "139",
6 …"/tmp/abckit_test262/implementation-contributed/v8/mjsunit/regress/wasm/regress-810973b.js": "137",
7 "/tmp/abckit_test262/implementation-contributed/v8/mjsunit/regress/regress-5454.js": "139",
8 "/tmp/abckit_test262/implementation-contributed/v8/mjsunit/es6/destructuring.js": "139"
Dfail_list_harness_with_runtime.json2 "/tmp/abckit_test262/implementation-contributed/v8/mjsunit/es6/destructuring.js": 1,
3 "/tmp/abckit_test262/implementation-contributed/v8/mjsunit/regress/regress-5454.js": 1,
4 "/tmp/abckit_test262/implementation-contributed/v8/mjsunit/regress/wasm/regress-810973b.js": 137,
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/annotation_tests/
Dambient_annotations_bad_type03.ets21 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
22 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
23 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
24 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
25 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
26 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
27 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
28 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
29 …otation 'ClassAuthor' is declared in the ambient declaration but missing in the implementation. */
/arkcompiler/ets_frontend/ets2panda/lsp/src/services/
Dservices.cpp34 // NOTE: Currently Ozerovs implementation returns single implementation location. in GetImplementationLocationAtPosition()
35 // So this section should be updated after the implementation of vector returning in GetImplementationLocationAtPosition()
40 auto implementation = declInfo.first; in GetImplementationLocationAtPosition() local
41 if (implementation != nullptr && IsValidImplementation(implementation)) { in GetImplementationLocationAtPosition()
42 implementationList.push_back(implementation); in GetImplementationLocationAtPosition()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/07.interface_inheritance/method_inheritance/inherited_abstract_method/
Dinherited_abstract_method_24.ets22 return("Parent method implementation");
33 return "Child method implementation";
37 return "Overridden implementation of parentMethod in ChildInterface";
43 assertEQ(instance.parentMethod(), "Overridden implementation of parentMethod in ChildInterface");
44 assertEQ(instance.childMethod(), "Child method implementation");
Dinherited_abstract_method_20.ets17 desc: Parent interface contains default method implementation.
22 return("Parent method implementation");
32 return "Child method implementation";
38 assertEQ(instance.parentMethod(), "Parent method implementation");
Dinherited_abstract_method_36.ets26 return("Parent class method implementation");
32 return "Child method implementation";
36 return "Interface method implementation";
42 assertEQ(instance.interfaceMethod(), "Interface method implementation");
Dinherited_abstract_method_37.ets26 return("Parent class method implementation");
32 return "Child method implementation";
36 return "Interface method implementation";
42 assertEQ(instance.interfaceMethod(), "Interface method implementation");
Dinherited_abstract_method_21.ets17 desc: Parent interface contains default method implementation(parentinterface call parentmethod).
22 return("Parent method implementation");
32 return "Child method implementation";
38 assertEQ(instance.parentMethod(), "Parent method implementation");
Dinherited_abstract_method_38.ets26 return("Parent class method implementation");
32 return "Child method implementation";
36 return "Interface method implementation";
42 assertEQ(instance.parentMethod(), "Parent class method implementation");
Dinherited_abstract_method_22.ets17 desc: Parent interface contains default method implementation(parentinterface call childmethod).
22 return("Parent method implementation");
32 return "Child method implementation";
38 assertEQ(instance.childMethod(), "Child method implementation");
Dinherited_abstract_method_35.ets26 return("Parent class method implementation");
32 return "Child method implementation";
36 return "Interface method implementation";
42 assertEQ(instance.parentMethod(), "Parent class method implementation");
Dinherited_abstract_method_32.ets26 return "Parent method2 implementation";
36 return "Child method implementation";
40 return "Parent method1 implementation";
46 assertEQ(instance.parentMethod2(), "Parent method2 implementation");
Dinherited_abstract_method_31.ets26 return "Parent method2 implementation";
36 return "Child method implementation";
40 return "Parent method1 implementation";
46 assertEQ(instance.parentMethod1(), "Parent method1 implementation");
Dinherited_abstract_method_23.ets22 return("Parent method implementation");
33 return "Child method implementation";
37 return "Overridden implementation of parentMethod in ChildInterface";
43 assertEQ(instance.parentMethod(), "Overridden implementation of parentMethod in ChildInterface");
Dinherited_abstract_method_41.ets34 return "Child method implementation";
38 return "Parent method1 implementation";
42 return "Parent method2 implementation";
48 assertEQ(instance.parentMethod1(), "Parent method1 implementation");
Dinherited_abstract_method_47.ets30 return "Child method implementation";
35 return "Parent stringmethod implementation";
37 return "Parent numbermethod implementation";
43 assertEQ(instance.parentMethod("str"), "Parent stringmethod implementation");
Dinherited_abstract_method_18.ets31 return("Parent method implementation");
35 return "Child method implementation";
39 return "New method implementation";
45 assertEQ(instance.newMethod(), "New method implementation");
Dinherited_abstract_method_39.ets34 return "Child method implementation";
38 return "Parent method1 implementation";
42 return "Parent method2 implementation";
48 assertEQ(instance.parentMethod1(), "Parent method1 implementation");
Dinherited_abstract_method_44.ets34 return "Child method implementation";
38 return "Parent method1 implementation";
42 return "Parent method2 implementation";
48 assertEQ(instance.parentMethod2(), "Parent method2 implementation");
Dinherited_abstract_method_10.ets31 return "Overridden commonMethod implementation in ChildInterface";
35 return "Child method implementation";
39 return "Parent method implementation";
45 assertEQ(instance.commonMethod(), "Overridden commonMethod implementation in ChildInterface");
/arkcompiler/runtime_core/libabckit/doc/
Dimplementation_description.md1 # Implementation description
10 2. [C API and C++ implementation](#c-api-and-c-implementation)
15 7. [Data structures (context) implementation](#data-structures-context-implementation)
113 2. C++ implementations for above APIs, in most cases implementation is just dispatch between dynami…
114 3. Runtime specific implementation:
115 1. Dynamic runtime implementation
116 2. Static runtime implementation
134 … (./include/c)| | 2. API implementation (./src/) | | 3.1 Dynamic runt…
146 … | 3.2 Static runtime implementation (./src/adapter_static/) |
159 For example here is `functionGetName()` API implementation (`./src/metadata_inspect_impl.cpp`):
[all …]

12345678910>>...21