/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/ |
H A D | cli_options.py | 68 '--test262', '-t', action='store_true', dest='test262', 72 '--hermes', action='store_true', dest='hermes', 80 '--ets-system-tests', action='store_true', dest='system', 84 '--ets-func-tests', action='store_true', dest='ets_func_tests', 87 '--ets-runtime', action='store_true', dest='ets_runtime', 91 '--ets-gc-stress', action='store_true', dest='ets_gc_stress', 95 '--ets-cts', action='store_true', dest='ets_cts', 98 '--ets-es-checked', action='store_true', dest='ets_es_checked', 101 '--ets-custom', action='store_true', dest='ets_custom', 104 '--sts-ts-subset', action [all...] |
/arkcompiler/toolchain/tooling/test/client_utils/ |
H A D | test_util.cpp | 115 for (const auto &action: testAction) { in ForkSocketClient() 116 LOG_DEBUGGER(INFO) << "message: " << action.message; in ForkSocketClient() 118 if (action.action == SocketAction::SEND) { in ForkSocketClient() 119 std::vector<std::string> cliCmdStr = Utils::SplitString(action.message, " "); in ForkSocketClient() 123 ASSERT(action.action == SocketAction::RECV); in ForkSocketClient() 125 HandleAcceptanceMessages(action, client, recv, success); in ForkSocketClient() 126 SendMessage(action, recv); in ForkSocketClient() 128 LOG_DEBUGGER(INFO) << "rule: " << action in ForkSocketClient() 144 HandleAcceptanceMessages(ActionInfo action, WebSocketClient &client, std::string &recv, bool &success) HandleAcceptanceMessages() argument 180 SendMessage(ActionInfo action, std::string recv) SendMessage() argument [all...] |
H A D | test_util.h | 69 static void HandleAcceptanceMessages(ActionInfo action, WebSocketClient &client, std::string &recv, bool &success); 70 static void SendMessage(ActionInfo action, std::string recv);
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ |
H A D | js_remote_promise_resolver.cpp | 26 void JsRemotePromiseResolver::ResolveViaCallback(EtsObject *resolveValue, Action action) in ResolveViaCallback() argument 31 poster_->Post(ResolveRemotePromise, deferred_, resolveValue, action); in ResolveViaCallback() 34 void JsRemotePromiseResolver::ResolveInPlace(EtsObject *resolveValue, Action action) in ResolveInPlace() argument 39 ResolveRemotePromise(deferred_, resolveValue, action); in ResolveInPlace() 43 void JsRemotePromiseResolver::ResolveRemotePromise(napi_deferred deferred, EtsObject *resolveValue, Action action) in ResolveRemotePromise() argument 47 switch (action) { in ResolveRemotePromise()
|
H A D | js_remote_promise_resolver.h | 35 void ResolveViaCallback(EtsObject *resolveValue, Action action) override; 36 void ResolveInPlace(EtsObject *resolveValue, Action action) override; 39 static void ResolveRemotePromise(napi_deferred deferred, EtsObject *resolveValue, Action action);
|
/arkcompiler/toolchain/build/scripts/ |
H A D | generate_js_bytecode.py | 37 parser.add_argument("--debug", action='store_true', 39 parser.add_argument("--module", action='store_true', 41 parser.add_argument("--commonjs", action='store_true', 43 parser.add_argument("--merge-abc", action='store_true', 45 parser.add_argument("--generate-patch", action='store_true',
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | signal_handler_test.cpp | 85 struct sigaction action {}; in SamplerThreadEntry() struct 86 action.sa_handler = SigProfSamplingProfilerHandler; in SamplerThreadEntry() 87 action.sa_flags = 0; in SamplerThreadEntry() 89 sigemptyset(&action.sa_mask); in SamplerThreadEntry() 91 sigaddset(&action.sa_mask, SIGPROF); in SamplerThreadEntry() 95 if (sigaction(SIGPROF, &action, &oldAction) == -1) { in SamplerThreadEntry()
|
/arkcompiler/ets_frontend/ets2panda/scripts/ |
H A D | test_runner.py | 39 parser.add_argument('-rt', '--runtime', action='store_true', dest='runtime', help='Runtime tests') 40 parser.add_argument('-r', '--regression', action='store_true', dest='regression', help='Regression tests') 41 parser.add_argument('-cts', '--cts', action='store_true', dest='cts', help='CTS tests') 42 parser.add_argument('-f', '--func', action='store_true', dest='functional', help='Functional tests') 43 parser.add_argument('-t', '--test262', action='store_true', dest='test262', help='Test262 tests') 44 parser.add_argument('--all', action='store_true', dest='all', help='Run the listed benchmarks')
|
/arkcompiler/ets_frontend/es2panda/scripts/ |
H A D | generate_js_bytecode.py | 37 parser.add_argument("--debug", action='store_true', 39 parser.add_argument("--module", action='store_true', 41 parser.add_argument("--commonjs", action='store_true', 43 parser.add_argument("--merge-abc", action='store_true', 45 parser.add_argument("--generate-patch", action='store_true', 59 parser.add_argument("--enable-annotations", action='store_true',
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | cli.py | 64 type=str, action="append", help="aot-compiler options") 119 parser.add_argument('-A', '--aot-skip-libs', action='store_true', 121 parser.add_argument('-g', '--enable-gc-logs', action='store_true', 123 parser.add_argument('--dry-run', action='store_true', 128 parser.add_argument('--report-json-compact', action='store_true', 141 parser.add_argument('--aot-stats', action='store_true', 143 parser.add_argument('--jit-stats', action='store_true', 152 parser.add_argument('--full', action='store_true', 162 parser.add_argument('--compare', action='store_true', 185 self.add_argument('--abort-on-fail', action [all...] |
/arkcompiler/ets_frontend/ets2panda/ast_verifier/ |
H A D | modifierAccessValid.cpp | 26 if (auto [decision, action] = HandleMethodExpression(ctx, ast); decision == CheckDecision::INCORRECT) { in operator ()() 27 return {decision, action}; in operator ()() 29 if (auto [decision, action] = HandleCallExpression(ctx, ast); decision == CheckDecision::INCORRECT) { in operator ()() 30 return {decision, action}; in operator ()()
|
H A D | arithmeticOperationValid.cpp | 29 if (auto [decision, action] = CheckCompound(ctx, ast); action == CheckAction::SKIP_SUBTREE) { in operator ()() 30 return {decision, action}; in operator ()()
|
H A D | nodeHasType.cpp | 44 if (auto [decision, action] = CheckCompound(ctx, ast); action == CheckAction::SKIP_SUBTREE) { in operator ()() 45 return {decision, action}; in operator ()()
|
H A D | ASTVerifier.h | 119 const auto [decision, action] = func(ctx, child); in RecursiveInvariant() 123 if (action == CheckAction::SKIP_SUBTREE) { in RecursiveInvariant()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_remote_promise_resolver.h | 37 * @param action: use Action::Resolve if you want to resolve remote promise, otherwise use Action::Reject 39 virtual void ResolveViaCallback(EtsObject *resolveValue, Action action) = 0; 46 * @param action: use Action::Resolve if you want to resolve remote promise, otherwise use Action::Reject 48 virtual void ResolveInPlace(EtsObject *resolveValue, Action action) = 0;
|
/arkcompiler/toolchain/build/toolchain/mac/ |
H A D | linker_driver.py | 85 for action in _LINKER_DRIVER_ACTIONS: 86 name = action[0] 90 # If a linker driver action failed, remove all the outputs to make the 100 name and unary lambda to invoke for that linker driver action. 107 0: The driver action name, as in _LINKER_DRIVER_ACTIONS. 109 main(). The lambda should call the linker driver action that 111 action. 119 (name, action) = driver_action 122 lambda full_args: action(sub_arg[len(name):], full_args)) 128 """Linker driver action fo [all...] |
/arkcompiler/ets_frontend/test/scripts/ |
H A D | entry.py | 43 parser.add_argument('--skipDownloadSdk', dest='skip_download_sdk', action='store_true', default=False, 45 parser.add_argument('--skipDownloadDayu', dest='skip_download_dayu', action='store_true', default=False,
|
/arkcompiler/ets_runtime/test/ |
H A D | runtest.py | 40 parser.add_argument('-a', '--all', action='store_true', help='run all test cases on path') 49 parser.add_argument('-d', '--debug', action='store_true', help='run on debug mode') 50 parser.add_argument('--arm64', action='store_true', help='run on arm64 platform') 51 parser.add_argument('--device', action='store_true', help='run on device') 53 parser.add_argument('-m', '--module', action='store_true', help='frontend compile with module') 57 parser.add_argument('-i', '--info', action='store_true', help='add log level of info to args') 58 parser.add_argument('-c', '--clean', action='store_true', help='clean output files') 59 parser.add_argument('--npm', action='store_true', help='npm install') 60 parser.add_argument('--bt', dest='builtin', action='store_true', help='aot compile with lib_ark_builtins.d.ts') 61 parser.add_argument('--pgo', action [all...] |
/arkcompiler/toolchain/build/misc/mac/ |
H A D | find_sdk.py | 39 action="store_true", dest="verify", default=False, 42 action="store", type="string", dest="sdk_path", 46 action="store_true", dest="print_sdk_path", default=False,
|
/arkcompiler/toolchain/build/toolchain/ |
H A D | get_concurrent_links.py | 74 action="store", 78 action="store",
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | debug_inf.cpp | 43 uint32_t action = CODE_NOACTION; member 142 metaInfo->action = CODE_ADDED; in AddCodeMetaInfoImpl() 176 metaInfo->action = CODE_REMOVE; in DelCodeMetaInfoImpl()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/sampler/ |
H A D | sampling_profiler.cpp | 495 struct sigaction action {}; in SamplerThreadEntry() struct 496 action.sa_sigaction = &SigProfSamplingProfilerHandler; in SamplerThreadEntry() 497 action.sa_flags = SA_SIGINFO | SA_ONSTACK; in SamplerThreadEntry() 499 sigemptyset(&action.sa_mask); in SamplerThreadEntry() 501 sigaddset(&action.sa_mask, SIGPROF); in SamplerThreadEntry() 505 if (sigaction(SIGPROF, &action, &oldAction) == -1) { in SamplerThreadEntry()
|
/arkcompiler/ets_frontend/test262/ |
H A D | run_test262.py | 49 parser.add_argument('--es51', action='store_true', 90 parser.add_argument('--ci-build', action='store_true', 92 parser.add_argument('--esnext', action='store_true', 98 parser.add_argument('--babel', action='store_true', 100 parser.add_argument('--skip-list',action='append',dest='skip_list', 110 parser.add_argument('--ark-aot', action='store_true', 141 parser.add_argument('--run-pgo', action='store_true', 143 parser.add_argument('--enable-litecg', action='store_true', 145 parser.add_argument('--run-jit', action='store_true', 147 parser.add_argument('--run-baseline-jit', action [all...] |
/arkcompiler/ets_frontend/ets2panda/evaluate/ |
H A D | helpers.h | 132 varbinder::Scope *scope, ir::AstNode *parentClass, F &&action) in DoScopedAction() 159 runInScope(std::forward<F>(action)); in DoScopedAction() 164 runInScope(std::forward<F>(action)); in DoScopedAction() 131 DoScopedAction(checker::ETSChecker *checker, varbinder::ETSBinder *varBinder, parser::Program *program, varbinder::Scope *scope, ir::AstNode *parentClass, F &&action) DoScopedAction() argument
|
/arkcompiler/runtime_core/static_core/scripts/code_style/ |
H A D | code_style_check.py | 34 '--reformat', action="store_true", help='reformat files.') 36 '--proc-count', type=int, action='store', dest='proc_count',
|