| /arkcompiler/ets_runtime/test/sharedtest/sharedarray/ |
| D | expect_output.txt | 61 …100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,… 62 …100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,… 63 …100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,… 64 …100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,… 65 …100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,… 66 …10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,1… 67 …10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,1… 68 …10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,1… 69 …10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,1… 70 …10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,100,50,80,90,150,200,5,12,8,130,44,10,20,30,1… [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/core/ |
| D | list.std_core_type_array_type.yaml | 17 array_sizes: {1, 2, 10, 100}, 22 array_sizes: {1, 2, 10, 100}, 27 array_sizes: {1, 2, 10, 100}, 32 array_sizes: {1, 2, 10, 100}, 37 array_sizes: {1, 2, 10, 100}, 42 array_sizes: {1, 2, 10, 100}, 47 array_sizes: {1, 2, 10, 100}, 52 array_sizes: {1, 2, 10, 100}, 57 array_sizes: {1, 2, 10, 100}, 62 array_sizes: {1, 2, 10, 100}, [all …]
|
| /arkcompiler/ets_runtime/test/aottest/loops/ |
| D | loops.ts | 27 if (i > 100) { 33 for (var i:number = 0; i < 100; i++) { 49 while (j < 100) { 58 while (k < 100) { 72 } while (i < 100); 78 if (j > 100) { 87 if (k < 100) { 91 } while (k < 100); 97 if (i > 100) { 103 while (i < 100) { [all …]
|
| D | expect_output.txt | 29 100 32 100 35 100
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | machine_code_test.cpp | 56 desc.instructionsSize = 100; in HWTEST_F_L0() 58 desc.stackMapSizeAlign = 100; in HWTEST_F_L0() 59 TaggedObject *machineCode = factory->NewMachineCodeObject(100, desc); in HWTEST_F_L0() 60 factory->SetMachineCodeObjectData(machineCode, 100, desc, method, relocInfo); in HWTEST_F_L0() 71 desc.instructionsSize = 100; in HWTEST_F_L0() 73 desc.stackMapSizeAlign = 100; in HWTEST_F_L0() 80 TaggedObject *machineCode = factory->NewMachineCodeObject(100, desc); in HWTEST_F_L0() 81 factory->SetMachineCodeObjectData(machineCode, 100, desc, method, relocInfo); in HWTEST_F_L0() 92 desc.instructionsSize = 100; in HWTEST_F_L0() 94 desc.stackMapSizeAlign = 100; in HWTEST_F_L0() [all …]
|
| /arkcompiler/ets_runtime/test/aottest/builtins_string/ |
| D | builtins_string.ts | 21 let num6 = 100; 22 let num7 = -100; 33 print(str.substring(100)); 35 print(str.substring(-100)); 51 print(str.substring(-0.01, 100)); 53 print(str.substring(-100, undefined)); 65 print(str.substr(100)); 67 print(str.substr(-100)); 83 print(str.substr(-0.01, 100)); 85 print(str.substr(-100, undefined)); [all …]
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | BigInt3.sts | 21 assert new BigInt(100).operatorModule(new BigInt(50)) == (0n); 22 assert new BigInt(100).operatorModule(new BigInt(-50)) == (0n); 23 assert new BigInt(-100).operatorModule(new BigInt(50)) == (0n); 24 assert new BigInt(-100).operatorModule(new BigInt(-50)) == (0n); 29 assert new BigInt(100).operatorModule(new BigInt(250)) == (100n); 30 assert new BigInt(-100).operatorModule(new BigInt(250)) == (-100n); 31 assert new BigInt(100).operatorModule(new BigInt(-250)) == (100n); 32 assert new BigInt(-100).operatorModule(new BigInt(-250)) == (-100n);
|
| D | BigInt4.sts | 21 assert new BigInt(100).operatorDivide(new BigInt(50)) == (2n); 22 assert new BigInt(100).operatorDivide(new BigInt(-50)) == (-2n); 23 assert new BigInt(-100).operatorDivide(new BigInt(50)) == (-2n); 24 assert new BigInt(-100).operatorDivide(new BigInt(-50)) == (2n); 29 assert new BigInt(100).operatorDivide(new BigInt(250)) == (0n); 30 assert new BigInt(100).operatorDivide(new BigInt(-250)) == (0n); 31 assert new BigInt(-100).operatorDivide(new BigInt(250)) == (0n); 32 assert new BigInt(-100).operatorDivide(new BigInt(-250)) == (0n); 33 assert new BigInt(65000).operatorDivide(new BigInt(100)) == (650n); 34 assert new BigInt(65000).operatorDivide(new BigInt(-100)) == (-650n); [all …]
|
| D | local_class_in_classfunction.sts | 19 field1:int = 100; 25 assert(this.field1 == 100); 34 field1:int = 100; 37 assert(this.field1 == 100); 46 assert(x.field1 == 100); 53 assert(x2.field1 == 100);
|
| D | BigInt7.sts | 20 assert new BigInt(-100).operatorSubtract(new BigInt(1)) == (-101n); 21 assert new BigInt(-100).operatorSubtract(new BigInt(-1)) == (-99n); 28 assert new BigInt(-100).operatorSubtract(new BigInt(0)) == (-100n); 29 assert new BigInt(0).operatorSubtract(new BigInt(-100)) == (100n); 30 assert new BigInt(0).operatorSubtract(new BigInt(100)) == (-100n);
|
| D | AccessorAlone.sts | 39 obj._field = 100; 41 assert get_field == 100; 45 b_obj.field = 100; 47 assert get_b_field == 100;
|
| D | getter_setter2.sts | 42 objectos.field /= 100; 75 objectos.field = 100; 82 objectos.field += 100; 94 let value = 100; 101 assert value == 100; 107 assert value == 100;
|
| D | BigInt6.sts | 21 assert new BigInt(-100).operatorAdd(new BigInt(10)) == -90n; 22 assert new BigInt(100).operatorAdd(new BigInt(10)) == 110n; 29 assert new BigInt(100).operatorAdd(new BigInt(0)) == (100n); 30 assert new BigInt(-100).operatorAdd(new BigInt(0)) == (-100n);
|
| /arkcompiler/ets_runtime/test/aottest/stobjbyindex/ |
| D | stobjbyindex.ts | 19 var array = [100, "hello"]; 28 let phrase: { 1: string, "100": string | number, fullPhrase: any } = { 29 1 : "100", 30 "100" : "hello", 33 return `${this[1]} ${this["100"]}`; 37 [this[1], this["100"]] = value.split(" "); 41 print(phrase["100"]); 43 phrase["100"] = 1; 45 print(phrase["100"]);
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
| D | use-hex-as-key-expected.txt | 4 100 8 100 12 100 16 100
|
| D | use-hex-as-key.js | 20 1e2: 100, 29 print(a[100]) 35 100: 100, property 40 print(b[100])
|
| /arkcompiler/ets_runtime/test/quickfix/multi_patch/ |
| D | expect_output.txt | 22 print base:100 - 100 30 print base:100 - 100 38 print base:100 - 100
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/src/base-ui/progress-bar/ |
| D | ProgressBar.js | 41 width: 100%; 48 width: 100%; 49 height: 100%; 55 height: 100%; 64 height: 100%; 75 100% { 76 left:100%;
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
| D | test_gc_ark_reporter.py | 33 freed_object_mem=100, 95 freed_object_mem=100, 103 timestamp=100 141 freed_object_mem=100, 150 timestamp=100 173 freed_object_mem=100, 182 timestamp=100 190 freed_object_mem=100, 216 freed_object_mem=100, 230 gc_vm_time = 100 [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/ |
| D | typedarraytosorted.js | 43 let arr = [10, 3, 8, 5, 30, 100, 6, 7, 100, 3]; 66 let arr = [10n, 3n, 8n, 5n, 30n, 100n, 6n, 7n, 100n, 3n]; 81 result.push(arr2.toString() == "3,3,5,6,7,8,10,30,100,100"); 83 result.push(arr2.toString() == "100,100,30,10,8,7,6,5,3,3");
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/escompat/ |
| D | list.escompat_BigInt_instance.yaml | 18 init_object_data: '[-100n, 0n, 100000n, 999999999n]', 28 expected_test_data: "[-100n, 0n, 100000n, 999999999n]", 358 init_object_data: "[0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n, 359 0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n, 360 0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n, 361 0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n, 362 0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n, 363 0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n, 364 0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n, 365 0n, 1n, -1n, 10n, -10n, 100n, -100n, 1000n, -1000n, 10000n, -10000n]", [all …]
|
| /arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/ |
| D | heap_tracker_second_test.cpp | 52 static const int HEAP_PROFILER_CHUNK_SIZE = 100_KB; in GetSize() 121 int count = 100; in HWTEST_F_L0() 126 count = 100; in HWTEST_F_L0() 131 count = 100; in HWTEST_F_L0() 157 int count = 100; in HWTEST_F_L0() 162 count = 100; in HWTEST_F_L0() 167 count = 100; in HWTEST_F_L0() 193 int count = 100; in HWTEST_F_L0() 198 count = 100; in HWTEST_F_L0() 203 count = 100; in HWTEST_F_L0() [all …]
|
| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| D | life_intervals_test.cpp | 125 auto interval = Create({{0U, 100U}}); in TEST_F() 134 CheckRanges(split1, {{75U, 100U}}); in TEST_F() 139 auto interval = Create({{0U, 20U}, {22U, 40U}, {42U, 100U}}); in TEST_F() 154 auto interval = Create({{0U, 20U}, {22U, 40U}, {42U, 100U}}); in TEST_F() 255 auto interval = Create({{10U, 100U}}); in TEST_F() 257 ASSERT_EQ(INVALID_LIFE_NUMBER, interval->GetLastUsageBefore(100U)); in TEST_F() 263 interval.AppendRange({10U, 100U}); in TEST_F() 271 ASSERT_EQ(60U, interval.GetLastUsageBefore(100U)); in TEST_F() 319 li.AppendRange({10U, 100U}); in TEST_F() 323 CheckSiblingSequence(&li, {{10U, 11U}, {11U, 100U}}); in TEST_F() [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/intrinsics/ |
| D | string_endswith.sts | 30 assert Empty.endsWith('x', 100) == false; 37 assert Hello.endsWith('', 100) == true; 47 assert Hello.endsWith('o', 100) == true; 57 assert Hello.endsWith('ello', 100) == true; 71 assert Hello.endsWith('Hello', 100) == true; 80 assert Nature.endsWith('', 100) == true; 90 assert Nature.endsWith('然界', 100) == true; 98 assert Nature.endsWith('自然界', 100) == true;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/components/mosaic/ |
| D | styles.module.scss | 40 width: 100%; 41 height: 100%; 44 flex: 1 1 100%; 54 height: 100%;
|