| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/test/maple_be/ |
| D | cg_cgbb_test.cpp | 48 maplebe::Insn existing = CreateInsnObj("existing", 32); in TEST() local 51 test_bb.SetFirstInsn(&existing); in TEST() 52 EXPECT_EQ(existing.GetPrev(), nullptr); in TEST() 53 maplebe::Insn *ans = test_bb.InsertInsnBefore(existing, newInsn); in TEST() 57 EXPECT_NE(existing.GetPrev(), nullptr); in TEST() 58 ans = test_bb.InsertInsnBefore(existing, newInsn1); in TEST() 66 maplebe::Insn existing = CreateInsnObj("existing", 32); in TEST() local 70 test_bb.SetFirstInsn(&existing); in TEST() 71 ans = test_bb.InsertInsnAfter(existing, newInsn1); in TEST() 75 ans = test_bb.InsertInsnAfter(existing, newInsn2); in TEST()
|
| /arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/common/ |
| D | Const.ts | 39 export const UNKNOWN_CLASS_NAME = ''; // temp for being compatible with existing type inference 40 export const UNKNOWN_FIELD_NAME = ''; // temp for being compatible with existing type inference 41 export const UNKNOWN_METHOD_NAME = ''; // temp for being compatible with existing type inference
|
| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | vtable_builder_standard-inl.h | 143 // Use the following algorithm to judge whether we have to replace existing DEFAULT METHOD. in ProcessDefaultMethod() 144 // 1. if existing default method is ICCE, just skip. in ProcessDefaultMethod() 146 // existing default method can be AME or not, has no effect on final result. its okay. in ProcessDefaultMethod() 147 // 3. if new method is max-specific method, check whether existing default method is AME in ProcessDefaultMethod() 148 // 3.1 if no, set ICCE flag for existing method in ProcessDefaultMethod() 149 // 3.2 if yes, replace existing method with new method(new method becomes a candidate) in ProcessDefaultMethod()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/ |
| D | TypeInterfaceTypeTest.ets | 106 test(testGetInterfaceError(ict), " non-existing interface") + 107 test(testGetMethodError(ict), " non-existing method") 123 test(testGetInterfaceError(idt), " non-existing interface") + 124 test(testGetMethodError(idt), " non-existing method")
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cgbb.cpp | 25 Insn *BB::InsertInsnBefore(Insn &existing, Insn &newInsn) in InsertInsnBefore() argument 27 Insn *pre = existing.GetPrev(); in InsertInsnBefore() 29 newInsn.SetNext(&existing); in InsertInsnBefore() 30 existing.SetPrev(&newInsn); in InsertInsnBefore() 34 if (&existing == firstInsn) { in InsertInsnBefore() 41 Insn *BB::InsertInsnAfter(Insn &existing, Insn &newInsn) in InsertInsnAfter() argument 43 newInsn.SetPrev(&existing); in InsertInsnAfter() 44 newInsn.SetNext(existing.GetNext()); in InsertInsnAfter() 45 existing.SetNext(&newInsn); in InsertInsnAfter() 46 if (&existing == lastInsn) { in InsertInsnAfter()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/linker/ |
| D | CMakeLists.txt | 148 set(EXISTING_ABC "${WORK_DIR}/${TARGET}-existing.abc") 152 # Provide non-existing abc file on which application linker context will fail 153 set(NON_EXISTING_ABC_FILE "${WORK_DIR}/${TARGET}-non-existing.abc") 162 --non-existing-abc=${NON_EXISTING_ABC_FILE}
|
| /arkcompiler/ets_frontend/ets2panda/linter/homecheck/src/checker/migration/ |
| D | InteropBoxedTypeCheck.ts | 132 const existing = hasChecked.namespaces.get(arkNamespace.getSignature().toString()); constant 133 if (existing !== undefined) { 134 return existing; 169 const existing = hasChecked.classes.get(arkClass.getSignature().toString()); constant 170 if (existing !== undefined) { 171 return existing; 209 const existing = hasChecked.methods.get(arkMethod.getSignature().toString()); constant 210 if (existing !== undefined) { 211 return existing;
|
| /arkcompiler/runtime_core/libabckit/tests/clean_scenarios/c_api/ |
| D | README.md | 1 AbcKit was also tested on scenarios from existing apps.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/ |
| D | intro.rst | 36 keep the look and feel of |TS| to enable a seamless transition for the existing 51 the power of the new language by using their existing codebases and libraries.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/06.type_declarations/01.type_alias_declaration/ |
| D | spec4.ets | 19 or alternative names for existing types.
|
| D | alias.ets | 20 or alternative names for existing types. Type aliases allow one to use meaningful
|
| D | alias_neg.ets | 20 or alternative names for existing types. Type aliases allow one to use meaningful
|
| D | alias_gen.ets | 20 or alternative names for existing types. Type aliases allow one to use meaningful
|
| D | spec3.ets | 19 or alternative names for existing types.
|
| D | spec1.ets | 19 or alternative names for existing types.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/03.import_directives/05.type_binding/ |
| D | type_binding_class_neg_2.ets | 17 desc: Import non-existing type from the module.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/HashMap/ |
| D | HashMapClearKeysValuesReplaceTest.ets | 180 …arktest.assertTrue(hashMap.replace('ji', 1), "Replacing existing key with the same value should su… 187 …arktest.assertTrue(hashMap.replace('ji', 2), "Replacing existing key with a different value should… 209 …arktest.assertTrue(hashMap.replace(1, paramTwo), "Replacing existing key with a different value sh… 228 "Replacing existing key with a different value should succeed");
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/04.class_implementation_clause/ |
| D | abstract_method_inheritance.ets | 18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
|
| D | abstract_method_inheritance_by_non_abstract_class.ets | 18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
|
| D | abstract_method_multiple_inheritance.ets | 18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
|
| D | abstract_method_override.ets | 18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
|
| D | abstract_method_override_by_superclass.ets | 18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
|
| /arkcompiler/runtime_core/libabckit/tests/clean_scenarios/ |
| D | README.md | 1 AbcKit was also tested on user scenarios from existing apps.
|
| /arkcompiler/ets_frontend/test/scripts/sdk_test/ |
| D | readme.md | 16 … and add the configuration under the “haps” field. You can refer to the existing application confi…
|
| /arkcompiler/runtime_core/static_core/runtime/tests/intrusive-tests/ |
| D | README.md | 91 Use `-c` flag to clear existing build directory `<path_to_build_dir>` and `-r` to skip instrumentat… 96 Existing test `runtime/tests/intrusive-tests/clear_interrupted_intrusive_test/clear_interrupted_int…
|