Home
last modified time | relevance | path

Searched defs:self (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/arkcompiler/toolchain/tooling/client/tcpServer/test/js_test_case/
Djs_test.py73 def test_set_and_delete_breakpoints(self): argument
85 def test_repeat_breakpoints(self): argument
98 def test_dispaly(self): argument
112 def test_break_and_resume(self): argument
126 def test_step_into(self): argument
167 def test_step_out(self): argument
224 def test_step_over(self): argument
264 def test_step_into_and_step_out(self): argument
307 def test_watch(self): argument
334 def test_repeat_watch(self): argument
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/test/chapters_test/
Dchapters_test.py48 def test_ch1(self) -> None: argument
65 def test_ch2(self) -> None: argument
82 def test_ch3(self) -> None: argument
98 def test_ch4_1(self) -> None: argument
110 def test_ch4(self) -> None: argument
123 def test_ch5(self) -> None: argument
136 def test_ch6(self) -> None: argument
158 def test_ch7(self) -> None: argument
168 def test_ch8(self) -> None: argument
184 def test_ch9(self) -> None: argument
[all …]
/arkcompiler/ets_frontend/ets2panda/public/headers_parser/
Dline_iterator.py24 def __init__(self, data_raw: str, start: int = 0): argument
38 def next_line(self) -> bool: argument
62 def is_skip_line(self) -> bool: argument
69 def is_template(self) -> bool: argument
72 def is_namespace(self) -> bool: argument
75 def is_enum(self) -> bool: argument
78 def is_struct(self) -> bool: argument
81 def is_using(self) -> bool: argument
84 def is_define_macro(self) -> bool: argument
87 def is_access_modifier(self) -> bool: argument
[all …]
Dcpp_parser.py38 def __init__(self, data: str, namespace: str = "", parent_class_name: str = ""): argument
48 def parse(self) -> Dict[str, Any]: # pylint: disable=R0912 argument
113 def res_append(self, key: str) -> None: argument
122 def res_append_in_modifier(self, key: str) -> None: argument
138 def res_update(self) -> None: argument
143 def res_append_namespace(self) -> None: argument
153 def update_access_modifier(self) -> None: argument
160 def res_append_method_or_constructor(self) -> None: argument
177 def res_append_field(self) -> None: argument
186 def res_append_class_definition(self) -> None: argument
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
Doptions_general.py41 def __str__(self) -> str: argument
45 def qemu_cmd_line(self) -> str: argument
67 def chunksize(self) -> int: argument
71 def static_core_root(self) -> str: argument
79 def generate_config(self) -> Optional[str]: argument
84 def processes(self) -> int: argument
89 def build(self) -> Optional[str]: argument
94 def test_root(self) -> Optional[str]: argument
99 def list_root(self) -> Optional[str]: argument
104 def work_dir(self) -> Optional[str]: argument
[all …]
Doptions_es2panda.py28 def __str__(self) -> str: argument
31 def to_dict(self) -> Dict[str, object]: argument
44 def timeout(self) -> int: argument
49 def opt_level(self) -> int: argument
54 def debug_info(self) -> bool: argument
59 def custom_path(self) -> Optional[str]: argument
64 def arktsconfig(self) -> Optional[str]: argument
69 def es2panda_args(self) -> List[str]: argument
74 def system(self) -> bool: argument
77 def is_fullastverifier(self) -> bool: argument
[all …]
Doptions_test_lists.py33 def __str__(self) -> str: argument
36 def to_dict(self) -> Dict[str, object]: argument
57 def architecture(self) -> ArchitectureKind: argument
66 def sanitizer(self) -> SanitizerKind: argument
75 def operating_system(self) -> OSKind: argument
84 def build_type(self) -> BuildTypeKind: argument
89 def explicit_file(self) -> Optional[str]: argument
94 def explicit_list(self) -> Optional[str]: argument
99 def filter(self) -> str: argument
104 def skip_test_lists(self) -> bool: argument
[all …]
Doptions_report.py27 def __str__(self) -> str: argument
30 def to_dict(self) -> Dict[str, object]: argument
47 def report_format(self) -> ReportFormat: argument
56 def detailed_report(self) -> bool: argument
65 def detailed_report_file(self) -> Optional[str]: argument
74 def spec_report(self) -> bool: argument
83 def spec_report_file(self) -> Optional[str]: argument
92 def spec_report_yaml(self) -> Optional[str]: argument
101 def spec_file(self) -> Optional[str]: argument
104 def get_command_line(self) -> str: argument
Doptions_custom.py29 def __str__(self) -> str: argument
32 def to_dict(self) -> Dict[str, object]: argument
43 def suite_name(self) -> Optional[str]: argument
48 def test_root(self) -> Optional[str]: argument
53 def list_root(self) -> Optional[str]: argument
58 def generator(self) -> Optional[str]: argument
63 def generator_options(self) -> List[str]: argument
66 def validate(self) -> None: argument
75 def get_command_line(self) -> str: argument
86 def __validate(self) -> bool: argument
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
Dtest_ets.py34 def __init__(self, test_env: TestEnv, test_path: str, flags: List[str], test_id: str) -> None: argument
54 def is_negative_runtime(self) -> bool: argument
60 def is_negative_compile(self) -> bool: argument
65 def is_compile_only(self) -> bool: argument
70 def is_valid_test(self) -> bool: argument
75 def has_expected(self) -> bool: argument
80 def ark_extra_options(self) -> List[str]: argument
84 def ark_timeout(self) -> int: argument
88 def dependent_files(self) -> Sequence[TestETS]: argument
108 def runtime_args(self) -> List[str]: argument
[all …]
Dets_test_dir.py24 def __init__(self, static_core_root: str, root: Optional[str] = None) -> None: argument
29 def tests(self) -> Path: argument
33 def ets_templates(self) -> Path: argument
37 def ets_func_tests(self) -> Path: argument
41 def stdlib_templates(self) -> Path: argument
45 def ets_func_tests_templates(self) -> Path: argument
49 def gc_stress(self) -> Path: argument
53 def ets_es_checked(self) -> Path: argument
57 def sts_ts_subset(self) -> Path: argument
61 def root(self) -> Path: argument
Dets_test_suite.py49 …def __init__(self, config: Config, work_dir: WorkDir, suite_name: str, default_list_root: str) -> … argument
62 def test_root(self) -> Path: argument
66 def default_list_root_suite_name(self) -> Path: argument
83 def name(self) -> str: argument
87 def list_root(self) -> Path: argument
91 def set_preparation_steps(self) -> None: argument
94 def process(self, force_generate: bool) -> None: argument
117 def __init__(self, config: Config, work_dir: WorkDir, default_list_root: str): argument
123 def default_list_root_suite_name(self) -> Path: argument
126 def set_preparation_steps(self) -> None: argument
[all …]
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
Dplatform.py41 def __init__(self, args: Args) -> None: argument
79 def name(self) -> str: argument
85 def required_tools(self) -> List[str]: argument
91 def langs(self) -> List[str]: argument
96 def template(self) -> Optional[GenSettings]: argument
101 def required_hooks(self) -> List[str]: argument
106 def dev_dir(self) -> Path: argument
111 def sh(self) -> ShellUnix: argument
116 def andb(self) -> ShellDevice: argument
124 def hdc(self) -> ShellDevice: argument
[all …]
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/
Dtest_gc_ark_reporter.py25 def test_generate_report(self): argument
74 def test_generate_report_no_events(self): argument
87 def test_generate_report_with_adjust_time(self): argument
133 def test_generate_report_with_adjust_time_in_future(self): argument
165 def test_generate_report_with_late_gc_pause(self): argument
208 def test_generate_report_with_only_late_gc_pause(self): argument
234 def test_generate_report_with_late_gc_pause_and_adjust(self): argument
282 def test_generate_report_with_late_gc_pause_and_adjust_in_future(self): argument
323 def test_generate_report_with_gc_pause_ending_too_late(self): argument
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
Drunnable_module.py39 def entry_abc(self) -> Path: argument
43 def boot_abc(self) -> list[Path]: argument
46 def check_exists(self): argument
51 …def __init__(self, source_file: Path, panda_file: Path, ast: dict[str, Any] | None = None) -> None: argument
60 def ast(self) -> dict[str, Any]: argument
66 def ast(self, new_ast: dict[str, Any]): argument
70 def disasm_file(self) -> Path: argument
76 def disasm_file(self, file: Path): argument
80 def entry_abc(self): argument
84 def boot_abc(self): argument
[all …]
Ddebug_types.py41 def __init__(self, client: DebuggerClient, meta: SourceMeta | None = None) -> None: argument
46 async def _get_properties(self, id: runtime.RemoteObjectId) -> List[runtime.PropertyDescriptor]: argument
50 async def properties(self, id: runtime.RemoteObjectId) -> "RemoteObjectProperties": argument
65 def remote_object(self, data: runtime.RemoteObject) -> "RemoteObject": argument
73 def __init__(self, locator: Locator, data: T) -> None: argument
78 def client(self): argument
81 def __rich_repr__(self): argument
86 def __init__(self, initlist=None): argument
89 async def mirror_values(self, depth: int): argument
105 def __init__(self, locator: Locator, data: runtime.PropertyDescriptor) -> None: argument
[all …]
Ddebug_client.py41 self, argument
58 async def configure(self, nursery: trio.Nursery): argument
62 async def run_if_waiting_for_debugger(self) -> debugger.Paused: argument
69 async def wait_for(self, event_type: Type[T], buffer_size=1): argument
75 self, argument
84 async def resume(self) -> debugger.Resumed: argument
90 async def resume_and_wait_for_paused(self) -> debugger.Paused: argument
96 async def send_and_wait_for_paused(self, send_arg) -> debugger.Paused: argument
103 self, argument
118 self, argument
[all …]
Ddebug_connection.py34 def __init__(self) -> None: argument
38 def value(self) -> E: argument
44 def value(self, value: E): argument
50 def __init__(self, conn: trio_cdp.CdpConnection, nursery: trio.Nursery) -> None: argument
56 def connection(self) -> trio_cdp.CdpConnection: argument
59 def listen(self, *event_types, buffer_size=10) -> trio.MemoryReceiveChannel: argument
62 async def send(self, cmd: Generator[dict, T, Any]) -> T: argument
66 …async def wait_for(self, event_type: typing.Type[T], buffer_size=10) -> AsyncGenerator[Proxy[T], N… argument
74 self, argument
83 def _listen(self, event_type: T, handler): argument
[all …]
/arkcompiler/runtime_core/static_core/scripts/intrusive-testing/
Dintrusive_instrumentator.py44 def __init__(self): argument
73 def get_src_dir(self): argument
83 def get_clade_file(self): argument
93 def get_test_suite_dir(self): argument
106 def __init__(self, msg, *args): argument
110 def __str__(self): argument
113 def get_err_msg(self): argument
178 def __init__(self, file, index, cl=None, method=None, source=None): argument
186 def __hash__(self): argument
189 def __eq__(self, other): argument
[all …]
/arkcompiler/ets_frontend/test262/
Drun_sunspider.py137 def __init__(self, args): argument
168 def proce_parameters(self): argument
232 def check_compile_mode(self, file): argument
249 def get_all_skip_force_gc_tests(self): argument
258 def gen_dependency_proto(self, dependency): argument
292 def gen_apart_abc(self, dependencies): argument
311 def gen_merged_abc(self, dependencies, file_name_pre, proto_bin_file): argument
352 def gen_abc_for_merge_abc_mode(self, js_file, dependencies): argument
361 def gen_abc_for_script_mode(self, cmd_args, retcode): argument
368 def gen_abc_for_dynamic_import(self, js_file, retcode): argument
[all …]
/arkcompiler/ets_frontend/es2panda/test/
Drunner.py203 def __init__(self, test_path, flags): argument
212 def log_cmd(self, cmd): argument
215 def get_path_to_expected(self): argument
220 def run(self, runner): argument
250 def __init__(self, test_path, flags): argument
254 def parse_options(self): argument
286 def run(self, runner): argument
305 def __init__(self, cmd, compare_str, compare_abc_str, remove_file): argument
317 def log_cmd(self, cmd): argument
320 def run(self, runner): argument
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/code_coverage/
Dcoverage_dir.py24 def __init__(self, general: GeneralOptions, work_dir: Path): argument
29 def html_report_dir(self) -> Path: argument
38 def info_file(self) -> Path: argument
42 def profdata_files_list_file(self) -> Path: argument
46 def profdata_merged_file(self) -> Path: argument
50 def root(self) -> Path: argument
56 def profdata_dir(self) -> Path: argument
65 def coverage_work_dir(self) -> Path: argument
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/test/multiple_config_test/
Dmultiple_config_test.py27 def compare_dicts(self, dict1: Dict[str, Any], dict2: Dict[str, Any]) -> None: argument
45 def test_load_one_config(self) -> None: argument
75 def test_load_independent_configs(self) -> None: argument
112 def test_load_configs_repeated_values(self) -> None: argument
147 def test_load_configs_repeated_values_inverse(self) -> None: argument
182 def test_load_configs_different_types(self) -> None: argument
218 def test_load_configs_merging_lists(self) -> None: argument
256 def test_load_configs_many(self) -> None: argument
298 def test_non_exiting_config(self) -> None: argument
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_build.py32 def __init__(self, config_input, mail_obj): argument
99 def start(self): argument
105 def init(self): argument
124 def add_incremental_code(self, lines): argument
131 def revert_incremental_code(self): argument
134 def reset(self): argument
145 def clean_project(self): argument
152 def get_bytecode_size(self, is_debug): argument
170 def get_build_time(self, report_path, time_dic): argument
200 def collect_preview_build_data(self, report_path): argument
[all …]
/arkcompiler/toolchain/test/autotest/aw/
Dtaskpool.py27 def __init__(self): argument
33 def submit(self, coroutine, callback=None): argument
41 def await_taskpool(self): argument
44 def task_join(self): argument
47 def _task_add(self, item=1): argument
50 def _task_done(self, future): argument
62 def _set_and_run_loop(self, loop): argument
67 async def _stop_loop(self, interval=1): argument
75 def _start_event_loop(self): argument

12345678910>>...13