Home
last modified time | relevance | path

Searched full:inside (Results 1 – 25 of 341) sorted by relevance

12345678910>>...14

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/11.local_classes_and_interfaces/
Dlocal_class_and_interface_declaration.params.yaml17 // 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 // Deep interface declaration in class body inside another local class.
103 // Local class declaration inside class method
120 // Local interface declaration inside class method
139 // Local class with constructor+argument declaration inside constructor of the outer class
160 // Deep local class declaration inside class method inside another local class.
183 // Deep local interface declaration inside interface method inside another local class.
213 // Local class with no-arg constructor declaration inside a function
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/dot_operator/ts_to_sts/optional_operator/
Doptional_operator.sts42 return Obj.inside?.name as string == Obj.inside.name as string;
46 const res: undefined = Obj.inside?.test as undefined;
52 // return Obj.inside?.['name'] as string == Obj.name as string;
56 // const res: undefined = Obj.inside?.['test'] as undefined;
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
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
8 inside static methods. ``this`` can be used in instance methods only.
/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dthis_type.ts.json94 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)",
104 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)",
124 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)",
134 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)",
144 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)",
/arkcompiler/runtime_core/static_core/runtime/
Dmark_word.cpp32 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()
Dobject_header_config.h44 // 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/
Dunix_signal_test.cpp131 // 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/ets_frontend/ets2panda/test/unit/
Dunion_normalization_test_2.cpp71 // Create union type, which will be normalized inside creation function in TEST_F()
82 // Create union type, which will be normalized inside creation function in TEST_F()
93 // Create union type, which will be normalized inside creation function in TEST_F()
107 // Create union type, which will be normalized inside creation function in TEST_F()
186 // Create union type, which will be normalized inside creation function in TEST_F()
198 // Create union type, which will be normalized inside creation function in TEST_F()
211 // Create union type, which will be normalized inside creation function in TEST_F()
226 // Create union type, which will be normalized inside creation function in TEST_F()
246 // Create union type, which will be normalized inside creation function in TEST_F()
265 // Create union type, which will be normalized inside creation function in TEST_F()
[all …]
Dunion_normalization_test_1.cpp54 // Create union type, which will be normalized inside creation function in TEST_F()
81 // Create union type, which will be normalized inside creation function in TEST_F()
114 // Create union type, which will be normalized inside creation function in TEST_F()
138 // Create union type, which will be normalized inside creation function in TEST_F()
169 // Create union type, which will be normalized inside creation function 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/
Dissue_16070_03.sts31 return "inside Foo"
37 assert foo.toString() == "inside Foo"
Dissue_16070_04.sts31 return "inside Foo"
37 assert foo.toLocaleString() == "inside Foo"
Dissue_16070_02.sts35 return "inside Foo"
41 assert foo.toLocaleString() == "inside Foo"
Dissue_16070_01.sts35 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/03.Import_Directives/issue15173/src/
Dissue_15173_03.sts29 assert foo.test() == "inside a method";
30 assert bar.test() == "inside a method";
Dissue_15173_02.sts29 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/
Dinterface_overriding_01.sts26 return "inside default method"
53 assert d.bar() == "inside default method"
/arkcompiler/runtime_core/static_core/compiler/docs/
Dloop_unswitch_doc.md4 …mization moves a conditional inside a loop outside of it by duplicating the loop's body, and placi…
Dlse_doc.md45 …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…
/arkcompiler/ets_frontend/ets2panda/linter/test/rules/
Drule136.ts.json44 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)",
84 … "rule": "Using \"this\" inside stand-alone functions is not supported (arkts-no-standalone-this)",
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/regression/
DSimplifyStringBuilder.sts40 … should not be triggered here: 'prepend' instead of 'append' in intermediate value inside loop body
63 …// SimplifyStringBuilder should be triggered here: 'append' with intermediate value inside loop bo…
/arkcompiler/runtime_core/static_core/libpandabase/mem/
Darena.h73 /// @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/
Darena.h86 * @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/runtime_core/static_core/runtime/mem/gc/heap-space-misc/
Dcrossing_map.h58 // 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/toolchain/build/config/aosp/
Dconfig.gni77 # # Toolchain root directory for each build. The actual binaries are inside
78 # # a "bin" directory inside of these.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/04.interface_members/
Dmember_type_declaration.sts18 desc: Type declaration inside interface.

12345678910>>...14