Home
last modified time | relevance | path

Searched refs:action (Results 1 - 25 of 58) sorted by relevance

123

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
H A Dcli_options.py68 '--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 Dtest_util.cpp115 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 Dtest_util.h69 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 Djs_remote_promise_resolver.cpp26 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 Djs_remote_promise_resolver.h35 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 Dgenerate_js_bytecode.py37 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 Dsignal_handler_test.cpp85 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 Dtest_runner.py39 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 Dgenerate_js_bytecode.py37 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 Dcli.py64 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 DmodifierAccessValid.cpp26 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 DarithmeticOperationValid.cpp29 if (auto [decision, action] = CheckCompound(ctx, ast); action == CheckAction::SKIP_SUBTREE) { in operator ()()
30 return {decision, action}; in operator ()()
H A DnodeHasType.cpp44 if (auto [decision, action] = CheckCompound(ctx, ast); action == CheckAction::SKIP_SUBTREE) { in operator ()()
45 return {decision, action}; in operator ()()
H A DASTVerifier.h119 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 Dets_remote_promise_resolver.h37 * @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 Dlinker_driver.py85 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 Dentry.py43 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 Druntest.py40 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 Dfind_sdk.py39 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 Dget_concurrent_links.py74 action="store",
78 action="store",
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Ddebug_inf.cpp43 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 Dsampling_profiler.cpp495 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 Drun_test262.py49 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 Dhelpers.h132 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 Dcode_style_check.py34 '--reformat', action="store_true", help='reformat files.')
36 '--proc-count', type=int, action='store', dest='proc_count',

Completed in 10 milliseconds

123