Home
last modified time | relevance | path

Searched full:for (Results 1 – 25 of 10633) sorted by relevance

12345678910>>...426

/arkcompiler/ets_frontend/ets2panda/test/parser/js/
Dtest-for-expected.txt15 "program": "test-for.js"
20 "program": "test-for.js"
28 "program": "test-for.js"
33 "program": "test-for.js"
49 "program": "test-for.js"
54 "program": "test-for.js"
62 "program": "test-for.js"
67 "program": "test-for.js"
84 "program": "test-for.js"
89 "program": "test-for.js"
[all …]
Dtest-for.js12 * See the License for the specific language governing permissions and
17 for(;;);
19 for(;;){}
21 for(a<b;;);
23 for(a<b;c(););
25 for(a<b;c();a++){AnimationPlaybackEvent; fetch;[]()}
27 for((function(){})(); (function(){})(); (function(){})()) {}
29 for (;a;);
30 for (;;a);
32 for (let fa = 5;;);
[all …]
/arkcompiler/runtime_core/static_core/docs/
Dmemory-management-SW-requirements.md8 1. Allocations for the application
9 1. Allocations for the internal usage by Runtime(Allocations for compiler purposes, for GC internal…
31 - Internal memory space for non-compiler part of runtime (including GC internals)
33 - Non-moving space(space for non-movable objects)
38 - GC for classes (optional)
39 - GC for code cache(optional)
43 High level requirements for GC:
44 - acceptable latency (max pause) for good user experience
51 …ation for application (for example: we can choose non-compacting GC with freelist allocators for s…
58 - allocator API for runtime
[all …]
Dtask_manager.md3for two components `GC` and `JIT`. Both of this components can use more than one thread for solvin…
5 For Hybrid mode (i.e. we can execute both static and dynamic code) TaskManager also should take int…
13 - for which VM instance (`static` or `dynamic`) this task is executed;
21for the foreground tasks and one for the background tasks. WorkerThread always try to execute task…
25 Is responsible for tasks "scheduling". I.e. each `WorkerThread` request `TaskManager` for new tasks…
27for TaskQueue(s). For example if we are currently expect a lot of GC because we have a lot of all…
31 It is a queue for tasks of the same "kind" or "components" (for example "JIT") which is fullfilled …
35 For managing worker threads we should provide machinery for:
41 … in this machinery is WorkerThread, i.e. we shouldn't have one `TaskQueue` for tasks from differen…
45 This entity is provide functionality for:
[all …]
/arkcompiler/runtime_core/docs/
Dmemory-management-SW-requirements.md8 1. Allocations for the application
9 1. Allocations for the internal usage by Runtime(Allocations for compiler purposes, for GC internal…
31 - Internal memory space for non-compiler part of runtime (including GC internals)
33 - Non-moving space(space for non-movable objects)
38 - GC for classes (optional)
39 - GC for code cache(optional)
43 High level requirements for GC:
44 - acceptable latency (max pause) for good user experience
51 …ation for application (for example: we can choose non-compacting GC with freelist allocators for s…
58 - allocator API for runtime
[all …]
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-for.js12 * See the License for the specific language governing permissions and
17 for(;;);
19 for(;;){}
21 for(a<b;;);
23 for(a<b;c(););
25 for(a<b;c();a++){AnimationPlaybackEvent; fetch;[]()}
27 for((function(){})(); (function(){})(); (function(){})()) {}
29 for (;a;);
30 for (;;a);
32 for (let fa = 5;;);
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/08.for_statements/
Dfor_loop_parameters.params.yaml11 # See the License for the specific language governing permissions and
16 - doc: For loop without any statement configured, no spaces ()
19 for (;;) {
24 - doc: For loop without any statement configured, spase as delimiter
27 for ( ; ; ) {
32 …- doc: For loop with init as the only configured statement. Creating variable with already existin…
35 for (let m = 1;;) {
40 …- doc: For loop with expression as the only configured statement. Creating variable with already e…
43 for (; 1;) {
49 …- doc: For loop with forUpdate as the only configured statement. Variable was created outside of t…
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dfor_stmts.ets12 * See the License for the specific language governing permissions and
22 for (const m in Mammals) {
31 for (const entry of someArray) {
35 for (const entry of [1, 'string', false]) {
44 for (const entry of someTuple) {
49 for (const i in list) {
53 for (const i of list) {
57 for (const i of [4, 5, 6]) {
62 for (const c of s) {
67 for (const c of s2) {
[all …]
/arkcompiler/ets_runtime/test/aottest/inline_array_exception/
Dinline_array_exception.ts12 * See the License for the specific language governing permissions and
27 for(let i25 = 0; i25 < 1; i25++){
28 for(let i = 0; i < 1; i++){
33 for(let i25 = 0; i25 < 1; i25++){
34 for(let i = 0; i < 1; i++){
39 for(let i25 = 0; i25 < 1; i25++){
40 for(let i = 0; i < 1; i++){
45 for(let i25 = 0; i25 < 1; i25++){
46 for(let i = 0; i < 1; i++){
51 for(let i25 = -1; i25 < 0; i25++){
[all …]
/arkcompiler/runtime_core/static_core/scripts/dep-lists/
Dubuntu-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 18.04 and 20.04
24 lcov # For coverage calculation
25 libc++-dev:amd64 # For clang-tidy to find standard headers
26 python3 # For running multilingual benchmarks
27 python3-matplotlib # For statistics visualization and plotting
28 openjdk-8-jdk # For running Java benchmarks
29 libasm-java # For running legacy Java files compilation
30 doxygen # For generate documentation
31 graphviz # For graphs in documentation
[all …]
Dubuntu-22-04-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 22.04
22 lcov=1.15-* # For coverage calculation
23 libc++-dev:amd64=1:14** # For clang-tidy to find standard headers
24 python2 # For repo tool
27 python3=3.10* # For running multilingual benchmarks
29 openjdk-8-jdk # For running Java benchmarks
30 libasm-java=9.2-* # For running legacy Java files compilation
31 doxygen=1.9.1-* # For generate documentation
32 graphviz=2.42.2-* # For generate graphs in documentation
[all …]
Dubuntu-24-04-arm-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 24.04
22 lcov=2.0-* # For coverage calculation
23 libc++-dev:arm64=1:18** # For clang-tidy to find standard headers
26 python3=3.12* # For running multilingual benchmarks
28 openjdk-8-jdk # For running Java benchmarks
29 libasm-java=9.7-* # For running legacy Java files compilation
30 doxygen=1.9.8* # For generate documentation
31 graphviz=2.42.2-* # For generate graphs in documentation
32 unzip=6.0-* # For unpacking jar
[all …]
Dubuntu-20-04-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 20.04
24 lcov=1.14-* # For coverage calculation
25 libc++-dev:amd64=1:10* # For clang-tidy to find standard headers
28 python3=3.8* # For running multilingual benchmarks
30 openjdk-8-jdk # For running Java benchmarks
31 libasm-java=7.2-* # For running legacy Java files compilation
32 doxygen=1.8.17-* # For generate documentation
33 graphviz=2.42.2-* # For generate graphs in documentation
34 unzip=6.0-* # For unpacking jar
[all …]
Dubuntu-22-04-arm-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 22.04
22 lcov=1.15-* # For coverage calculation
23 libc++-dev:arm64=1:14** # For clang-tidy to find standard headers
26 python3=3.10* # For running multilingual benchmarks
28 openjdk-8-jdk # For running Java benchmarks
29 libasm-java=9.2-* # For running legacy Java files compilation
30 doxygen=1.9.1-* # For generate documentation
31 graphviz=2.42.2-* # For generate graphs in documentation
32 unzip=6.0-* # For unpacking jar
[all …]
Dubuntu-20-04-arm-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 20.04
21 lcov=1.14-* # For coverage calculation
22 # Missing: libc++-dev:arm64=1:10* # For clang-tidy to find standard headers
25 python3=3.8* # For running multilingual benchmarks
27 openjdk-8-jdk # For running Java benchmarks
28 libasm-java=7.2-* # For running legacy Java files compilation
29 doxygen=1.8.17-* # For generate documentation
30 graphviz=2.42.2-* # For generate graphs in documentation
31 unzip=6.0-* # For unpacking jar
[all …]
Dubuntu-18-04-arm-dev11 # See the License for the specific language governing permissions and
14 # Dependency list for testing Panda on Ubuntu 18.04
23 lcov=1.13-* # For coverage calculation
24 libc++-dev:arm64=6.0-* # For clang-tidy to find standard header
27 python3.8=3.8.0* # For running multilingual benchmarks
28 python3.8-dev=3.8.0* # For running multilingual benchmarks
30 openjdk-8-jdk # For running Java benchmarks
31 libasm-java=7.0-* # For running legacy Java files compilation
32 doxygen=1.8.13-* # For generate documentation
33 graphviz=2.40.1-* # For generate graphs in documentation
[all …]
Dubuntu-24-04-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 24.04
22 lcov=2.0-* # For coverage calculation
23 libc++-dev:amd64=1:18** # For clang-tidy to find standard headers
26 python3=3.12* # For running multilingual benchmarks
28 openjdk-8-jdk # For running Java benchmarks
29 libasm-java=9.7-* # For running legacy Java files compilation
30 doxygen=1.9.8* # For generate documentation
31 graphviz=2.42.2-* # For generate graphs in documentation
32 unzip=6.0-* # For unpacking jar
[all …]
Dubuntu-18-04-dev11 # See the License for the specific language governing permissions and
14 # Dependency list for testing Panda on Ubuntu 18.04
25 lcov=1.13-* # For coverage calculation
26 libc++-dev:amd64=6.0-* # For clang-tidy to find standard headers
29 python3.8=3.8.0* # For running multilingual benchmarks
30 python3.8-dev=3.8.0* # For running multilingual benchmarks
32 openjdk-8-jdk # For running Java benchmarks
33 libasm-java=7.0-* # For running legacy Java files compilation
34 doxygen=1.8.13-* # For generate documentation
35 graphviz=2.40.1-* # For generate graphs in documentation
[all …]
/arkcompiler/runtime_core/scripts/dep-lists/
Dubuntu-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 18.04 and 20.04
23 lcov # For coverage calculation
24 libc++-dev:amd64 # For clang-tidy to find standard headers
25 python3 # For running multilingual benchmarks
26 python3-matplotlib # For statistics visualization and plotting
27 openjdk-8-jdk # For running Java benchmarks
28 libasm-java # For running legacy Java files compilation
29 doxygen # For generate documentation
30 graphviz # For graphs in documentation
[all …]
Dubuntu-20-04-dev11 # See the License for the specific language governing permissions and
14 # List of dependencies for testing Panda on Ubuntu 20.04
23 lcov=1.14-* # For coverage calculation
24 libc++-dev:amd64=1:10** # For clang-tidy to find standard headers
25 python3=3.8* # For running multilingual benchmarks
26 python3-matplotlib=3.1.2-* # For statistics visualization and plotting
27 openjdk-8-jdk=8u312-* # For running Java benchmarks
28 libasm-java=7.2-* # For running legacy Java files compilation
29 doxygen=1.8.17-* # For generate documentation
30 graphviz=2.42.2-* # For generate graphs in documentation
[all …]
Dubuntu-18-04-dev11 # See the License for the specific language governing permissions and
14 # Dependency list for testing Panda on Ubuntu 18.04
23 lcov=1.13-* # For coverage calculation
24 libc++-dev:amd64=6.0-* # For clang-tidy to find standard headers
25 python3=3.6.7-* # For running multilingual benchmarks
26 python3-matplotlib=2.1.1-* # For statistics visualization and plotting
27 openjdk-8-jdk=8u312-* # For running Java benchmarks
28 libasm-java=7.0-* # For running legacy Java files compilation
29 doxygen=1.8.13-* # For generate documentation
30 graphviz=2.40.1-* # For generate graphs in documentation
[all …]
Dubuntu-18-04-arm-dev11 # See the License for the specific language governing permissions and
14 # Dependency list for testing Panda on Ubuntu 18.04
23 lcov=1.13-* # For coverage calculation
24 libc++-dev:arm64=6.0-* # For clang-tidy to find standard headers
25 python3=3.6.7-* # For running multilingual benchmarks
26 python3-matplotlib=2.1.1-* # For statistics visualization and plotting
27 openjdk-8-jdk=8u312-* # For running Java benchmarks
28 libasm-java=7.0-* # For running legacy Java files compilation
29 doxygen=1.8.13-* # For generate documentation
30 graphviz=2.40.1-* # For generate graphs in documentation
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe80.md1 # ``for .. in`` is not supported
3 Rule ``arkts-no-for-in``
8 ``for .. in`` loop. For objects, iteration over properties at runtime is
10 cannot change at runtime. For arrays, iterate with the regular ``for`` loop.
19 for (let i in a) {
31 for (let i = 0; i < a.length; ++i) {
39 - Recipe 082: ``for-of`` is supported only for arrays, strings, sets, maps and classes derived fro…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/
DArrayIteratorDone.ets12 * See the License for the specific language governing permissions and
31 assertEQ(result.done, false, 'First result `done` flag for values() of Array<string>');
32 assertEQ(result.value, "a", 'First result `value` for values() of Array<string>');
34 assertEQ(result.done, true, 'Exhausted result `done` flag for values() of Array<string>');
35 assertEQ(result.value, undefined, 'Exhausted result `value` for values() of Array<string>');
38 …assertEQ(result.done, true, 'Exhausted result `done` flag after push for values() of Array<string>…
39 …assertEQ(result.value, undefined, 'Exhausted result `value` after push for values() of Array<strin…
47 assertEQ(result.done, false, 'First result `done` flag for entries() of Array<string>');
48 assertEQ(result.value![0], 0 , 'First result `value` for entries() of Array<string>');
49 assertEQ(result.value![1], "a", 'First result `value` for entries() of Array<string>');
[all …]
/arkcompiler/toolchain/tooling/dynamic/client/tcpServer/test/js_test_case/
Djs_test.py15 # See the License for the specific language governing permissions and
80 for line in breakpoint_lines:
82 for i in breakpoint_lines:
92 for line in breakpoint_lines:
93 for i in range(self.repeat_time):
95 for i in breakpoint_lines:
105 for line in breakpoint_lines:
108 for i in range(len(breakpoint_lines)):
119 for line in breakpoint_lines:
121 for i in range(self.repeat_time):
[all …]

12345678910>>...426