Home
last modified time | relevance | path

Searched full:existing (Results 1 – 25 of 159) sorted by relevance

1234567

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/test/maple_be/
Dcg_cgbb_test.cpp48 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/
DConst.ts39 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/
Dvtable_builder_standard-inl.h143 // 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/
DTypeInterfaceTypeTest.ets106 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/
Dcgbb.cpp25 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/
DCMakeLists.txt148 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/
DInteropBoxedTypeCheck.ts132 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/
DREADME.md1 AbcKit was also tested on scenarios from existing apps.
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dintro.rst36 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/
Dspec4.ets19 or alternative names for existing types.
Dalias.ets20 or alternative names for existing types. Type aliases allow one to use meaningful
Dalias_neg.ets20 or alternative names for existing types. Type aliases allow one to use meaningful
Dalias_gen.ets20 or alternative names for existing types. Type aliases allow one to use meaningful
Dspec3.ets19 or alternative names for existing types.
Dspec1.ets19 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/
Dtype_binding_class_neg_2.ets17 desc: Import non-existing type from the module.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/HashMap/
DHashMapClearKeysValuesReplaceTest.ets180 …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/
Dabstract_method_inheritance.ets18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
Dabstract_method_inheritance_by_non_abstract_class.ets18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
Dabstract_method_multiple_inheritance.ets18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
Dabstract_method_override.ets18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
Dabstract_method_override_by_superclass.ets18 …face must be implemented either by a declaration in this class or by an existing method declaratio…
/arkcompiler/runtime_core/libabckit/tests/clean_scenarios/
DREADME.md1 AbcKit was also tested on user scenarios from existing apps.
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dreadme.md16 … 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/
DREADME.md91 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…

1234567