Home
last modified time | relevance | path

Searched full:extend (Results 1 – 25 of 251) sorted by relevance

1234567891011

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.generics/01.type_parameters/01.type_parameter_constraint/generic_classes/
Dgeneric_class_constraint.params.yaml25 doc: cannot extend final class
29 doc: cannot extend final class
33 doc: cannot extend final class
37 doc: cannot extend final class
41 doc: cannot extend final class
45 doc: cannot extend final class
49 doc: cannot extend final class
53 doc: cannot extend final class
57 doc: cannot extend final class
61 doc: cannot extend final class
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dentry.py29 cmd.extend(['--hapMode', 'all'])
30 cmd.extend(['--compileMode', 'all'])
31 cmd.extend(['--logLevel', 'debug'])
32 cmd.extend(['--runHaps'])
33 cmd.extend(['--logFile', 'log' + '_' + utils.get_time_string() + '.txt'])
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe104.md1 # Interfaces cannot extend classes
7 ArkTS does not support interfaces that extend classes. Interfaces can extend
Drecipe102.md1 # Interface can not extend interfaces with the same method
3 Rule ``arkts-no-extend-same-prop``
/arkcompiler/ets_frontend/test262/
Drun_test262.py252 ALL_SKIP_TESTS.extend(key["files"])
473 files.extend(self.get_tests_from_file(ES2021_LIST_FILE))
475 files.extend(self.get_tests_from_file(ES5_LIST_FILE))
476 files.extend(self.get_tests_from_file(INTL_LIST_FILE))
477 files.extend(self.get_tests_from_file(ES2015_LIST_FILE))
479 files.extend(self.get_tests_from_file(ES5_LIST_FILE))
480 files.extend(self.get_tests_from_file(INTL_LIST_FILE))
481 files.extend(self.get_tests_from_file(ES2015_LIST_FILE))
482 files.extend(self.get_tests_from_file(OTHER_LIST_FILE))
488 files.extend(self.get_tests_from_file(SENDABLE_LIST_FILE))
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Dtest_file_based.py112 cmd.extend(params.flags)
182 ark_flags.extend(self.ark_extra_options)
183 ark_flags.extend(self.runtime_args)
185 ark_flags.extend(["--aot-files", test_an])
188 ark_flags.extend([
197 ark_flags.extend(['--compiler-enable-jit=false'])
200 ark_flags.extend([f'--interpreter-type={self.test_env.config.ark.interpreter_type}'])
208 ark_flags.extend([test_abc, self.main_entry_point])
226 aot_flags.extend(self.test_env.aot_args)
229 aot_flags.extend(['--paoc-panda-files', test_abc])
[all …]
Drunner_js.py48 self.runtime_args.extend([
54 self.aot_args.extend([
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
Dassembler_aarch64.h162 : reg_(RegisterId::INVALID_REG), extend_(Extend::NO_EXTEND), shift_(Shift::NO_SHIFT), in Operand()
167 … : reg_(reg), extend_(Extend::NO_EXTEND), shift_(shift), shiftAmount_(shift_amount), immediate_(0) in reg_()
170 Operand(Register reg, Extend extend, uint8_t shiftAmount = 0)
171 … : reg_(reg), extend_(extend), shift_(Shift::NO_SHIFT), shiftAmount_(shiftAmount), immediate_(0) in reg_()
188 return reg_.IsValid() && extend_ != Extend::NO_EXTEND; in IsExtended()
201 inline Extend GetExtendOption() const in GetExtendOption()
222 Extend extend_;
230 MemoryOperand(Register base, Register offset, Extend extend, uint8_t shiftAmount = 0)
232 extend_(extend), shift_(Shift::NO_SHIFT), shiftAmount_(shiftAmount) in base_()
237 extend_(Extend::NO_EXTEND), shift_(shift), shiftAmount_(shiftAmount) in base_()
[all …]
Dassembler_aarch64_constants.h45 enum Extend : uint8_t { enum
47 UXTB = 0, /* zero extend to byte */
48 UXTH = 1, /* zero extend to half word */
49 UXTW = 2, /* zero extend to word */
50 UXTX = 3, /* zero extend to 64bit */
51 SXTB = 4, /* sign extend to byte */
52 SXTH = 5, /* sign extend to half word */
53 SXTW = 6, /* sign extend to word */
54 SXTX = 7, /* sign extend to 64bit */
289 V(LDR_STR, Extend, 15, 13) \
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/10.final_classes_and_methods/01.final_classes/
Dfc.params.yaml45 # cannot extend final class
54 # cannot extend final class
62 # cannot extend final class
79 # cannot extend final class, with type parameters
/arkcompiler/ets_runtime/test/sharedtest/check/
Dexpect_output.txt54 Fail to extend prop to constructor's prototype. err: TypeError: Cannot add property in prevent exte…
58 Fail to extend instance's prototype. err: TypeError: Cannot define property
65 Fail to extend prop with defineProperty. err: TypeError: Cannot define property
66 Fail to extend prop1 with defineProperty. err: TypeError: Cannot define property
67 Fail to extend prop2 with defineProperties. err: TypeError: Cannot define property
68 Fail to extend prop3 with stobjbyname. err: TypeError: Cannot add property in prevent extensions
71 Fail to call Object.assign to extend target. err: TypeError: Cannot add property in prevent extensi…
Dsharedcheck.ts157 print("Success to extend prop with defineProperty")
159 print("Fail to extend prop with defineProperty. err: " + error);
164 print("Success extend prop1 with defineProperty")
166 print("Fail to extend prop1 with defineProperty. err: " + error)
171 print("Success extend prop2 with defineProperties")
173 print("Fail to extend prop2 with defineProperties. err: " + error)
178 print("Success extend prop3 with stobjbyname")
180 print("Fail to extend prop3 with stobjbyname. err: " + error)
205 print("Success to extend prop to constructor's prototype.");
207 print("Fail to extend prop to constructor's prototype. err: " + error);
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dextend_decorator_1.ets.arkts2.json24 "rule": "\"@Extend\" decorator is not supported (arkui-no-extend-decorator)",
74 "rule": "\"@Extend\" decorator is not supported (arkui-no-extend-decorator)",
Dextend_decorator_1.ets28 @Extend(Column)
44 @Extend(Column)
Dinterfaces_props.ets.json44 … "rule": "Interface can not extend interfaces with the same method (arkts-no-extend-same-prop)",
/arkcompiler/ets_frontend/ets2panda/linter/src/lib/utils/consts/
DArkuiConstants.ts31 Extend = 'Extend', enumerator
71 'Extend',
/arkcompiler/ets_frontend/ets2panda/test/compiler/ets/
DabstractNewClassInstanceExpression.ets25 // It is forbidden to extend a class by an anonymous class
31 // It is forbidden to extend a class by an anonymous class
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/code_coverage/
Dllvm_cov_tool.py120 llvm_cov_export_command_args.extend(["-instr-profile", str(_merged_profdata_file_path)])
125 llvm_cov_export_command_args.extend(["--object", str(bin_path)])
128 llvm_cov_export_command_args.extend(["--object", str(bin_path)])
131 llvm_cov_export_command_args.extend(["--object", str(so_path)])
134 llvm_cov_export_command_args.extend(["--ignore-filename-regex", exclude_regex])
136 command.extend(llvm_cov_export_command_args)
/arkcompiler/ets_runtime/test/moduletest/memleakobjectcreate/
Dmemleakobjectcreate.js19 extend() { method
27 var instance = base.extend();
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp-inl.h56 … JSTaggedValue lastIndexInput, JSHandle<JSTaggedValue> extend, in FindCachedResult() argument
63 JSTaggedValue extendValue = extend.GetTaggedValue(); in FindCachedResult()
130 … JSTaggedValue &input, JSTaggedValue &lastIndexInputValue, JSTaggedValue &extend, in Match() argument
168 if (extend.IsString() && keyExtend.IsString()) { in Match()
169 EcmaString *extendStr = EcmaString::Cast(extend.GetTaggedObject()); in Match()
172 } else if (extend.IsUndefined() && keyExtend.IsUndefined()) { in Match()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
Drunner_ets.py54 self.test_env.es2panda_args.extend([
62 self.test_env.es2panda_args.extend(self.config.es2panda.es2panda_args)
69 self.test_env.runtime_args.extend(load_runtime_ets)
74 self.test_env.verifier_args.extend(load_runtime_ets)
76 self.aot_args.extend(load_runtime_ets)
/arkcompiler/ets_runtime/test/
Drun_ts_test262.py92 cmd.extend(['--module', '--merge-abc', '--extension=ts', '--output', abc_file_path, filepath])
169 contents.extend(file.readlines())
181 c.extend(contents)
196 content.extend(file1.readlines())
198 c.extend(content)
201 c.extend(['\n', 'print("SUCCESS")'])
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_override-expected.txt1 …cannot have an 'override' modifier because its containing class does not extend another class. [te…
Dtest_override7-expected.txt1 …cannot have an 'override' modifier because its containing class does not extend another class. [te…
/arkcompiler/ets_frontend/ets2panda/test/tsconfig/test-decl/check-extend-dynamic/
Dexpected.json3 "stdout": "TypeError: Class D shouldn't extend dynamic class. [main.ets:18:19]\n",

1234567891011