Home
last modified time | relevance | path

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

1234567

/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.py250 ALL_SKIP_TESTS.extend(key["files"])
471 files.extend(self.get_tests_from_file(ES2021_LIST_FILE))
473 files.extend(self.get_tests_from_file(ES5_LIST_FILE))
474 files.extend(self.get_tests_from_file(INTL_LIST_FILE))
475 files.extend(self.get_tests_from_file(ES2015_LIST_FILE))
477 files.extend(self.get_tests_from_file(ES5_LIST_FILE))
478 files.extend(self.get_tests_from_file(INTL_LIST_FILE))
479 files.extend(self.get_tests_from_file(ES2015_LIST_FILE))
480 files.extend(self.get_tests_from_file(OTHER_LIST_FILE))
486 files.extend(self.get_tests_from_file(SENDABLE_LIST_FILE))
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Dtest_file_based.py108 cmd.extend(params.flags)
178 ark_flags.extend(self.ark_extra_options)
179 ark_flags.extend(self.runtime_args)
181 ark_flags.extend(["--aot-files", test_an])
184 ark_flags.extend([
193 ark_flags.extend(['--compiler-enable-jit=false'])
196 ark_flags.extend([f'--interpreter-type={self.test_env.config.ark.interpreter_type}'])
198 ark_flags.extend([test_abc, self.main_entry_point])
216 aot_flags.extend(self.test_env.aot_args)
219 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.h160 : reg_(RegisterId::INVALID_REG), extend_(Extend::NO_EXTEND), shift_(Shift::NO_SHIFT), in Operand()
165 … : reg_(reg), extend_(Extend::NO_EXTEND), shift_(shift), shiftAmount_(shift_amount), immediate_(0) in reg_()
168 Operand(Register reg, Extend extend, uint8_t shiftAmount = 0)
169 … : reg_(reg), extend_(extend), shift_(Shift::NO_SHIFT), shiftAmount_(shiftAmount), immediate_(0) in reg_()
186 return reg_.IsValid() && extend_ != Extend::NO_EXTEND; in IsExtended()
199 inline Extend GetExtendOption() const in GetExtendOption()
220 Extend extend_;
228 MemoryOperand(Register base, Register offset, Extend extend, uint8_t shiftAmount = 0)
230 extend_(extend), shift_(Shift::NO_SHIFT), shiftAmount_(shiftAmount) in base_()
235 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/09.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/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
Drunner_ets.py53 self.test_env.es2panda_args.extend([
61 self.test_env.es2panda_args.extend(self.config.es2panda.es2panda_args)
64 self.test_env.runtime_args.extend(load_runtime_ets)
65 self.test_env.verifier_args.extend(load_runtime_ets)
67 self.aot_args.extend(load_runtime_ets)
/arkcompiler/ets_runtime/test/moduletest/memleakobjectcreate/
Dmemleakobjectcreate.js19 extend() { method
27 var instance = base.extend();
/arkcompiler/ets_frontend/arkguard/test/grammar/advanced_type/
Dintersection_types.ts18 function extend<T, U>(first: T, second: U): T & U { function
46 const jim = extend(new Person('Jim'), new ConsoleLogger());
/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/ets2panda/linter/test/main/
Dinterfaces_props.ts.json44 … "rule": "Interface can not extend interfaces with the same method (arkts-no-extend-same-prop)",
Dtype_declarations.ts.json74 "rule": "Interfaces cannot extend classes (arkts-extends-only-class)",
94 "rule": "Interfaces cannot extend classes (arkts-extends-only-class)",
174 "rule": "Interfaces cannot extend classes (arkts-extends-only-class)",
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/
Dtest_astchecker.py53 errors_list.extend(not_handled_errors)
71 es2panda_flags.extend(['--output=/dev/null', '--dump-ast'])
78 es2panda_flags.extend(self.flags)
/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/es2panda/test/
Drunner.py224 cmd.extend(self.flags)
225 cmd.extend(["--output=" + test_abc_path])
288 cmd.extend(self.flags)
504 gen_abc_cmd.extend(["--debug-info"])
505 … gen_abc_cmd.extend(["--module", "--dump-normalized-asm-program", "--output=" + output_abc_file])
519 abc_to_asm_cmd.extend(["--debug-info"])
520 abc_to_asm_cmd.extend(["--module", "--dump-normalized-asm-program", "--enable-abc-input"])
652 es2abc_cmd.extend(self.flags)
653 es2abc_cmd.extend(["--output=" + test_abc_path])
741 es2abc_cmd.extend(['%s%s' % ("--output=", output_path)])
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Doperand.h69 kOpdExtend, /* for extend operand */
916 kAddrModeBOrX, /* EA = [base]+Extend([offreg/idxreg]), OR=Wn/Xn */
941 * LDR X0, [X1, W2, SXTW] ; Sign-extend offset in W2
942 * LDR X0, [X1, W2, UXTW] ; Zero-extend offset in W2
945 * LDR X0, [X1, W2, UXTW #2] ; Zero-extend offset in W2 & left-shift by 2
1011 extend(0), in OperandVisitable()
1026 extend(0), in MemOperand()
1041 extend(0), in MemOperand()
1056 extend((isSigned ? kSignExtend : kUnsignedExtend) | (1U << shift)), in OperandVisitable()
1070 extend(0), in MemOperand()
[all …]
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/
Drun_java.py96 cmd_java2class.extend([file_path])
106 cmd_class2dex.extend(class_files)
107 cmd_class2dex.extend(['--output', case_root])
/arkcompiler/ets_frontend/ets2panda/linter/test/rules/
Drule102.ts.json64 … "rule": "Interface can not extend interfaces with the same method (arkts-no-extend-same-prop)",
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/rawheap_translate/
Dmain.cpp21 "at least 1 argv provide, you can also extend to include <filename.heapsnapshot>, "
27 // 3: also extend to include output file <filename.heapsnapshot> in Main()

1234567