Home
last modified time | relevance | path

Searched defs:args (Results 1 – 25 of 289) sorted by relevance

12345678910>>...12

/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Dcalling_methods_test_helper.h35 std::va_list args; in CallVoidMethodListHelper() local
42 std::va_list args; in CallObjectMethodListHelper() local
49 std::va_list args; in CallBooleanMethodListHelper() local
56 std::va_list args; in CallByteMethodListHelper() local
63 std::va_list args; in CallCharMethodListHelper() local
70 std::va_list args; in CallShortMethodListHelper() local
77 std::va_list args; in CallIntMethodListHelper() local
84 std::va_list args; in CallLongMethodListHelper() local
91 std::va_list args; in CallFloatMethodListHelper() local
98 std::va_list args; in CallDoubleMethodListHelper() local
[all …]
/arkcompiler/ets_frontend/test262/
Drun_test262.py139 def excuting_npm_install(args): argument
170 def init(args): argument
183 def get_all_skip_tests(args): argument
224 def __init__(self, args): argument
504 def run_test262_prepare(args): argument
519 def run_test262_mode(args): argument
525 def get_execute_arg(args): argument
535 def get_host_path_type(args): argument
544 def get_timeout(args, threads): argument
551 def get_threads(args): argument
[all …]
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DregAllocator.h43 [[nodiscard]] T *Alloc(const ir::AstNode *const node, Args &&...args) in Alloc()
49 void Add(const ir::AstNode *const node, Args &&...args) in Add()
72 void Emit(const ir::AstNode *const node, Args &&...args) in Emit()
105 void Emit(const ir::AstNode *const node, Args &&...args) in Emit()
123 …t(const ir::AstNode *const node, const VReg rangeStart, const std::size_t argCount, Args &&...args) in Emit()
/arkcompiler/ets_runtime/ecmascript/
Djs_arguments.cpp24 bool JSArguments::GetOwnProperty(JSThread *thread, const JSHandle<JSArguments> &args, in GetOwnProperty()
44 bool JSArguments::DefineOwnProperty(JSThread *thread, const JSHandle<JSArguments> &args, in DefineOwnProperty()
57 OperationResult JSArguments::GetProperty(JSThread *thread, const JSHandle<JSArguments> &args, in GetProperty()
66 bool JSArguments::SetProperty(JSThread *thread, const JSHandle<JSArguments> &args, const JSHandle<J… in SetProperty()
74 bool JSArguments::DeleteProperty(JSThread *thread, const JSHandle<JSArguments> &args, in DeleteProperty()
/arkcompiler/ets_runtime/test/moduletest/callframe/
Dcallframe.js51 function foo4(a, ...args) {
56 function foo5(a, ...args) {
64 function foo6(a, ...args) {
71 function foo7(a, ...args) {
/arkcompiler/runtime_core/static_core/runtime/tests/
Dinvokation_helper.h44 …e void WriteArgImpl(arch::ArgWriter<RUNTIME_ARCH> *writer, size_t nfloats, float arg, Args... args) in WriteArgImpl()
51 inline void WriteArgImpl(arch::ArgWriter<RUNTIME_ARCH> *writer, size_t nfloats, T arg, Args... args) in WriteArgImpl()
80 inline void WriteArg(arch::ArgWriter<RUNTIME_ARCH> *writer, T arg, Args... args) in WriteArg()
101 inline T InvokeEntryPoint(Method *method, Args... args) in InvokeEntryPoint()
157 coretypes::TaggedValue InvokeDynEntryPoint(Method *method, uint32_t numArgs, Args... args) in InvokeDynEntryPoint()
Dexception_test.cpp165 std::vector<Value> args; in TEST_F() local
248 std::vector<Value> args; in TEST_F() local
334 std::vector<Value> args; in TEST_F() local
420 std::vector<Value> args; in TEST_F() local
507 std::vector<Value> args; in TEST_F() local
594 std::vector<Value> args; in TEST_F() local
677 std::vector<Value> args; in TEST_F() local
760 std::vector<Value> args; in TEST_F() local
845 std::vector<Value> args; in TEST_F() local
930 std::vector<Value> args; in TEST_F() local
[all …]
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/
DNapiLog.js50 function recordLog(lev, ...args) {
62 NapiLog.logError = function (...args) {
66 NapiLog.logDebug = function (...args) {
70 NapiLog.logInfo = function (...args) {
/arkcompiler/ets_frontend/es2panda/compiler/core/
DregAllocator.h64 void Emit(const ir::AstNode *node, Args &&... args) in Emit()
71 void EmitWithType(const ir::AstNode *node, int64_t typeIndex, Args &&... args) in EmitWithType()
78 void EmitRange(const ir::AstNode *node, size_t argCount, Args &&... args) in EmitRange()
130 T *Alloc(const ir::AstNode *node, Args &&... args) in Alloc()
140 void Add(ArenaList<IRNode *> &insns, const ir::AstNode *node, Args &&... args) in Add()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
Dcl_parser.cpp55 RetCode CommandLine::ParseJoinedOption(size_t &argsIndex, const std::deque<std::string_view> &args,… in ParseJoinedOption()
76 RetCode CommandLine::ParseOption(size_t &argsIndex, const std::deque<std::string_view> &args, KeyAr… in ParseOption()
92 RetCode CommandLine::ParseEqualOption(size_t &argsIndex, const std::deque<std::string_view> &args, … in ParseEqualOption()
115 RetCode CommandLine::ParseSimpleOption(size_t &argsIndex, const std::deque<std::string_view> &args,… in ParseSimpleOption()
131 RetCode CommandLine::HandleInputArgs(const std::deque<std::string_view> &args, OptionCategory &optC… in HandleInputArgs()
193 std::deque<std::string_view> args; in Parse() local
208 std::deque<std::string_view> args; in Parse() local
Dcl_option_parser.cpp47 std::pair<RetCode, size_t> ExtractValue(size_t argsIndex, const std::deque<std::string_view> &args, in ExtractValue()
92 RetCode Option<bool>::ParseBool(size_t &argsIndex, const std::deque<std::string_view> &args) in ParseBool()
105 …ode Option<std::string>::ParseString(size_t &argsIndex, const std::deque<std::string_view> &args, … in ParseString()
150 RetCode Option<T>::ParseDigit(size_t &argsIndex, const std::deque<std::string_view> &args, KeyArg &… in ParseDigit()
/arkcompiler/ets_frontend/ts2panda/scripts/
Dts2abc.js43 function callJs2abc(args) { argument
55 let args = process.argv.splice(2); variable
/arkcompiler/ets_frontend/es2panda/scripts/
Dts2abc.js43 function callEs2abc(args) { argument
55 let args = process.argv.splice(2); variable
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi_native_interface.cpp85 static ArgVector<Value> GetArgValues(ScopedManagedCodeFix *s, EtsMethod *method, va_list args, ets_… in GetArgValues()
131 …ic ArgVector<Value> GetArgValues(ScopedManagedCodeFix *s, EtsMethod *method, const ets_value *args, in GetArgValues()
219 static NapiType GeneralMethodCall(EtsEnv *env, ets_object obj, ets_method methodId, Args args) in GeneralMethodCall()
720 …tic ets_object CallObjectMethodList(EtsEnv *env, ets_object obj, ets_method methodId, va_list args) in CallObjectMethodList()
732 va_list args; in CallObjectMethod() local
740 const ets_value *args) in CallObjectMethodArray()
749 …c ets_boolean CallBooleanMethodList(EtsEnv *env, ets_object obj, ets_method methodId, va_list args) in CallBooleanMethodList()
761 va_list args; in CallBooleanMethod() local
769 const ets_value *args) in CallBooleanMethodArray()
778 … static ets_byte CallByteMethodList(EtsEnv *env, ets_object obj, ets_method methodId, va_list args) in CallByteMethodList()
[all …]
/arkcompiler/runtime_core/static_core/dprof/converter/
Dmain.cpp31 bool Parse(panda::Span<const char *> args) in Parse()
68 int Main(panda::Span<const char *> args) in Main()
103 panda::Span<const char *> args(argv, argc); in main() local
/arkcompiler/ets_runtime/test/regresstest/
Drun_regress_test.py36 def init_log_file(args): argument
61 def check_args(args): argument
178 def __init__(self, args, skip_test_cases): argument
289 def run_regress_test_prepare(args): argument
390 def run_test_case_dir(args, test_abc_files, force_gc_files, timeout=RegressTestConfig.DEFAULT_TIMEO… argument
422 def run_regress_test_case(args): argument
450 def main(args): argument
461 def print_result(args, pass_count, fail_count, end_time, start_time): argument
/arkcompiler/toolchain/build/prebuilts_download/
Dprebuilts_download.py65 def _check_sha256_by_mark(args, check_url, code_dir, unzip_dir, unzip_filename): argument
83 def _uncompress(args, src_file, code_dir, unzip_dir, unzip_filename, mark_file_path): argument
93 def _copy_url(args, task_id, url, local_file, code_dir, unzip_dir, unzip_filename, mark_file_path): argument
114 def _hwcloud_download(args, config, bin_dir, code_dir): argument
/arkcompiler/ets_frontend/testTs/
Drun_testTs.py112 def run_test_machine(args): argument
283 def test_instype(args): argument
333 def main(args): argument
/arkcompiler/runtime_core/disassembler/tests/
Dgen_pa_file.py174 def gen_module_and_dynamicimport_abc(args, tc, tc_dir, out_dir): argument
244 def gen_abc(args): argument
294 def gen_pa(args): argument
360 def check_pa(args): argument
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/test_intrins/
Dtest_intrins.js23 exports.StringifyArgs = function (...args) { return args.toString() }
25 exports.ApplyArgs = function (fn, ...args) { return fn(...args) }
27 exports.Log = function (...args) { console.log(...args) }
/arkcompiler/ets_runtime/ecmascript/dfx/tracing/
Dtracing.cpp99 std::string args = "{\"data\":{\"frameTreeNodeId\":1,\"frames\":[{"; in TraceEventRecordTracingStart() local
125 …std::string args = "{\"data\":{\"jsHeapSizeUsed\":" + std::to_string(DFXJSNApi::GetHeapUsedSize(vm… in TraceEventRecordMemory() local
134 std::string args = "{\"data\":{\"startTime\":" + std::to_string(profileInfo->startTime) + "}}"; in TraceEventRecordCpuProfilerStart() local
157 struct TraceEventCpuProfileArg args; in TraceEventRecordCpuProfiler() local
186 std::string args = "{\"data\":{\"cpuProfile\":{"; in TraceEventUpdateCpuProfiler() local
257 std::string args = "{\"data\":{\"endTime\":" + std::to_string(profileInfo->stopTime) + "}}"; in TraceEventRecordCpuProfilerEnd() local
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/
Dstring_logger.rb22 def log(level, *args)
45 def log(_level, *args)
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/reporters/
Dstring_logger.rb22 def log(level, *args)
45 def log(_level, *args)
/arkcompiler/ets_runtime/ecmascript/compiler/
Dhcr_circuit_builder.cpp22 …Builder::NoLabelCallRuntime(GateRef glue, GateRef depend, size_t index, std::vector<GateRef> &args, in NoLabelCallRuntime()
56 …ircuitBuilder::CallStub(GateRef glue, GateRef hirGate, int index, const std::vector<GateRef> &args, in CallStub()
74 … CircuitBuilder::CallBuiltinRuntime(GateRef glue, GateRef depend, const std::vector<GateRef> &args, in CallBuiltinRuntime()
95 …er::CallBuiltinRuntimeWithNewTarget(GateRef glue, GateRef depend, const std::vector<GateRef> &args, in CallBuiltinRuntimeWithNewTarget()
114 const std::vector<GateRef> &args, GateRef hirGate, const char* comment) in Call()
163 …teRef CircuitBuilder::CallBCHandler(GateRef glue, GateRef target, const std::vector<GateRef> &args, in CallBCHandler()
175 GateRef CircuitBuilder::CallBuiltin(GateRef glue, GateRef target, const std::vector<GateRef> &args, in CallBuiltin()
187 …CircuitBuilder::CallBuiltinWithArgv(GateRef glue, GateRef target, const std::vector<GateRef> &args, in CallBuiltinWithArgv()
199 …eRef CircuitBuilder::CallBCDebugger(GateRef glue, GateRef target, const std::vector<GateRef> &args, in CallBCDebugger()
211 …cuitBuilder::CallRuntime(GateRef glue, int index, GateRef depend, const std::vector<GateRef> &args, in CallRuntime()
[all …]
/arkcompiler/runtime_core/static_core/verification/util/
Dset_operations.h35 PackElementT<0, Args...> SetIntersection(const Args &...args) in SetIntersection()
72 PackElementT<0, Args...> SetUnion(const Args &...args) in SetUnion()
97 Arg SetDifference(const Arg &arg, const Args &...args) in SetDifference()

12345678910>>...12