| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/04.overloading_and_overriding_in_classes/ |
| D | access_modifier_over.params.yaml | 20 public override public_foo() { res = 11;} 24 assertEQ( res, 11); 29 public override public_foo() { res = 11;} 33 assertEQ( res, 11); 38 override public_foo() { res = 11;} 42 assertEQ( res, 11); 48 protected override public_foo() { res = 11;} 55 protected override public_foo() { res = 11;} 62 private override public_foo() { res = 11;} 69 private override public_foo() { res = 11;} [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_es_checked/ |
| D | date.yaml | 19 - paramOf 0, 1, 5, 9, 10, 11 27 - paramOf 1, 5, 11 34 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… 37 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… 40 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… 43 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… 46 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… 49 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… 52 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… 55 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234… [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/dateformat/ |
| D | IntlDateFormatOptionsYearNumericTest.ets | 25 const TEST_DATE = new Date("2023-10-11T00:20:00Z") 34 addFormatResult("en-US", {year: "numeric", month: "numeric", day: "numeric"}, "10/11/2023") 35 addFormatResult("en-US", {year: "numeric", month: "numeric", day: "2-digit"}, "10/11/2023") 37 …US", {year: "numeric", month: "numeric", weekday: "long", day: "numeric"}, "Wednesday, 10/11/2023") 38 …US", {year: "numeric", month: "numeric", weekday: "long", day: "2-digit"}, "Wednesday, 10/11/2023") 40 …("en-US", {year: "numeric", month: "numeric", weekday: "short", day: "numeric"}, "Wed, 10/11/2023") 41 …("en-US", {year: "numeric", month: "numeric", weekday: "short", day: "2-digit"}, "Wed, 10/11/2023") 43 …t("en-US", {year: "numeric", month: "numeric", weekday: "narrow", day: "numeric"}, "W, 10/11/2023") 44 …t("en-US", {year: "numeric", month: "numeric", weekday: "narrow", day: "2-digit"}, "W, 10/11/2023") 46 addFormatResult("en-US", {year: "numeric", month: "2-digit", day: "numeric"}, "10/11/2023") [all …]
|
| D | IntlDateFormatOptionsYear2DigitTest.ets | 25 const TEST_DATE = new Date("2023-10-11T00:20:00Z") 34 addFormatResult("en-US", {year: "2-digit", month: "numeric", day: "numeric"}, "10/11/23") 35 addFormatResult("en-US", {year: "2-digit", month: "numeric", day: "2-digit"}, "10/11/23") 37 …n-US", {year: "2-digit", month: "numeric", weekday: "long", day: "numeric"}, "Wednesday, 10/11/23") 38 …n-US", {year: "2-digit", month: "numeric", weekday: "long", day: "2-digit"}, "Wednesday, 10/11/23") 40 …lt("en-US", {year: "2-digit", month: "numeric", weekday: "short", day: "numeric"}, "Wed, 10/11/23") 41 …lt("en-US", {year: "2-digit", month: "numeric", weekday: "short", day: "2-digit"}, "Wed, 10/11/23") 43 …ult("en-US", {year: "2-digit", month: "numeric", weekday: "narrow", day: "numeric"}, "W, 10/11/23") 44 …ult("en-US", {year: "2-digit", month: "numeric", weekday: "narrow", day: "2-digit"}, "W, 10/11/23") 46 addFormatResult("en-US", {year: "2-digit", month: "2-digit", day: "numeric"}, "10/11/23") [all …]
|
| D | IntlDateTimeFormatStyleTest.ets | 31 addFormatResult("en-US", {dateStyle: "full"}, "Wednesday, October 11, 2023") 32 …ateStyle: "full", timeStyle: "full", timeZone: "UTC"}, "Wednesday, October 11, 2023 at 12:20:00 AM… 33 …ateStyle: "full", timeStyle: "long", timeZone: "UTC"}, "Wednesday, October 11, 2023 at 12:20:00 AM… 34 …eStyle: "full", timeStyle: "medium", timeZone: "UTC"}, "Wednesday, October 11, 2023 at 12:20:00 AM… 35 …dateStyle: "full", timeStyle: "short", timeZone: "UTC"}, "Wednesday, October 11, 2023 at 12:20 AM") 36 addFormatResult("en-US", {dateStyle: "long"}, "October 11, 2023") 37 …addFormatResult("en-US", {dateStyle: "long", timeStyle: "full", timeZone: "UTC"}, "October 11, 202… 38 …addFormatResult("en-US", {dateStyle: "long", timeStyle: "long", timeZone: "UTC"}, "October 11, 202… 39 …addFormatResult("en-US", {dateStyle: "long", timeStyle: "medium", timeZone: "UTC"}, "October 11, 2… 40 …addFormatResult("en-US", {dateStyle: "long", timeStyle: "short", timeZone: "UTC"}, "October 11, 20… [all …]
|
| D | IntlDateFormatTest.ets | 28 const TEST_DATE = new Date("2023-10-11T00:20:00Z") 35 addFormatResult("en-US", undefined, "10/11/2023") 36 addFormatResult("zh-CN", undefined, "2023/10/11") 40 addFormatResult("en-US", {year: "numeric", month: "numeric", day: "numeric"}, "10/11/2023") 41 addFormatResult("en-US", {year: "numeric", month: "numeric", day: "2-digit"}, "10/11/2023") 43 addFormatResult("en-US", {year: "numeric", month: "2-digit", day: "numeric"}, "10/11/2023") 44 addFormatResult("en-US", {year: "numeric", month: "2-digit", day: "2-digit"}, "10/11/2023") 46 addFormatResult("en-US", {year: "numeric", month: "long", day: "numeric"}, "October 11, 2023") 47 addFormatResult("en-US", {year: "numeric", month: "long", day: "2-digit"}, "October 11, 2023") 49 addFormatResult("en-US", {year: "numeric", month: "short", day: "numeric"}, "Oct 11, 2023") [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/core/ |
| D | list.std_core_array_upperBoundSearch.yaml | 72 arr: "[0,1,2,3,4,5,6,7,7,7,7,7,8,9,10,11,12,13,14,15,16]", 79 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16]", 94 arr: "[0,1,2,3,4,5,6,7,7,7,7,7,8,9,10,11]", 97 endIndex: 11 101 arr: "[2,3,4,5,6,7,7,7,7,7,8,9,10,11,12]", 104 endIndex: 11 109 arr: "[0,1,2,3,4,5,6,8,9,10,11]", 120 test40: 11, 136 arr: "[0,1,2,3,4,5,6,7,7,7,7,7,8,9,10,11,12,13,14,15,16]", 143 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16]", [all …]
|
| D | list.std_core_array_sort_2.yaml | 63 arr: "[-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 67 arr: "[4, 3, 2, -11, 0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 71 arr: "[0, 1, 2, 3, 4, 5, 9, 8, 7, 6, 10, 11, 12, 13, 14, 15, 16]", 75 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 15, 14, 13]", 79 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 10, 12, 13, 14, 15, 16]", 83 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 10, 12, 13, 14, 15, 16]", 87 arr: "[0, 1, 2, 3, 1, 5, 6, 1, 8, 9, 11, 1, 12, 1, 1, 1, 1]", 97 test1: "[-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 98 test2: "[-11, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 99 test3: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", [all …]
|
| D | list.std_core_array_copyOf_2.yaml | 87 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 92 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 97 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 102 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 107 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 118 test1: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 119 test2: "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 120 test3: "[8, 9, 10, 11, 12, 13, 14, 15]", 140 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 145 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", [all …]
|
| D | list.std_core_array_sort.yaml | 73 arr: "[-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 79 arr: "[4, 3, 2, -11, 0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 85 arr: "[0, 1, 2, 3, 4, 5, 9, 8, 7, 6, 10, 11, 12, 13, 14, 15, 16]", 91 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 15, 14, 13]", 97 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 10, 12, 13, 14, 15, 16]", 103 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 10, 12, 13, 14, 15, 16]", 109 arr: "[0, 1, 2, 3, 1, 5, 6, 1, 8, 9, 11, 1, 12, 1, 1, 1, 1]", 117 test1: "[-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 118 test2: "[-11, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 119 test3: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", [all …]
|
| D | list.std_core_array_fill.yaml | 88 arr: "[0 ,1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 95 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 102 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 109 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 116 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 124 test1: "[0, 0, 0, 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 126 test3: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0, 0, 16]", 128 test5: "[0, 1, 2, 3, 4, 5, 6, 7, 0, 9, 10, 11, 12, 13, 14, 15, 16]", 145 arr: "[0 ,1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", 152 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]", [all …]
|
| D | list.std_core_array_copyOf.yaml | 85 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 91 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 97 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 103 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 117 test2: "[10, 11, 12, 13, 14]", 119 test4: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 136 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 142 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 148 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 154 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", [all …]
|
| D | list.std_core_array_upperBoundSearch_2.yaml | 63 arr: "[0,1,2,3,4,5,6,7,7,7,7,7,8,9,10,11,12,13,14,15,16]", 68 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16]", 79 arr: "[0,1,2,3,4,5,6,7,7,7,7,7,8,9,10,11]", 84 arr: "[2,3,4,5,6,7,7,7,7,7,8,9,10,11,12]", 89 arr: "[0,1,2,3,4,5,6,8,9,10,11]", 114 arr: "[0,1,2,3,4,5,6,7,7,7,7,7,8,9,10,11,12,13,14,15,16]", 119 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16]", 130 arr: "[0,1,2,3,4,5,6,7,7,7,7,7,8,9,10,11]", 135 arr: "[2,3,4,5,6,7,7,7,7,7,8,9,10,11,12]", 140 arr: "[0,1,2,3,4,5,6,8,9,10,11]", [all …]
|
| D | list.std_core_array_filter_2.yaml | 66 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 71 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 76 arr: "[0, 1, 1, 1, 4, 5, 1, 7, 8, 1, 10, 11, 12, 13, 14, 1]", 87 test1: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 89 test3: "[4, 5, 7, 8, 10, 11, 12, 13, 14]", 105 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 110 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 115 arr: "[0, 1, 1, 1, 4, 5, 1, 7, 8, 1, 10, 11, 12, 13, 14, 1]", 126 test1: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 128 test3: "[4, 5, 7, 8, 10, 11, 12, 13, 14]", [all …]
|
| D | list.std_core_array_lowerBoundSearch_2.yaml | 82 arr: "[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]", 93 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16,17,18]", 103 arr: "[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16]", 108 arr: "[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]", 113 arr: "[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]", 139 arr: "[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]", 150 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16,17,18]", 160 arr: "[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16]", 165 arr: "[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]", 170 arr: "[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]", [all …]
|
| D | list.std_core_array_filter.yaml | 66 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 71 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 76 arr: "[0, 1, 1, 1, 4, 5, 1, 7, 8, 1, 10, 11, 12, 13, 14, 1]", 81 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 92 test1: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 94 test3: "[4, 5, 7, 8, 10, 11, 12, 13, 14]", 111 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 116 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", 121 arr: "[0, 1, 1, 1, 4, 5, 1, 7, 8, 1, 10, 11, 12, 13, 14, 1]", 126 arr: "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]", [all …]
|
| D | list.std_core_array_lowerBoundSearch.yaml | 71 arr: "[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]", 85 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16,17,18]", 99 arr: "[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16]", 106 arr: "[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]", 113 arr: "[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]", 123 endIndex: 11, 149 arr: "[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]", 163 arr: "[7,7,7,7,7,8,9,10,11,12,13,14,15,16,17,18]", 177 arr: "[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16]", 184 arr: "[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]", [all …]
|
| /arkcompiler/ets_runtime/test/aottest/frame_iteration/ |
| D | pgo_expect_output.txt | 17 [builtins] IterateFrameType: 11 18 [builtins] IterateFrameType: 11 20 [builtins] DeoptIterateFrameType: 11 21 [builtins] DeoptIterateFrameType: 11 22 [builtins] DeoptIterateFrameType: 11 23 [builtins] DeoptIterateFrameType: 11 24 [builtins] DeoptIterateFrameType: 11
|
| /arkcompiler/ets_runtime/test/sharedtest/sharedtypedarray/ |
| D | expect_output.txt | 40 11,22 41 11,22 42 11,22,33 43 11,22,33 44 0,11,22 45 11,22,33 46 0,11,22 105 10,11,12,13,14 106 11,12,13,14 107 10,11,12,13,14 [all …]
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | provide_annotation_2.ets.autofix.json | 21 "endColumn": 11, 31 "endColumn": 11 42 "endColumn": 11, 52 "endColumn": 11 63 "endColumn": 11, 73 "endColumn": 11 84 "endColumn": 11, 94 "endColumn": 11 105 "endColumn": 11, 115 "endColumn": 11 [all …]
|
| D | provide_annotation_1.ets.autofix.json | 63 "endColumn": 11, 73 "endColumn": 11 84 "endColumn": 11, 94 "endColumn": 11 105 "endColumn": 11, 115 "endColumn": 11 126 "endColumn": 11, 136 "endColumn": 11 147 "endColumn": 11, 157 "endColumn": 11 [all …]
|
| D | double_excla_binding_3.ets.autofix.json | 31 "endColumn": 11 42 "endColumn": 11, 52 "endColumn": 11 73 "endColumn": 11 94 "endColumn": 11 105 "endColumn": 11, 115 "endColumn": 11 126 "endColumn": 11, 136 "endColumn": 11 147 "endColumn": 11, [all …]
|
| D | provide_annotation_2.ets.arkts2.json | 21 "endColumn": 11, 31 "endColumn": 11, 41 "endColumn": 11, 51 "endColumn": 11, 61 "endColumn": 11, 71 "endColumn": 11, 81 "endColumn": 11, 91 "endColumn": 11, 101 "endColumn": 11,
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/compiler/ |
| D | test-ts-namespace-11-expected.txt | 1 test-ts-namespace-11 flag2 2 test-ts-namespace-11 flag1 3 test-ts-namespace-11 flag1 4 test-ts-namespace-11 flag1
|
| /arkcompiler/runtime_core/static_core/static_linker/tests/data/ets/sys/ |
| D | 2.ets | 19 d_int: int = 11 28 d_int: int = 11 37 d_int: int = 11 48 const const_int: int = 11; 53 @ClassAnno({names: ["test"], addr: "taiwan", d_int: 11, d_long: 22, d_float: 33.3, d_double: 55.55}) 55 …@FieldAnno({names: ["test"], addr: "taiwan", d_int: 11, d_long: 22, d_float: 33.3, d_double: 55.55… 58 d_int: int = 11 87 …@MethodAnno({names: ["test"], addr: "taiwan", d_int: 11, d_long: 22, d_float: 33.3, d_double: 55.5…
|