| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | typeinference_function_generic.ets | 17 fn1("123", "456") 20 fn2("123", "456") 23 fn3("123", "456") 26 fn4("123", "456") 30 fn5(v5,"456") 33 fn6("123","456","321") 36 fn7("123","456")
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/classes/ |
| D | test-ts-class-auto-accessor-3-expected.txt | 3 456 4 456
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/namespace_tests/ |
| D | namespace_execution_statements_test02.ets | 65 count = 456; 76 MySpace.count = 456; 77 assertEQ(MySpace.count, 456, "Count should be updated to 456 outside namespace") 91 assertEQ(MySpace.count, 123, "Count should be updated to 456")
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/regex/ |
| D | mixed_nested_assertion_letter_number_quantifier_match-expected.txt | 1 ["456","654","123","456"]
|
| D | mixed_nested_assertion_letter_number_quantifier_matchAll-expected.txt | 1 [["456"],["654"],["123"],["456"]]
|
| D | matchall_find_numbers.js | 16 const str = "There are 123 apples and 456 oranges."; 18 print(JSON.stringify(matches)); // 123,456
|
| D | matchall_extract_phone_numbers.js | 16 const str = "Call us at (123) 456-7890 or (987) 654-3210."; 18 print(JSON.stringify(matches)); // (123) 456-7890,(987) 654-3210
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/LightWeightMap/ |
| D | LightWeightMapGetKeyAtTest.ets | 40 lightWeightMap.set("test", 456); 49 lightWeightMap.set("test", 456); 58 lightWeightMap.set("test", 456); 70 lightWeightMap.set("test", 456); 91 lightWeightMap.set("test", 456); 100 lightWeightMap.set("test", 456);
|
| D | LightWeightMapRemoveAtTest.ets | 39 lightWeightMap.set("test", 456); 49 lightWeightMap.set("test", 456); 59 lightWeightMap.set("test", 456); 69 lightWeightMap.set("test", 456); 88 lightWeightMap.set("test", 456); 98 lightWeightMap.set("test", 456);
|
| D | LightWeightMapSetValueAtGetValueAtTest.ets | 48 lightWeightMap.set("test", 456); 59 lightWeightMap.set("test", 456); 70 lightWeightMap.set("test", 456); 83 lightWeightMap.set("test", 456); 106 lightWeightMap.set("test", 456); 117 lightWeightMap.set("test", 456); 128 lightWeightMap.set("test", 456);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/07.interface_inheritance/Interface_inheritance_class_implementation/overriding_the_default_method/ |
| D | class_implementation_multi_inheritance_interface_08.ets | 26 return 456; 34 return 456; 44 assertEQ(parent.speak(), 456);
|
| D | class_implementation_multi_inheritance_interface_07.ets | 30 return 456; 36 assertEQ(bird.speak(), 456);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/ |
| D | RegExpStaticProperties.ets | 21 regExpObj10.exec("abc123.456def"); 30 testResult = checkTestResult(RegExp.$3, "456") 58 testResult = checkTestResult(RegExp.input, "abc123.456def") 62 testResult = checkTestResult(RegExp.$_get("$_"), "abc123.456def") 74 testResult = checkTestResult(RegExp.lastParen, "456") 78 testResult = checkTestResult(RegExp.$_get("$+"), "456") 175 "abc123.456def".replace(regExpObj10, "whocares"); 184 testResult = checkTestResult(RegExp.$3, "456") 212 testResult = checkTestResult(RegExp.input, "abc123.456def") 216 testResult = checkTestResult(RegExp.$_get("$_"), "abc123.456def") [all …]
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/keepPaths/SourceCode/ |
| D | obfuscate-file1_expected.txt | 34 const v1 = q('123', '456'); 39 t('123', '456'); 40 const w1 = t('123', '456');
|
| D | obfuscate-file1.ts | 54 const ans1 = TempFoo1('123','456'); 59 TempFoo2('123','456'); 60 const ans2 = TempFoo2('123','456');
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/TreeMap/ |
| D | TreeMapHasKeyHasValueSetAllForEachTest.ets | 57 let hasV = treeMap.hasValue("456"); 96 treeMap.set("HIG", "456"); 115 treeMap.set("bb", 456); 118 if (treeMap.get("aa") == 123 && treeMap.get("bb") == 456) { 131 treeMap.set("bb", "456"); 134 flag = treeMap.get("aa") === "123" && treeMap.get("bb") === "456"; 145 treeMap.set("bb", "456"); 159 treeMap.set("bb", "456");
|
| D | TreeMapKeysValuesIteratorTest.ets | 46 treeMap.set("bb", "456"); 68 treeMap.set("bb", "456"); 71 assertEQ(it.next().value, "456", "The treeMap should return the correct value"); 90 treeMap.set("bb", 456); 101 let strAll = "aa,123,bb,456,cc,789,dd,112";
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/LightWeightSet/ |
| D | LightWeightSetEntriesTest.ets | 35 lightWeightSet.add(456); 46 let strAll = "123,123,222,222,333,333,456,456";
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/TreeSet/ |
| D | TreeSetEntriesTest.ets | 38 treeSet.add(456); 49 let strAll = "123,123,222,222,333,333,456,456";
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-common-tests/unions/ |
| D | union_field_access.ets | 20 public prop4: Long = 456; 40 arktest.assertEQ(a.prop4, 456, 'expected 456, but got ' + a.prop4);
|
| D | union_field_access_with_inheritance.ets | 20 public prop4: Long = 456; 45 arktest.assertEQ(a.prop4, 456, 'expected 456, but got ' + a.prop4);
|
| /arkcompiler/ets_frontend/es2panda/test/parser/binder/debugInfo/ |
| D | sendable-lexvar-name-1.ts | 29 closureStr = "456"; 30 closureNum = 456;
|
| D | sendable-lexvar-name-2.ts | 39 closureStr = "456"; 40 closureNum = 456;
|
| /arkcompiler/ets_runtime/test/moduletest/arrayjoin/ |
| D | expect_output.txt | 29 proxy1: 456 30 proxy2: 123,456
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/regression/ |
| D | verify_generics.ets | 63 console.println(bar<string>("456").charAt(1)); 70 console.println(myX.bar("456").charAt(1)); 71 console.println(myY.bar<string>("456").charAt(1));
|