| /arkcompiler/ets_frontend/es2panda/lexer/scripts/ |
| D | keywords.rb | 188 def collect_functions(functions, keys) argument 202 if functions.has_key?(func_name) 203 functions[func_name].add(key[offset + 1]) 205 functions[func_name] = Set[key[offset + 1]] 219 functions = {} 221 collect_functions(functions, group.keys)
|
| /arkcompiler/runtime_core/static_core/docs/diagrams/ |
| D | static-analyzer-gc-func-list-gen-activity.plantuml | 16 title Generation list of GC unsafe functions(can have GC happen during work) 20 :List of functions which can have GC inside; 27 ->Parse bodies of functions and get list of calling functions 28 and put them to list of all functions in project; 31 :List of all functions in project; 33 :Generate list of all functions which can call GC (GC FUNCTION LIST);
|
| /arkcompiler/runtime_core/docs/diagrams/ |
| D | static-analyzer-gc-func-list-gen.puactivity | 16 title Generation list of GC unsafe functions(can have GC happen during work) 20 :List of functions which can have GC inside; 27 ->Parse bodies of functions and get list of calling functions 28 and put them to list of all functions in project; 31 :List of all functions in project; 33 :Generate list of all functions which can call GC (GC FUNCTION LIST);
|
| /arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
| D | recipe49.md | 1 # Use generic functions instead of generic arrow functions 7 ArkTS does not support generic arrow functions. Use normal generic functions
|
| D | recipe152.md | 7 ArkTS does not allow using standard library functions ``Function.apply`` 11 style, and the usage of ``this`` in stand-alone functions is prohibited. 12 Thus these functions are excessive. 63 - Recipe 093: Using ``this`` inside stand-alone functions is not supported (``arkts-no-standalone-…
|
| D | recipe46.md | 1 # Use arrow functions instead of function expressions 7 ArkTS does not support function expressions. Use arrow functions instead
|
| D | recipe94.md | 1 # Generator functions are not supported 7 Currently, ArkTS does not support generator functions.
|
| D | recipe92.md | 1 # Nested functions are not supported 7 ArkTS does not support nested functions. Use lambdas instead.
|
| D | recipe93.md | 1 # Using ``this`` inside stand-alone functions is not supported 7 ArkTS does not support the usage of ``this`` inside stand-alone functions and
|
| D | recipe139.md | 1 # Declaring properties on functions is not supported 7 ArkTS does not support declaring properties on functions because there is no
|
| D | recipe140.md | 11 style, and the usage of ``this`` in stand-alone functions is prohibited. 64 - Recipe 093: Using ``this`` inside stand-alone functions is not supported (``arkts-no-standalone-…
|
| /arkcompiler/runtime_core/static_core/irtoc/lang/ |
| D | irtoc.rb | 195 functions = [] 202 functions += irtoc.functions 210 llvm_functions += irtoc.functions 217 functions.reject(&:enable_builder).each do |function| 235 builder_functions = functions.select(&:enable_builder) 261 validation = Hash[functions.select(&:validation).map { |f| [f.name, f.validation] } ]
|
| /arkcompiler/runtime_core/compiler/tools/ |
| D | draw_cfg.py | 70 self.functions = [] 80 self.functions.append(Function(self.method, self.blocks)) 129 return self.functions 151 functions = GraphDumpParser().parse(sys.stdin.readlines()) 152 for function in functions:
|
| /arkcompiler/runtime_core/static_core/compiler/tools/ |
| D | benchmark_coverage.sh | 139 local functions=0 194 elif [ $compiled -ne $functions ] ; then 200 local coverage=$(($compiled * 100 / $functions)) 202 functions = $functions, 230 all_functions=$((all_functions+$functions)) 256 local functions=0 329 elif [ $compiled -ne $functions ]; then
|
| /arkcompiler/ets_frontend/ets2panda/compiler/core/ |
| D | compileQueue.cpp | 53 const auto &functions = context->parserProgram->VarBinder()->Functions(); in Schedule() local 54 jobs_ = new CompileJob[functions.size()](); in Schedule() 56 for (auto *function : functions) { in Schedule()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/03.overloading_for_functions/ |
| D | function_import_and_decl.sts | 20 …A function can be declared in or imported to the scope. It is not allowed to mix functions declare… 22 error occurs for functions with the same name, if 24 • Some functions are imported and others are declared.
|
| D | function_import_neg.sts | 20 …A function can be declared in or imported to the scope. It is not allowed to mix functions declare… 22 error occurs for functions with the same name, if 24 • Some functions are imported and others are declared.
|
| D | function_import_from_same_cu.sts | 18 …A function can be declared in or imported to the scope. It is not allowed to mix functions declare… 20 error occurs for functions with the same name, if 22 • Some functions are imported and others are declared.
|
| D | function_import_from_same_cu_2.sts | 18 …A function can be declared in or imported to the scope. It is not allowed to mix functions declare… 20 error occurs for functions with the same name, if 22 • Some functions are imported and others are declared.
|
| /arkcompiler/ets_frontend/ets2panda/test/test-lists/parser/ |
| D | parser-js-allowed.txt | 368 ark_tests/parser/js/functions/test-function-scope-violation-2.js 369 ark_tests/parser/js/functions/generators/test-function-generator-1.js 370 ark_tests/parser/js/functions/generators/test-function-generator.js 371 ark_tests/parser/js/functions/generators/test-function-generator-3.js 372 ark_tests/parser/js/functions/generators/test-function-generator-2.js 373 ark_tests/parser/js/functions/generators/test-function-generator-expression.js 374 ark_tests/parser/js/functions/test-function-scope-violation-3.js 375 ark_tests/parser/js/functions/test-function-arguments-2.js 376 ark_tests/parser/js/functions/arrow/test-function-arrow-2.js 377 ark_tests/parser/js/functions/arrow/test-function-async-arrow.js [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/declgen_ets2ts/functions/ |
| D | CMakeLists.txt | 14 create_declgen_ets2ts_test(functions 22 ${CMAKE_CURRENT_SOURCE_DIR}/functions.ts
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
| D | wrapped_module.cpp | 128 size_t functions {0}; in Dump() local 134 functions++; in Dump() 145 …*stream << "\tTotal: functions = " << functions << ", inlineFunctions = " << inlineFunctions << "\… in Dump()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/07.function_and_method_overloading/01.function_overloading/ |
| D | fn_overloading_n.sts | 19 If two functions declared in the same declaration space 22 params: same-signature functions
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/ |
| D | remove_unused_functions.cpp | 51 for (auto &function : module.functions()) { in run() 65 for (auto &function : module.functions()) { in run()
|
| /arkcompiler/runtime_core/docs/changelogs/ |
| D | 2024-07-05-file_format-changelog.md | 11 To support sendable function, a new Function Kind SENDABLE_FUNCTION is added for marking functions …
|