| /arkcompiler/ets_runtime/test/moduletest/arraysortcase/ |
| D | arraysortcase.js | 23 const numberArray1 = new Array(40, 1, 5, 200); 28 const numberArray = [40, 1, 5, 200]; 30 const mixedNumericArray = ["80", "9", "700", 40, 1, 5, 200]; 40 numberArray.join(); // '40,1,5,200' 41 numberArray.sort(); // [1, 200, 40, 5] 42 numberArray.sort(compareNumbers); // [1, 5, 40, 200] 50 mixedNumericArray.join(); // '80,9,700,40,1,5,200' 51 mixedNumericArray.sort(); // [1, 200, 40, 5, '700', '80', '9'] 52 mixedNumericArray.sort(compareNumbers); // [1, 5, '9', 40, '80', 200, '700']
|
| D | expect_output.txt | 16 1,200,40,5 18 1,5,40,200 20 1,5,9,40,80,200,700
|
| /arkcompiler/ets_runtime/test/sharedtest/sharedarray/ |
| D | expect_output.txt | 17 An index of 200 returns undefined 61 …0,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,90,150,2… 62 …0,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,90,150,2… 63 …0,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,90,150,2… 64 …0,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,90,150,2… 65 …0,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,90,150,2… 66 …0,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,90,150,2… 67 …0,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,90,150,2… 68 …0,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,90,150,2… 69 …0,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,90,150,2… [all …]
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
| D | test_gc_ark_reporter.py | 37 mem_after=200, mem_total=500, 51 mem_after=200, mem_total=500, 99 mem_after=200, mem_total=500, 115 mem_after=200, mem_total=500, 119 timestamp=200 145 mem_after=200, 177 mem_after=200, 194 mem_after=200, 220 mem_after=200, 246 mem_after=200, [all …]
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | enum_as_expression_cast.ets | 18 B = 200 24 assertEQ(E.B.toString(), "200") // E.B.toString() 25 assertEQ(Int.toDouble(E.B), 200) // cast(E.B) to number, E.B is a index 27 assertEQ(Int.toDouble(E.B.valueOf()), 200) // get value of E.B
|
| D | SpreadExpressions.ets | 51 let expectedAssignment : Int[] = [100, 200, 77, 88, 99, 400, 600, 77, 88, 99] 53 arrayAssignment = [100, 200, ...intArray, 400, 600, ...intArray] 64 let expectedUnion : unionType[] = [100, 200, "first", "second", 500, 600, "first", "second"] 65 let arrayUnion: unionType[] = [100, 200, ...unionArray, 500, 600, ...unionArray] 78 let expectedTuple = ["first", 2, true, 100, 200, "first", 2, true] 79 let tuple2 = [...tuple, 100, 200, ...tuple]
|
| D | SpreadExpressions_ResizableArray.ets | 51 let expectedAssignment : Int[] = [100, 200, 77, 88, 99, 400, 600, 77, 88, 99] 53 arrayAssignment = [100, 200, ...intArray, 400, 600, ...intArray] 64 let expectedUnion : unionType[] = [100, 200, "first", "second", 500, 600, "first", "second"] 65 let arrayUnion: unionType[] = [100, 200, ...unionArray, 500, 600, ...unionArray] 78 let expectedTuple = ["first", 2, true, 100, 200, "first", 2, true] 79 let tuple2 = [...tuple, 100, 200, ...tuple]
|
| /arkcompiler/ets_runtime/test/moduletest/proxyget/ |
| D | proxyget.js | 55 return 200; 77 return 200; 99 return 200; 139 return 200; 155 value: 200, 161 return 200; 177 value: 200, 181 return 200;
|
| /arkcompiler/ets_runtime/test/moduletest/icnotfoundtest/ |
| D | icnotfoundtest.js | 33 for (let i = 0 ; i < 200; i++) { 56 for (let i = 0 ; i < 200; i++) { 82 for (let i = 0 ; i < 200; i++) { 112 for (let i = 0 ; i < 200; i++) { 143 for (let i = 0 ; i < 200; i++) { 166 for (let i = 0; i < 200; i++) { 188 for (let i = 0; i < 200; i++) { 210 for (let i = 0; i < 200; i++) { 236 for (let i = 0 ; i < 200; i++) { 259 for (let i = 0 ; i < 200; i++) {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/07.interface_inheritance/multi_layer_interface/complex_inheritance/ |
| D | complex_inheritance_30.ets | 79 return this.value + 200; 84 const c = new C(200); 86 assertEQ(c.value, 200); 88 assertEQ(c.greet(), "Hello, 200")
|
| /arkcompiler/ets_runtime/test/aottest/icnotfound/ |
| D | icnotfound.js | 33 for (let i = 0 ; i < 200; i++) { 56 for (let i = 0 ; i < 200; i++) { 82 for (let i = 0 ; i < 200; i++) { 112 for (let i = 0 ; i < 200; i++) { 143 for (let i = 0 ; i < 200; i++) { 166 for (let i = 0; i < 200; i++) { 188 for (let i = 0; i < 200; i++) { 210 for (let i = 0; i < 200; i++) { 236 for (let i = 0 ; i < 200; i++) {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/18.annotations/02.using_annotations/01.using_single_field_annotations/ |
| D | annotation_places_single_arrays.params.yaml | 19 [100, 200, 300] 39 [[100, 200, 300], [100, 200, 300]]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/arkts/@arkts/math/Decimal/ |
| D | sumTests.ets | 50 arktest.assertEQ(Decimal.sum(100, 200, 300).valueOf(), expected.valueOf()); 51 arktest.assertEQ(Decimal.sum('100', '200', '300').valueOf(), expected.valueOf()); 52 …arktest.assertEQ(Decimal.sum(new Decimal(100), new Decimal(200), new Decimal(300)).valueOf(), expe… 53 arktest.assertEQ(Decimal.sum(100, '200', new Decimal(300)).valueOf(), expected.valueOf()); 61 arktest.assertEQ(Decimal.sum(100, 200, NaN).valueOf(), expected.valueOf()); 71 arktest.assertEQ(Decimal.sum(100, 200, 'Infinity').valueOf(), expected.valueOf()); 81 arktest.assertEQ(Decimal.sum(100, 200, '-Infinity').valueOf(), expected.valueOf());
|
| /arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
| D | recipe137.md | 20 globalThis.abc = 200 35 M.abc = 200
|
| /arkcompiler/ets_runtime/test/jittest/icnotfound/ |
| D | icnotfound.js | 33 for (let i = 0 ; i < 200; i++) { 56 for (let i = 0 ; i < 200; i++) { 82 for (let i = 0 ; i < 200; i++) { 112 for (let i = 0 ; i < 200; i++) { 143 for (let i = 0 ; i < 200; i++) { 166 for (let i = 0; i < 200; i++) { 188 for (let i = 0; i < 200; i++) { 210 for (let i = 0; i < 200; i++) { 236 for (let i = 0 ; i < 200; i++) {
|
| /arkcompiler/ets_runtime/test/jittest/constructor/ |
| D | expect_output.txt | 17 200 24 200
|
| /arkcompiler/ets_runtime/test/quickfix/multi_patch/ |
| D | module_modify.js | 16 export var a = 200 18 var b = 200
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/containers/array_blocking_queue/ |
| D | ArrayBlockingQueue_AddTest.ets | 22 let queueInt: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200); 23 let queueIntPopN: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200); 30 let queueIntAdd: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200); 38 let queueStrAdd: ArrayBlockingQueue<String> = new ArrayBlockingQueue<String>(200);
|
| D | ArrayBlockingQueue_PopTest.ets | 25 let queueInt: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200); 26 let queueObj: ArrayBlockingQueue<Object> = new ArrayBlockingQueue<Object>(200); 27 let queueStr: ArrayBlockingQueue<String> = new ArrayBlockingQueue<String>(200); 28 let queueIntPopN: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200); 45 let queueIntPop1: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200); 57 let queueIntPop2: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200); 84 let queueIntPop: ArrayBlockingQueue<int> = new ArrayBlockingQueue<int>(200);
|
| /arkcompiler/ets_runtime/test/moduletest/createobject/ |
| D | expect_output.txt | 28 200 29 200
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/18.annotations/02.using_annotations/ |
| D | annotation_places_arrays.params.yaml | 21 [100, 200, 300] 49 [[100, 200, 300], [100, 200, 300]]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/29.assignment/03.left_hand_side_expressions/ |
| D | left_func.ets | 26 getNumber() = 200; 27 assertEQ(getNumber(), 200);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/11.constant_to_enum_conversions/ |
| D | int2enum_n.params.yaml | 17 const s: int = 200 22 let s: int = 200
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | js_handle_test.cpp | 66 for (int i = 300; i > 200; i--) { in HWTEST_F_L0() 71 for (int i = 0; i <= 200; i++) { in HWTEST_F_L0() 93 for (int i = 512; i > 200; i--) { in HWTEST_F_L0() 111 for (int i = 767; i > 200; i--) { in HWTEST_F_L0() 118 for (int i = 200; i < 400; i++) { in HWTEST_F_L0() 178 for (int i = 600; i > 200; i--) { in HWTEST_F_L0() 184 for (int i = 0; i <= 200; i++) { in HWTEST_F_L0()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/03.class_extension_clause/initialize_members/ |
| D | initialize_members_32.ets | 25 public childField1 : number = 200; 31 assertEQ(x, 200);
|