| /arkcompiler/runtime_core/libabckit/scripts/ |
| D | gen_wrong_mode_tests.rb | 31 domain, api_func = *api_func_raw.split(/::/) 36 # if domain.include? "IsaApiDynamicImpl" 38 if api_func.include? "iCreate" and domain.include? "IsaApiDynamicImpl" 39 if implemented_api_map[domain].nil? 40 implemented_api_map[domain] = [api_func] 42 implemented_api_map[domain].append(api_func) 47 if api_func.include? "iCreate" and domain.include? "IsaApiStaticImpl" 48 if implemented_api_map[domain].nil? 49 implemented_api_map[domain] = [api_func] 51 implemented_api_map[domain].append(api_func) [all …]
|
| D | gen_wrong_imm_tests.rb | 87 domain, api_func = *api_func_raw.split(/::/) 89 …if api_func.include? "iCreate" and domain.include? "IsaApiDynamicImpl" and included_funcs.include?… 90 if implemented_api_map[domain].nil? 91 implemented_api_map[domain] = [api_func] 93 implemented_api_map[domain].append(api_func) 100 implemented_api_map.each_key do |domain| 104 api_funcs_arr = implemented_api_map[domain] 107 puts "#{domain}: #{total_domain_api_funcs}" 110 testfile_fullpath = File.join(abckit_test, "wrong_imm_tests_#{domain}_#{iteration}.cpp")
|
| D | common_gen_tests_api.rb | 22 domain, api_func = *api_func_raw.split(/::/) 28 if implemented_api_map[domain].nil? 29 implemented_api_map[domain] = [api_func] 31 implemented_api_map[domain].append(api_func)
|
| D | gen_null_arg_tests.rb | 29 implemented_api_map.each_key do |domain| 33 api_funcs_arr = implemented_api_map[domain] 36 puts "#{domain}: #{total_domain_api_funcs}" 39 testfile_fullpath = File.join(abckit_test, "null_args_tests_#{domain}_#{iteration}.cpp")
|
| D | gen_wrong_ctx_tests.rb | 358 implemented_api_map.each_key do |domain| 362 api_funcs_arr = implemented_api_map[domain] 365 puts "#{domain}: #{total_domain_api_funcs}" 368 testfile_fullpath = File.join(abckit_test, "wrong_ctx_tests_#{domain}_#{iteration}.cpp")
|
| D | abckit_status.py | 251 def __init__(self, name, domain, sig='', extension=''): argument 253 self.domain = domain 306 domain = '' 326 domain = re.search(r'struct Abckit(.*)\s\{', 328 domain = f'{domain}Impl' 333 domain = match.group(1) 336 domain = match.group(1) 339 domain = match.group(1) 341 domain = match.group(1) 350 apis[f'{domain}::{api_name}'] = API(api_name, domain, signature, extension)
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_out_project/entry/src/main/ets/entryability/ |
| D | EntryAbility.ets | 20 const DOMAIN = 0x0000; 25 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onCreate'); 29 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onDestroy'); 34 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); 38 …hilog.error(DOMAIN, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err… 41 hilog.info(DOMAIN, 'testTag', 'Succeeded in loading the content.'); 47 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onWindowStageDestroy'); 52 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onForeground'); 57 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onBackground');
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_increace_compile/entry/src/main/ets/entryability/ |
| D | EntryAbility.ets | 20 const DOMAIN = 0x0000; 25 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onCreate'); 29 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onDestroy'); 34 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); 38 …hilog.error(DOMAIN, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err… 41 hilog.info(DOMAIN, 'testTag', 'Succeeded in loading the content.'); 47 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onWindowStageDestroy'); 52 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onForeground'); 57 hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onBackground');
|
| /arkcompiler/runtime_core/libabckit/tests/wrong_mode_tests/ |
| D | wrong_mode_tests.cpp.erb | 29 % case domain 35 % getter = "AbckitGet" + domain 38 % domain_var = 'g_' + domain[0].downcase + domain[1...-1] 41 class LibAbcKitWrongModeTests<%=domain%><%=iteration%> : public ::testing::Test {}; 46 // Test: test-kind=api, api=<%= domain %>::<%= api_func %>, 48 TEST_F(LibAbcKitWrongModeTests<%=domain%><%=iteration%>, <%= api_func %>) 50 …helpers_mode::TestMode(<%= domain_var %>-><%= api_func %>, <%= domain.include? "IsaApiDynamicImpl"…
|
| /arkcompiler/runtime_core/libabckit/tests/wrong_ctx_tests/ |
| D | wrong_ctx_tests.cpp.erb | 31 % case domain 37 % getter = "AbckitGet" + domain 40 % domain_var = 'g_' + domain[0].downcase + domain[1...-1] 43 class LibAbcKitWrongCtxTests<%=domain%><%=iteration%> : public ::testing::Test {}; 48 // Test: test-kind=api, api=<%= domain %>::<%= api_func %>, 50 TEST_F(LibAbcKitWrongCtxTests<%=domain%><%=iteration%>, <%= api_func %>)
|
| /arkcompiler/toolchain/tooling/client/manager/ |
| D | domain_manager.h | 21 #include "tooling/client/domain/debugger_client.h" 22 #include "tooling/client/domain/heapprofiler_client.h" 23 #include "tooling/client/domain/profiler_client.h" 24 #include "tooling/client/domain/runtime_client.h" 25 #include "tooling/client/domain/test_client.h" 44 void SetDomainById(uint32_t id, std::string domain) in SetDomainById() argument 46 idDomainMap_.emplace(id, domain); in SetDomainById()
|
| D | domain_manager.cpp | 44 std::string domain; in DispatcherReply() local 49 domain = GetDomainById(id); in DispatcherReply() 65 domain = wholeMethod.substr(0, indexPoint); in DispatcherReply() 68 if (domain == "HeapProfiler") { in DispatcherReply() 70 } else if (domain == "Profiler") { in DispatcherReply() 72 } else if (domain == "Runtime") { in DispatcherReply() 74 } else if (domain == "Debugger") { in DispatcherReply()
|
| /arkcompiler/runtime_core/libabckit/tests/wrong_imm_tests/ |
| D | wrong_imm_tests.cpp.erb | 31 % case domain 37 % getter = "AbckitGet" + domain 40 % domain_var = 'g_' + domain[0].downcase + domain[1...-1] 43 class LibAbcKitWrongImmTests<%=domain%><%=iteration%> : public ::testing::Test {}; 54 // Test: test-kind=api, api=<%= domain %>::<%= api_func %>, 56 TEST_F(LibAbcKitWrongImmTests<%=domain%><%=iteration%>, <%= api_func %>)
|
| /arkcompiler/runtime_core/libabckit/tests/null_args_tests/ |
| D | null_args_tests.cpp.erb | 33 % case domain 39 % getter = "AbckitGet" + domain 42 % domain_var = 'g_' + domain[0].downcase + domain[1...-1] 45 class LibAbcKitNullptrTests<%=domain%><%=iteration%> : public ::testing::Test {}; 50 // Test: test-kind=api, api=<%= domain %>::<%= api_func %>, 52 TEST_F(LibAbcKitNullptrTests<%=domain%><%=iteration%>, <%= api_func %>)
|
| /arkcompiler/toolchain/test/autotest/aw/api/ |
| D | protocol_api.py | 17 Description: Python Protocol Domain Interfaces 28 self.domain = self.class_name[:-4] 56 domain, protocol = res[0], res[1] 57 if domain != self.domain: 58 … raise AssertionError("{} parse protocol name error: protocol_name {} has the wrong domain"
|
| /arkcompiler/toolchain/tooling/client/ |
| D | BUILD.gn | 32 "domain/debugger_client.cpp", 33 "domain/heapprofiler_client.cpp", 34 "domain/profiler_client.cpp", 35 "domain/runtime_client.cpp", 36 "domain/test_client.cpp",
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_increace_compile/entry/src/main/ets/entrybackupability/ |
| D | EntryBackupAbility.ets | 19 const DOMAIN = 0x0000; 23 hilog.info(DOMAIN, 'testTag', 'onBackup ok'); 28 hilog.info(DOMAIN, 'testTag', 'onRestore ok %{public}s', JSON.stringify(bundleVersion));
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_out_project/entry/src/main/ets/entrybackupability/ |
| D | EntryBackupAbility.ets | 19 const DOMAIN = 0x0000; 23 hilog.info(DOMAIN, 'testTag', 'onBackup ok'); 28 hilog.info(DOMAIN, 'testTag', 'onRestore ok %{public}s', JSON.stringify(bundleVersion));
|
| /arkcompiler/runtime_core/static_core/verification/gen/templates/ |
| D | abs_int_inl_compat_checks.h.erb | 53 % checks.domains.each_pair do |_, domain| 54 % if domain.new_enum 55 enum class <%= domain.new_enum %> { 56 % domain.values.each do |value|
|
| /arkcompiler/toolchain/tooling/ |
| D | dispatcher.cpp | 74 LOG_DEBUGGER(DEBUG) << "id: " << callId_ << ", domain: " << domain_ << ", method: " << method_; in DispatchRequest() 191 const std::string &domain = request.GetDomain(); in Dispatch() local 192 auto dispatcher = dispatchers_.find(domain); in Dispatch() 196 if (domain == "Test") { in Dispatch() 203 LOG_DEBUGGER(ERROR) << "unknown domain: " << domain; in Dispatch()
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_increace_compile/library/src/main/ets/components/ |
| D | MainPage.ets | 19 const DOMAIN = 0x0000; 33 hilog.info(DOMAIN, 'testTag', 'Test NAPI 2 + 3 = %{public}d', testNapi.add(2, 3));
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_out_project/out_hsp/src/main/ets/pages/ |
| D | Index.ets | 19 const DOMAIN = 0x0000; 34 hilog.info(DOMAIN, 'testTag', 'Test NAPI 2 + 3 = %{public}d', testNapi.add(2, 3));
|
| /arkcompiler/toolchain/tooling/test/client_utils/ |
| D | test_util.h | 21 #include "tooling/client/domain/debugger_client.h" 22 #include "tooling/client/domain/runtime_client.h"
|
| /arkcompiler/toolchain/tooling/client/utils/ |
| D | cli_command.h | 25 #include "tooling/client/domain/heapprofiler_client.h" 26 #include "tooling/client/domain/profiler_client.h"
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/ |
| D | BUILDING.md | 11 git config --global user.email "<your_email@domain.com>" 47 git config --global user.email "<your_email@domain.com>"
|