| /arkcompiler/runtime_core/static_core/libpandabase/ |
| D | README.md | 7 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/ |
| D | README.md | 7 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/ |
| D | clang_tidy_rename.py | 177 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/ |
| D | sendable_generic_types.ts.json | 21 …"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/ |
| D | getunmappedargs.ts | 18 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/ |
| D | exec.h | 41 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/ |
| D | escompat.rst | 27 | **Arguments\:** 43 | **Arguments\:** 59 | **Arguments\:** 75 | **Arguments\:** 95 | **Arguments\:** 138 | **Arguments\:** 154 | **Arguments\:** 179 | **Arguments\:** 199 | **Arguments\:** 217 | **Arguments\:** [all …]
|
| /arkcompiler/ets_frontend/es2panda/ |
| D | README.md | 7 es2panda [OPTIONS] [input file] -- [arguments] 10 ## Optional arguments 23 ## Tail arguments 34 ### Optional arguments 39 ### Tail arguments
|
| /arkcompiler/ets_frontend/ets2panda/ |
| D | README.md | 7 es2panda [OPTIONS] [input file] -- [arguments] 10 ## Optional arguments 23 ## Tail arguments 34 ### Optional arguments 39 ### Tail arguments
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/js/ |
| D | test-new-expression-expected.txt | 23 "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/ |
| D | test-new-expression-expected.txt | 22 "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/ |
| D | getunmappedargs.js | 18 * @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/ |
| D | wildcard_type_argument.sts | 19 desc: Use wildcard in type arguments. 20 assert: If the typeReference has type arguments, none of the type arguments may be wildcard type ar…
|
| D | wildcard_type_argument_negative.sts | 19 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/ |
| D | wildcard_type_argument.sts | 19 desc: Use wildcard in type arguments. 20 assert: If the typeReference has type arguments, none of the type arguments may be wildcard type ar…
|
| D | wildcard_type_argument_negative.sts | 19 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/ |
| D | global_value_numbering_test.cpp | 56 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 …]
|
| D | instruction_combine_test.cpp | 76 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/ |
| D | type_argument.sts | 17 desc: Use well-formed parameterized type in type arguments. 18 … arguments, it must denote a well-formed parameterized type (link to parameterized types), and non…
|
| D | wildcart_type_argument.sts | 17 desc: Use wildcard in type arguments. 18 … arguments, it must denote a well-formed parameterized type (link to parameterized types), and non…
|
| /arkcompiler/ets_runtime/test/jittest/arguments/ |
| D | arguments.ts | 18 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/ |
| D | README.md | 10 python3 size_statistics.py --es2abc-path ES2ABC_PATH [arguments] 13 ### Tail arguments 17 ### Optional arguments
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/interpreter/lexicalEnv/ |
| D | safe_hole4.js | 42 (function (v4 = () => arguments) { 46 arguments: {} property 48 arguments: {} property 52 arguments: v18 property 65 arguments: {} property
|
| /arkcompiler/toolchain/build/toolchain/mac/ |
| D | linker_driver.py | 24 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 | .pylintrc | 26 # 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,
|