Home
last modified time | relevance | path

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

12345678910>>...27

/arkcompiler/ets_frontend/ets2panda/util/
DdiagnosticEngine.h72 Suggestion *CreateSuggestion(T &&...args) in CreateSuggestion()
78 void LogDiagnostic(T &&...args) in LogDiagnostic()
90 void LogSyntaxError(T &&...args) in LogSyntaxError()
95 void LogSemanticError(T &&...args) in LogSemanticError()
100 void LogFatalError(T &&...args) in LogFatalError()
107 [[noreturn]] void ThrowSyntaxError(T &&...args) in ThrowSyntaxError()
112 [[noreturn]] void ThrowSemanticError(T &&...args) in ThrowSemanticError()
117 [[noreturn]] void ThrowFatalError(T &&...args) in ThrowFatalError()
135 DIAGNOSTIC *CreateDiagnostic(T &&...args) in CreateDiagnostic()
144 void LogDiagnostic(T &&...args) in LogDiagnostic()
[all …]
/arkcompiler/ets_frontend/ets2panda/parser/
DETSparserTemplates.h58 ir::Expression *CreateFormattedExpression(std::string_view const sourceCode, Args &&...args) in CreateFormattedExpression()
67 …ector<ir::Statement *> CreateFormattedStatements(std::string_view const sourceCode, Args &&...args) in CreateFormattedStatements()
76 …ent *CreateFormattedClassDeclaration(std::string_view sourceCode, bool allowStatic, Args &&...args) in CreateFormattedClassDeclaration()
86 Args &&...args) in CreateFormattedClassElement()
93 ir::AstNode *CreateFormattedClassFieldDefinition(std::string_view const sourceCode, Args &&...args) in CreateFormattedClassFieldDefinition()
103 ir::ClassDefinitionModifiers modifiers, Args &&...args) in CreateFormattedClassElement()
112 ir::AstNode *CreateFormattedClassMethodDefinition(std::string_view const sourceCode, Args &&...args) in CreateFormattedClassMethodDefinition()
121 ir::Statement *CreateFormattedTopLevelStatement(std::string_view sourceCode, Args &&...args) in CreateFormattedTopLevelStatement()
130 ir::TypeNode *CreateFormattedTypeAnnotation(std::string_view const sourceCode, Args &&...args) in CreateFormattedTypeAnnotation()
139 ir::Statement *CreateFormattedStatement(std::string_view const sourceCode, Args &&...args) in CreateFormattedStatement()
/arkcompiler/ets_frontend/test262/
Drun_test262.py184 def excuting_npm_install(args): argument
215 def init(args): argument
229 def get_all_skip_tests(args): argument
282 def __init__(self, args): argument
660 def run_test262_mode(args): argument
666 def get_execute_arg(args) -> list[str]: argument
681 def get_host_path_type(args): argument
690 def get_timeout(args, threads): argument
697 def get_threads(args): argument
704 def get_host_args_of_product_name(args): argument
[all …]
/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/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.cpp22 bool JSArguments::GetOwnProperty(JSThread *thread, const JSHandle<JSArguments> &args, in GetOwnProperty()
42 bool JSArguments::DefineOwnProperty(JSThread *thread, const JSHandle<JSArguments> &args, in DefineOwnProperty()
55 OperationResult JSArguments::GetProperty(JSThread *thread, const JSHandle<JSArguments> &args, in GetProperty()
64 bool JSArguments::SetProperty(JSThread *thread, const JSHandle<JSArguments> &args, const JSHandle<J… in SetProperty()
72 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()
103 T InvokeEntryPoint(Method *method, Args... args) in InvokeEntryPoint()
131 coretypes::TaggedValue InvokeDynEntryPoint(Method *method, uint32_t numArgs, Args... args) in InvokeDynEntryPoint()
/arkcompiler/ets_runtime/test/regresstest/
Drun_regress_test.py45 def init_log_file(args): argument
110 def check_ark_frontend_binary(args) -> bool: argument
117 def check_frontend_library(args) -> bool: argument
130 def check_ark_tool(args) -> bool: argument
147 def check_ark_aot(args) -> bool: argument
164 def check_stub_path(args) -> bool: argument
182 def check_ignore_list(args) -> bool: argument
191 def check_args(args): argument
298 def __init__(self, args, name): argument
307 def run(args, test_reports: Optional[List[TestReport]] = None) -> List[TestReport]: argument
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/class_ops/
Dclass_call_static_method_by_name_void_test.cpp35 va_list args {}; in TestFuncV() local
55 ani_value args[2U]; in TestCombineScene() local
70 ani_value args[2]; in TEST_F() local
122 ani_value args[2]; in TEST_F() local
134 ani_value args[2]; in TEST_F() local
161 ani_value args[2U]; in TEST_F() local
189 ani_value args[2U]; in TEST_F() local
215 ani_value args[2U]; in TEST_F() local
247 ani_value args[2U]; in TEST_F() local
268 ani_value args[2U]; in TEST_F() local
[all …]
Dclass_call_static_method_by_name_double_test.cpp38 va_list args {}; in TestFuncV() local
53 ani_value args[2U]; in TestCombineScene() local
87 ani_value args[ARG_COUNT]; in TEST_F() local
125 ani_value args[ARG_COUNT]; in TEST_F() local
138 ani_value args[ARG_COUNT]; in TEST_F() local
154 ani_value args[ARG_COUNT]; in TEST_F() local
181 ani_value args[ARG_COUNT]; in TEST_F() local
206 ani_value args[ARG_COUNT]; in TEST_F() local
229 ani_value args[ARG_COUNT]; in TEST_F() local
257 ani_value args[ARG_COUNT]; in TEST_F() local
[all …]
Dclass_call_static_method_by_name_float_test.cpp38 va_list args {}; in TestFuncV() local
54 ani_value args[2U]; in TestCombineScene() local
89 ani_value args[ARG_COUNT]; in TEST_F() local
131 ani_value args[ARG_COUNT]; in TEST_F() local
144 ani_value args[ARG_COUNT]; in TEST_F() local
160 ani_value args[ARG_COUNT]; in TEST_F() local
187 ani_value args[ARG_COUNT]; in TEST_F() local
212 ani_value args[ARG_COUNT]; in TEST_F() local
235 ani_value args[ARG_COUNT]; in TEST_F() local
264 ani_value args[ARG_COUNT]; in TEST_F() local
[all …]
Dclass_call_static_method_by_name_long_test.cpp38 va_list args {}; in TestFuncV() local
53 ani_value args[2U]; in TestCombineScene() local
91 ani_value args[2U]; in TEST_F() local
128 ani_value args[2U]; in TEST_F() local
141 ani_value args[2U]; in TEST_F() local
157 ani_value args[2U]; in TEST_F() local
184 ani_value args[2U]; in TEST_F() local
209 ani_value args[2U]; in TEST_F() local
232 ani_value args[2U]; in TEST_F() local
261 ani_value args[2U]; in TEST_F() local
[all …]
Dclass_call_static_method_by_name_byte_test.cpp34 va_list args {}; in TestFuncV() local
49 ani_value args[2U]; in TestCombineScene() local
83 ani_value args[2U]; in TEST_F() local
164 ani_value args[2U]; in TEST_F() local
176 ani_value args[2U]; in TEST_F() local
188 ani_value args[2U]; in TEST_F() local
202 ani_value args[2U]; in TEST_F() local
228 ani_value args[2U]; in TEST_F() local
253 ani_value args[2U]; in TEST_F() local
276 ani_value args[2U]; in TEST_F() local
[all …]
Dclass_call_static_method_by_name_int_test.cpp36 va_list args {}; in TestFuncV() local
51 ani_value args[2U]; in TestCombineScene() local
85 ani_value args[2U]; in TEST_F() local
148 ani_value args[2U]; in TEST_F() local
160 ani_value args[2U]; in TEST_F() local
175 ani_value args[2U]; in TEST_F() local
201 ani_value args[2U]; in TEST_F() local
226 ani_value args[2U]; in TEST_F() local
248 ani_value args[2U]; in TEST_F() local
275 ani_value args[2U]; in TEST_F() local
[all …]
/arkcompiler/ets_frontend/ets2panda/driver/dependency_analyzer/
Dmain.cpp18 static void FilterArgs(ark::Span<const char *const> args, int &newArgc, const char **&newArgv) in FilterArgs()
38 static std::string ParseOption(ark::Span<const char *const> args) in ParseOption()
55 ark::Span<const char *const> args(argv, static_cast<size_t>(argc)); in main() local
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/object_ops/
Dobject_call_method_by_name_long_test.cpp48 ani_value args[2U]; in TEST_F() local
61 ani_value args[2U]; in TEST_F() local
74 ani_value args[2U]; in TEST_F() local
84 ani_value args[2U]; in TEST_F() local
96 ani_value args[2U]; in TEST_F() local
108 ani_value args[2U]; in TEST_F() local
192 ani_value args[2U]; in TEST_F() local
215 ani_value args[1U]; in TEST_F() local
239 ani_value args[2U]; in TEST_F() local
264 ani_value args[2U]; in TEST_F() local
[all …]
Dobject_call_method_by_name_double_test.cpp47 ani_value args[2U]; in TEST_F() local
61 ani_value args[2U]; in TEST_F() local
75 ani_value args[2U]; in TEST_F() local
85 ani_value args[2U]; in TEST_F() local
97 ani_value args[2U]; in TEST_F() local
109 ani_value args[2U]; in TEST_F() local
196 ani_value args[2U]; in TEST_F() local
221 ani_value args[1U]; in TEST_F() local
246 ani_value args[2U]; in TEST_F() local
272 ani_value args[2U]; in TEST_F() local
[all …]
Dobject_call_method_by_name_float_test.cpp47 ani_value args[2U]; in TEST_F() local
60 ani_value args[2U]; in TEST_F() local
73 ani_value args[2U]; in TEST_F() local
83 ani_value args[2U]; in TEST_F() local
95 ani_value args[2U]; in TEST_F() local
107 ani_value args[2U]; in TEST_F() local
193 ani_value args[2U]; in TEST_F() local
218 ani_value args[1U]; in TEST_F() local
243 ani_value args[2U]; in TEST_F() local
269 ani_value args[2U]; in TEST_F() local
[all …]
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/expressions/super-call/
Dsuper-call-spread-2.js18 constructor(...args) {
24 constructor(...args) {
/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/jsvm/src/platform/
Dplatform.cpp49 void VPrint(const char* format, va_list args) in VPrint()
54 void VPrintError(const char* format, va_list args) in VPrintError()
61 va_list args; in Print() local
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/callgraph/model/
DCallSite.ts25 args: Value[] | undefined; property
31 public args: Value[] | undefined; property in CallSite
45 public args: Value[] | undefined; property in DynCallSite
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/fn_object_ops/
Dcall_functional_object_test.cpp44 std::vector<ani_ref> args(argsSize, nullptr); in TEST_F() local
57 std::vector<ani_ref> args = {static_cast<ani_ref>(arg1)}; in TEST_F() local
70 std::vector<ani_ref> args = {static_cast<ani_ref>(arg1)}; in TEST_F() local
82 std::vector<ani_ref> args = {static_cast<ani_ref>(arg1)}; in TEST_F() local
99 std::vector<ani_ref> args = {static_cast<ani_ref>(arg1)}; in TEST_F() local
117 std::vector<ani_ref> args = {static_cast<ani_ref>(arg1)}; in TEST_F() local
132 std::vector<ani_ref> args = {static_cast<ani_ref>(arg1)}; in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
Dcl_parser.cpp47 RetCode CommandLine::ParseJoinedOption(size_t &argsIndex, const std::deque<std::string_view> &args,… in ParseJoinedOption()
68 RetCode CommandLine::ParseOption(size_t &argsIndex, const std::deque<std::string_view> &args, KeyAr… in ParseOption()
84 RetCode CommandLine::ParseEqualOption(size_t &argsIndex, const std::deque<std::string_view> &args, … in ParseEqualOption()
107 RetCode CommandLine::ParseSimpleOption(size_t &argsIndex, const std::deque<std::string_view> &args,… in ParseSimpleOption()
124 RetCode CommandLine::HandleInputArgs(const std::deque<std::string_view> &args, OptionCategory &optC… in HandleInputArgs()
181 std::deque<std::string_view> args; in Parse() local

12345678910>>...27