/arkcompiler/ets_frontend/es2panda/lexer/scripts/ |
D | keywords.rb | 183 def collect_functions(functions, keys) argument 197 if functions.has_key?(func_name) 198 functions[func_name].add(key[offset + 1]) 200 functions[func_name] = Set[key[offset + 1]] 214 functions = {} 216 collect_functions(functions, group.keys)
|
/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);
|
D | static-analyzer-warnings-generation.puactivity | 26 while (iterate over called functions)
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | pandasm.ts | 125 public functions: Array<Function>; property in Program 137 this.functions = [];
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | compileQueue.cpp | 119 const auto &functions = context_->Binder()->Functions(); in Schedule() local 121 for (auto *function : functions) { in Schedule()
|
/arkcompiler/runtime_core/tests/checked/ |
D | monitor.pa | 24 #! CHECKER Check monitors for inlined functions: lse isn't applied 51 #! CHECKER Check monitors for inlined functions: lse is applied
|
/arkcompiler/toolchain/tooling/test/ |
D | pt_returns_test.cpp | 191 auto functions = std::vector<std::unique_ptr<FunctionCoverage>>(); in HWTEST_F_L0() local 201 scriptCoverage->SetFunctions(std::move(functions)); in HWTEST_F_L0() 222 auto functions = std::vector<std::unique_ptr<FunctionCoverage>>(); in HWTEST_F_L0() local 232 scriptCoverage->SetFunctions(std::move(functions)); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/docs/ |
D | runtime-compiled_code-interaction.md | 17 Panda runtime as a set of functions aimed to execute managed code. The runtime consists of several … 20 The interpreter is a part of the runtime aimed to execute bytecode of managed functions. The interp… 21 …tness counter (see [Structure of `panda::Method`](#structure-of-pandamethod)) of managed functions. 28 Panda runtime and managed code must call functions according to the target calling convention. 98 * Call of managed functions or runtime entrypoints 307 …ombined from several managed functions (inlined functions). If the runtime needs to get informatio… 388 When compiled code is combined from several managed functions (inlined functions) `Deoptimize` reco…
|
D | assembly_format.md | 60 … primitive data types, aggregate data types, members of aggregate data types, functions and labels. 66 …efixed identifiers can be used for naming metadata annotations, aggregate data types and functions. 317 ### Static and virtual functions 494 - Assembler doesn't guarantee that functions, records and their fields will be located in binary fi… 499 # External records and functions: 533 … the assembler!) can be additionally processed during linkage to "bind" functions to records makin… 535 **Strings** and **arrays** can be thought as `external` record with some manipulating functions. Th… 559 * Specify `cref` and indirect calls to functions.
|
D | on-stack-replacement.md | 130 # Call assembly functions to do OSR magic
|
/arkcompiler/runtime_core/cmake/ |
D | Doxygen.cmake | 13 # Convenience functions for autogenerate documentation.
|
D | ClangTidy.cmake | 150 …"-fuchsia-default-arguments-calls" # disabled because we use functions with default arguments a lot 151 …"-fuchsia-default-arguments-declarations" # disabled because we use functions with default argumen… 155 "-readability-convert-member-functions-to-static" # TODO(knazarov) fix all occurences
|
D | Testing.cmake | 13 # Convenience functions for testing Panda.
|
D | CommonTesting.cmake | 13 # Convenience functions for testing Panda.
|
D | Definitions.cmake | 95 # Also calling conventions of functions that use global register variables are different: 97 # and epilog of such functions and gcc doesn't do it. So it's necessary to inline all
|
/arkcompiler/runtime_core/cmake/toolchain/ |
D | common.cmake | 13 # Common functions for add environment for compiling and cross-compiling.
|
/arkcompiler/ets_frontend/es2panda/lexer/templates/ |
D | keywords.h.erb | 53 % functions.each do |key, prefixes|
|
/arkcompiler/runtime_core/docs/bc_verification/ |
D | absint_checks.md | 47 ### (todo) Checks for usage of some functions/intrinsics
|
/arkcompiler/ets_runtime/ |
D | README.md | 34 │ ├─ stubs # Runtime stub functions
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | test_tsc_ignore_list.txt | 36 es2panda/test/TypeScript/tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterL…
|
/arkcompiler/runtime_core/compiler/docs/ |
D | paoc.md | 87 # Keys are functions' full names (i.e. `class::method`).
|
D | plt.md | 111 Resolver returns `index+1` value using `x16`, and don't call any other functions like `PLT CallStat… 202 …`MakeCallAot` function with properly calculated offset. Resolvers are placed after all functions in
|
/arkcompiler/runtime_core/ |
D | README.md | 28 … # Cmake script that contains the toolchain files and common cmake functions used to define t…
|
D | CMakeLists.txt | 191 # ----- Panda CMake functions --------------------------------------------------
|
/arkcompiler/toolchain/tooling/base/ |
D | pt_types.cpp | 2853 std::unique_ptr<PtJson> functions; in Create() local 2854 ret = params.GetArray("functions", &functions); in Create() 2856 int32_t len = functions->GetSize(); in Create() 2858 std::unique_ptr<PtJson> arrayEle = functions->Get(i); in Create() 2886 std::unique_ptr<PtJson> functions = PtJson::CreateArray(); in ToJson() local 2890 functions->Push(functions_[i]->ToJson()); in ToJson() 2892 result->Add("functions", functions); in ToJson()
|