| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/11.local_classes_and_interfaces/ |
| D | local_class_and_interface_declaration.params.yaml | 17 // Local class declaration inside class body 33 // Final local class declaration inside class body 49 // Deep local class declaration in class body inside another local class. 74 // Local class declaration inside class method 91 // Local class with constructor+argument declaration inside constructor of the outer class 112 // Deep local class declaration inside class method inside another local class. 135 // Local class with no-arg constructor declaration inside a function 151 // Local class declaration inside main() 160 // Deep local class declaration inside a function and multiple local classes 229 // inner interface inside class body [all …]
|
| /arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
| 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 8 inside static methods. ``this`` can be used in instance methods only.
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | mark_word.cpp | 32 LOG(ERROR, RUNTIME) << "Hash is not stored inside object header!"; in GetHashConfigured() 54 LOG(ERROR, RUNTIME) << "Hash is not stored inside object header!"; in DecodeFromHashConfigured() 66 LOG(ERROR, RUNTIME) << "Hash is stored inside object header and we don't use hash status bit!"; in SetHashedConfigured() 84 LOG(ERROR, RUNTIME) << "Hash is stored inside object header and we don't use hash status bit!"; in IsHashedConfigured()
|
| D | object_header_config.h | 44 // Config for High-end devices with hash stored inside object header and 32 bits pointer 54 // Config for High-end devices with hash stored inside object header and 64 bits pointer 64 // Config for Low-end devices with hash stored inside object header and 32 bits pointer
|
| /arkcompiler/runtime_core/static_core/libpandabase/tests/ |
| D | unix_signal_test.cpp | 131 // Wait for the signals inside the cycle in TEST_F() 175 // Wait for the signals inside the cycle in TEST_F() 193 // Wait for the signals inside the cycle in TEST_F() 214 // Wait for the signals inside the cycle in TEST_F() 233 // Wait for the signals inside the cycle in TEST_F() 253 // Wait for the signals inside the cycle in TEST_F() 272 // Wait for the signals inside the cycle in TEST_F()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/10.Interfaces/10.6.Interface_Method_Declarations/10.6.2.Inheritance_and_Overriding/ |
| D | issue_16070_04.sts | 31 return "inside Foo" 37 assert foo.toLocaleString() == "inside Foo"
|
| D | issue_16070_03.sts | 31 return "inside Foo" 37 assert foo.toString() == "inside Foo"
|
| D | issue_16070_02.sts | 35 return "inside Foo" 41 assert foo.toLocaleString() == "inside Foo"
|
| D | issue_16070_01.sts | 35 return "inside Foo" 41 assert foo.toString() == "inside Foo"
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/13.Compilation_Units_Packages_and_Modules/13.3.Import_Directives/issue15173/src/ |
| D | issue_15173_03.sts | 29 assert foo.test() == "inside a method"; 30 assert bar.test() == "inside a method";
|
| D | issue_15173_02.sts | 29 assert foo.test() == "inside a method"; 30 assert bar.test() == "inside a method";
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/09.classes/9.6.Method_Declarations/10.Overriding_by_Instance_Methods/interfaces_overriding/ |
| D | interface_overriding_01.sts | 26 return "inside default method" 53 assert d.bar() == "inside default method"
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | loop_unswitch_doc.md | 4 …mization moves a conditional inside a loop outside of it by duplicating the loop's body, and placi…
|
| D | lse_doc.md | 45 …cted heap of loop preheader (e.g. if we can guarantee that memory access is read-only inside loop). 105 Here is `v20` inside loop that can be eliminated due to `v3`. However we can't record `v20` to list… 111 …further. While traversing a loop we check aliasing of each memory access inside the loop with phi-… 113 … overwritten somewhere inside the loop. If there are only load instructions among them, then we ca… 117 - visiting any memory access inside a reducible loop we check the aliasing with phi-candidates of t… 280 Until the `LoadObject` accesses a volatile field, we can eliminate `v20` inside the loop and use `v…
|
| D | aot_resolve_string.md | 35 …then each resolution attempt will increment value inside the slot until it either get replaced wit… 47 String pointers stored inside PLT-slots have to be treated as GC-roots to prevent its scavenge in c…
|
| /arkcompiler/ets_frontend/ets2panda/linter/test_rules/ |
| D | rule136.ts.json | 36 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)" 64 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)"
|
| /arkcompiler/ets_frontend/ets2panda/test/unit/ |
| D | union_normalization_test.cpp | 202 // Create union type, which will be normalized inside creation function in TEST_F() 229 // Create union type, which will be normalized inside creation function in TEST_F() 262 // Create union type, which will be normalized inside creation function in TEST_F() 286 // Create union type, which will be normalized inside creation function in TEST_F() 317 // Create union type, which will be normalized inside creation function in TEST_F() 357 // Create union type, which will be normalized inside creation function in TEST_F() 368 // Create union type, which will be normalized inside creation function in TEST_F() 379 // Create union type, which will be normalized inside creation function in TEST_F() 393 // Create union type, which will be normalized inside creation function in TEST_F() 472 // Create union type, which will be normalized inside creation function in TEST_F() [all …]
|
| /arkcompiler/runtime_core/static_core/libpandabase/mem/ |
| D | arena.h | 73 /// @return A pointer to the raw memory inside arena 90 * @brief Check that @param mem is stored inside this Arena 95 …/// @brief Mark all memory after @param mem as free. Check that @param mem is stored inside this a…
|
| /arkcompiler/runtime_core/libpandabase/mem/ |
| D | arena.h | 86 * @return A pointer to the raw memory inside arena 104 * \brief Check that \param mem is stored inside this Arena 110 …* \brief Mark all memory after \param mem as free. Check that \param mem is stored inside this are…
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ |
| D | prototype_assignment.ts.json | 22 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)" 36 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)" 71 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)"
|
| D | function_object_methods.ts.json | 196 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)" 217 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)" 224 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)" 238 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)"
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/heap-space-misc/ |
| D | crossing_map.h | 58 // This element (or map) can be used to get the first object address, which starts inside this page… 104 * @return Returns the first object which starts inside an interval, 160 // We have some object that starts inside this page, 163 // We have some object that starts inside this page, 232 // We must be sure that we can use such type for all possible obj offsets inside one page
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | lse.h | 73 * potential memory accesses that can be used to eliminated accesses inside the 75 * stores inside the loop). 76 * - visiting any memory access inside a loop we check the aliasing with
|
| /arkcompiler/toolchain/build/config/aosp/ |
| D | config.gni | 77 # # Toolchain root directory for each build. The actual binaries are inside 78 # # a "bin" directory inside of these.
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | aot_resolve_string.md | 35 …then each resolution attempt will increment value inside the slot until it either get replaced wit… 47 String pointers stored inside PLT-slots have to be treated as GC-roots to prevent its scavenge in c…
|