Home
last modified time | relevance | path

Searched full:456 (Results 1 – 25 of 144) sorted by relevance

123456

/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dtypeinference_function_generic.ets17 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/
Dtest-ts-class-auto-accessor-3-expected.txt3 456
4 456
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/namespace_tests/
Dnamespace_execution_statements_test02.ets65 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/
Dmixed_nested_assertion_letter_number_quantifier_match-expected.txt1 ["456","654","123","456"]
Dmixed_nested_assertion_letter_number_quantifier_matchAll-expected.txt1 [["456"],["654"],["123"],["456"]]
Dmatchall_find_numbers.js16 const str = "There are 123 apples and 456 oranges.";
18 print(JSON.stringify(matches)); // 123,456
Dmatchall_extract_phone_numbers.js16 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/
DLightWeightMapGetKeyAtTest.ets40 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);
DLightWeightMapRemoveAtTest.ets39 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);
DLightWeightMapSetValueAtGetValueAtTest.ets48 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/
Dclass_implementation_multi_inheritance_interface_08.ets26 return 456;
34 return 456;
44 assertEQ(parent.speak(), 456);
Dclass_implementation_multi_inheritance_interface_07.ets30 return 456;
36 assertEQ(bird.speak(), 456);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/
DRegExpStaticProperties.ets21 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/
Dobfuscate-file1_expected.txt34 const v1 = q('123', '456');
39 t('123', '456');
40 const w1 = t('123', '456');
Dobfuscate-file1.ts54 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/
DTreeMapHasKeyHasValueSetAllForEachTest.ets57 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");
DTreeMapKeysValuesIteratorTest.ets46 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/
DLightWeightSetEntriesTest.ets35 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/
DTreeSetEntriesTest.ets38 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/
Dunion_field_access.ets20 public prop4: Long = 456;
40 arktest.assertEQ(a.prop4, 456, 'expected 456, but got ' + a.prop4);
Dunion_field_access_with_inheritance.ets20 public prop4: Long = 456;
45 arktest.assertEQ(a.prop4, 456, 'expected 456, but got ' + a.prop4);
/arkcompiler/ets_frontend/es2panda/test/parser/binder/debugInfo/
Dsendable-lexvar-name-1.ts29 closureStr = "456";
30 closureNum = 456;
Dsendable-lexvar-name-2.ts39 closureStr = "456";
40 closureNum = 456;
/arkcompiler/ets_runtime/test/moduletest/arrayjoin/
Dexpect_output.txt29 proxy1: 456
30 proxy2: 123,456
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/regression/
Dverify_generics.ets63 console.println(bar<string>("456").charAt(1));
70 console.println(myX.bar("456").charAt(1));
71 console.println(myY.bar<string>("456").charAt(1));

123456