Home
last modified time | relevance | path

Searched refs:functions (Results 1 – 25 of 221) sorted by relevance

123456789

/arkcompiler/ets_frontend/es2panda/lexer/scripts/
Dkeywords.rb188 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/
Dstatic-analyzer-gc-func-list-gen-activity.plantuml16 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/
Dstatic-analyzer-gc-func-list-gen.puactivity16 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/
Drecipe49.md1 # Use generic functions instead of generic arrow functions
7 ArkTS does not support generic arrow functions. Use normal generic functions
Drecipe152.md7 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-…
Drecipe46.md1 # Use arrow functions instead of function expressions
7 ArkTS does not support function expressions. Use arrow functions instead
Drecipe94.md1 # Generator functions are not supported
7 Currently, ArkTS does not support generator functions.
Drecipe92.md1 # Nested functions are not supported
7 ArkTS does not support nested functions. Use lambdas instead.
Drecipe93.md1 # Using ``this`` inside stand-alone functions is not supported
7 ArkTS does not support the usage of ``this`` inside stand-alone functions and
Drecipe139.md1 # Declaring properties on functions is not supported
7 ArkTS does not support declaring properties on functions because there is no
Drecipe140.md11 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/
Dirtoc.rb195 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/
Ddraw_cfg.py70 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/
Dbenchmark_coverage.sh139 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/
DcompileQueue.cpp53 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/
Dfunction_import_and_decl.sts20 …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.
Dfunction_import_neg.sts20 …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.
Dfunction_import_from_same_cu.sts18 …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.
Dfunction_import_from_same_cu_2.sts18 …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/
Dparser-js-allowed.txt368 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/
DCMakeLists.txt14 create_declgen_ets2ts_test(functions
22 ${CMAKE_CURRENT_SOURCE_DIR}/functions.ts
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Dwrapped_module.cpp128 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/
Dfn_overloading_n.sts19 If two functions declared in the same declaration space
22 params: same-signature functions
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/
Dremove_unused_functions.cpp51 for (auto &function : module.functions()) { in run()
65 for (auto &function : module.functions()) { in run()
/arkcompiler/runtime_core/docs/changelogs/
D2024-07-05-file_format-changelog.md11 To support sendable function, a new Function Kind SENDABLE_FUNCTION is added for marking functions

123456789