Home
last modified time | relevance | path

Searched full:arguments (Results 1 – 25 of 1519) sorted by relevance

12345678910>>...61

/arkcompiler/runtime_core/static_core/libpandabase/
DREADME.md7 pandargs is header-only utility tool that helps to parse command line arguments. It supports severa…
25 …d of `PandArg`, `PandArgCompound` can be used, which serves for creation of the compound arguments.
28 #### Arguments subsubsection
35 // argument name | argument description | sub-arguments
43 - PandArgCompound accepts three parameters: argument name, description and list of sub-arguments
52 - List of sub-arguments has type `std::initializer_list<PandArgBase *>`, and it accepts any non-com…
53 Sub-arguments should not be added to the parser via `PandArgParser::Add`.
77 - regular arguments
78 - tail arguments
79 - remainder arguments
[all …]
/arkcompiler/runtime_core/libpandabase/
DREADME.md7 pandargs is header-only utility tool that helps to parse command line arguments. It supports severa…
25 …d of `PandArg`, `PandArgCompound` can be used, which serves for creation of the compound arguments.
28 #### Arguments subsubsection
35 // argument name | argument description | sub-arguments
43 - PandArgCompound accepts three parameters: argument name, description and list of sub-arguments
52 - List of sub-arguments has type `std::initializer_list<PandArgBase *>`, and it accepts any non-com…
53 Sub-arguments should not be added to the parser via `PandArgParser::Add`.
77 - regular arguments
78 - tail arguments
79 - remainder arguments
[all …]
/arkcompiler/runtime_core/static_core/scripts/code_style/
Dclang_tidy_rename.py177 arguments = get_args() variable
180 arguments.build_dir = str(os.path.abspath(arguments.build_dir))
181 arguments.panda_dir = str(os.path.abspath(arguments.panda_dir))
182 arguments.fix_dir = str(os.path.abspath(arguments.fix_dir))
184 arguments.fix_dir = os.path.join(arguments.fix_dir, "renamer_fixes")
185 os.mkdir(arguments.fix_dir)
187 if not os.path.exists(os.path.join(arguments.build_dir, 'compile_commands.json')):
191 arguments.panda_dir, arguments.build_dir, arguments.filename_filter)
197 check_file_list(files_list, arguments.panda_dir, arguments.build_dir,
198 arguments.fix_dir, arguments.clang_rules_autofix)
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dsendable_generic_types.ts.json21 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
28 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
35 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
42 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
70 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
77 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
84 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
91 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
98 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
105 …"rule": "Type arguments of generic \"Sendable\" type must be a \"Sendable\" data type (arkts-senda…
[all …]
/arkcompiler/ets_runtime/test/aottest/getunmappedargs/
Dgetunmappedargs.ts18 print(arguments[0]);
23 print(arguments[0]);
24 print(arguments[1]);
25 print(arguments[2]);
30 print(arguments[0]);
31 print(arguments[1]);
/arkcompiler/runtime_core/static_core/libpandabase/os/
Dexec.h41 std::array<const char *, sizeof...(args) + 1> arguments = {args..., nullptr}; in decltype() local
42 return os::exec::Exec(Span(arguments)); in decltype()
48 std::array<const char *, sizeof...(args) + 1> arguments = {args..., nullptr}; in decltype() local
49 return os::exec::ExecNoWait(Span(arguments)); in decltype()
55 std::array<const char *, sizeof...(args) + 1> arguments = {args..., nullptr}; in decltype() local
56 return os::exec::ExecWithCallback(callback, Span(arguments)); in decltype()
62 std::array<const char *, sizeof...(args) + 1> arguments = {args..., nullptr}; in decltype() local
63 return os::exec::ExecWithCallbackNoWait(callback, Span(arguments)); in decltype()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/stdlib/packages/
Descompat.rst27 | **Arguments\:**
43 | **Arguments\:**
59 | **Arguments\:**
75 | **Arguments\:**
95 | **Arguments\:**
138 | **Arguments\:**
154 | **Arguments\:**
179 | **Arguments\:**
199 | **Arguments\:**
217 | **Arguments\:**
[all …]
/arkcompiler/ets_frontend/es2panda/
DREADME.md7 es2panda [OPTIONS] [input file] -- [arguments]
10 ## Optional arguments
23 ## Tail arguments
34 ### Optional arguments
39 ### Tail arguments
/arkcompiler/ets_frontend/ets2panda/
DREADME.md7 es2panda [OPTIONS] [input file] -- [arguments]
10 ## Optional arguments
23 ## Tail arguments
34 ### Optional arguments
39 ### Tail arguments
/arkcompiler/ets_frontend/ets2panda/test/parser/js/
Dtest-new-expression-expected.txt23 "arguments": [],
65 "arguments": [
172 "arguments": [],
184 "arguments": [],
196 "arguments": [],
255 "arguments": [
282 "arguments": [],
328 "arguments": [
356 "arguments": [],
368 "arguments": [],
[all …]
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-new-expression-expected.txt22 "arguments": [],
63 "arguments": [
166 "arguments": [],
178 "arguments": [],
190 "arguments": [],
248 "arguments": [
275 "arguments": [],
320 "arguments": [
347 "arguments": [],
359 "arguments": [],
[all …]
/arkcompiler/ets_runtime/test/moduletest/getunmappedargs/
Dgetunmappedargs.js18 * @tc.desc:test arguments
23 print(arguments[0])
24 print(arguments[1])
25 print(arguments[2])
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/04.class_implementation_clause/
Dwildcard_type_argument.sts19 desc: Use wildcard in type arguments.
20 assert: If the typeReference has type arguments, none of the type arguments may be wildcard type ar…
Dwildcard_type_argument_negative.sts19 desc: Use wildcard in type arguments.
20 assert: If the typeReference has type arguments, none of the type arguments may be wildcard type ar…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/03.class_extension_clause/
Dwildcard_type_argument.sts19 desc: Use wildcard in type arguments.
20 assert: If the typeReference has type arguments, none of the type arguments may be wildcard type ar…
Dwildcard_type_argument_negative.sts19 desc: Use wildcard in type arguments.
20 assert: If the typeReference has type arguments, none of the type arguments may be wildcard type ar…
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dglobal_value_numbering_test.cpp56 auto x = builder.Arguments(1); in HWTEST_F_L0()
57 auto y = builder.Arguments(2); in HWTEST_F_L0()
58 auto z = builder.Arguments(3); in HWTEST_F_L0()
82 auto x = builder.Arguments(1); in HWTEST_F_L0()
83 auto y = builder.Arguments(2); in HWTEST_F_L0()
106 auto x = builder.Arguments(1); in HWTEST_F_L0()
107 auto y = builder.Arguments(2); in HWTEST_F_L0()
130 auto x = builder.Arguments(1); in HWTEST_F_L0()
131 auto y = builder.Arguments(2); in HWTEST_F_L0()
161 auto x = builder.Arguments(1); in HWTEST_F_L0()
[all …]
Dinstruction_combine_test.cpp76 auto x = builder.Arguments(1); in HWTEST_F_L0()
100 auto y = builder.Arguments(2); in HWTEST_F_L0()
110 auto z = builder.Arguments(3); in HWTEST_F_L0()
136 auto x = builder.Arguments(1); in HWTEST_F_L0()
163 auto x = builder.Arguments(2); in HWTEST_F_L0()
164 auto y = builder.Arguments(3); in HWTEST_F_L0()
174 auto x = builder.Arguments(4); in HWTEST_F_L0()
175 auto y = builder.Arguments(5); in HWTEST_F_L0()
186 auto y = builder.Arguments(6); in HWTEST_F_L0()
197 auto y = builder.Arguments(6); in HWTEST_F_L0()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/02.superinterfaces_and_subinterfaces/
Dtype_argument.sts17 desc: Use well-formed parameterized type in type arguments.
18arguments, it must denote a well-formed parameterized type (link to parameterized types), and non…
Dwildcart_type_argument.sts17 desc: Use wildcard in type arguments.
18arguments, it must denote a well-formed parameterized type (link to parameterized types), and non…
/arkcompiler/ets_runtime/test/jittest/arguments/
Darguments.ts18 for (let i = 0; i < arguments.length; i++) {
19 sum = sum + arguments[i]
28 print(arguments[0]);
29 print(arguments[1]);
/arkcompiler/ets_frontend/es2panda/test/size_statistics/
DREADME.md10 python3 size_statistics.py --es2abc-path ES2ABC_PATH [arguments]
13 ### Tail arguments
17 ### Optional arguments
/arkcompiler/ets_frontend/es2panda/test/compiler/interpreter/lexicalEnv/
Dsafe_hole4.js42 (function (v4 = () => arguments) {
46 arguments: {} property
48 arguments: {} property
52 arguments: v18 property
65 arguments: {} property
/arkcompiler/toolchain/build/toolchain/mac/
Dlinker_driver.py24 the compiler driver, while processing special arguments itself.
34 removal of the special driver arguments, described below). Then the driver
35 performs additional actions, based on these arguments:
51 comma-separated arguments to be passed to the strip command.
56 """main function for the linker driver. Separates out the arguments for
61 args: list of string, Arguments to the script.
74 # Collect arguments to the linker driver (this script) and remove them from
75 # the arguments being passed to the compiler driver.
117 1: An 1-ary lambda that takes the full list of arguments passed to
188 strip_args_string: string, Comma-separated arguments for `strip`.
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
D.pylintrc26 # R0913: Too many arguments (too-many-arguments)
28 # W1202: Use % formatting in logging functions and pass the % parameters as arguments (logging-form…
33 too-many-arguments,

12345678910>>...61