| /arkcompiler/runtime_core/static_core/libpandabase/tests/ |
| H A D | utf_test.cpp | 236 const std::vector<uint8_t> v2 {0x7fU, 0x00U}; in TEST() 237 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) < 0L); in TEST() 242 const std::vector<uint8_t> v2 {0x00U}; in TEST() 243 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) > 0L); in TEST() 248 const std::vector<uint8_t> v2 {0x7fU, 0x00U}; in TEST() 249 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) == 0U); in TEST() 254 const std::vector<uint8_t> v2 {0x01U, 0x70U, 0x00U}; in TEST() 255 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) > 0L); in TEST() 260 const std::vector<uint8_t> v2 {0x01U, 0x73U, 0x00U}; in TEST() 261 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2 in TEST() [all...] |
| /arkcompiler/runtime_core/libpandabase/tests/ |
| H A D | utf_test.cpp | 332 const std::vector<uint8_t> v2 {0x7f, 0x00}; in HWTEST() 333 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) < 0); in HWTEST() 338 const std::vector<uint8_t> v2 {0x00}; in HWTEST() 339 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) > 0); in HWTEST() 344 const std::vector<uint8_t> v2 {0x7f, 0x00}; in HWTEST() 345 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) == 0); in HWTEST() 350 const std::vector<uint8_t> v2 {0x01, 0x70, 0x00}; in HWTEST() 351 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2.data()) > 0); in HWTEST() 356 const std::vector<uint8_t> v2 {0x01, 0x73, 0x00}; in HWTEST() 357 EXPECT_TRUE(CompareMUtf8ToMUtf8(v1.data(), v2 in HWTEST() [all...] |
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| H A D | math_helpers_test.cpp | 168 T v2 = GetNaN<T>(); in TestFcmpl() local 169 EXPECT_EQ(fcmpl<T>()(v1, v2), -1); in TestFcmpl() 174 T v2 = 1.0; in TestFcmpl() local 175 EXPECT_EQ(fcmpl<T>()(v1, v2), -1); in TestFcmpl() 180 T v2 = GetNaN<T>(); in TestFcmpl() local 181 EXPECT_EQ(fcmpl<T>()(v1, v2), -1); in TestFcmpl() 187 T v2 = 2.0; in TestFcmpl() local 188 EXPECT_EQ(fcmpl<T>()(v1, v2), -1); in TestFcmpl() 193 T v2 = v1; in TestFcmpl() local 194 EXPECT_EQ(fcmpl<T>()(v1, v2), in TestFcmpl() 200 T v2 = 1.0; TestFcmpl() local 214 T v2 = GetNaN<T>(); TestFcmpg() local 220 T v2 = 1.0; TestFcmpg() local 226 T v2 = GetNaN<T>(); TestFcmpg() local 233 T v2 = 2.0; TestFcmpg() local 239 T v2 = v1; TestFcmpg() local 246 T v2 = 1.0; TestFcmpg() local [all...] |
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
| H A D | mpl_int_val.h | 487 inline bool operator==(const IntVal &v1, int64 v2) 489 return v1.GetExtValue() == v2; 492 inline bool operator==(int64 v1, const IntVal &v2) 494 return v2 == v1; 497 inline bool operator!=(const IntVal &v1, int64 v2) 499 return !(v1 == v2); 502 inline bool operator!=(int64 v1, const IntVal &v2) 504 return !(v2 == v1); 540 inline IntVal operator+(const IntVal &v1, uint64 v2) 542 return v1 + IntVal(v2, v [all...] |
| /arkcompiler/ets_runtime/test/moduletest/rangeerror/ |
| H A D | rangeerror.js | 25 for(var v2 = 0; v2 < 10000; ++v2) { 26 v0 += v0 + v2 + v0 + v1 + v2 + "";
|
| /arkcompiler/runtime_core/static_core/verification/value/tests/ |
| H A D | variables_test.cpp | 28 auto v2 = vars.NewVar(); in TEST_F() local 30 EXPECT_TRUE(v1 != v2); in TEST_F() 36 EXPECT_TRUE(v3 != v2 && v3 != v1 && v3 != v4); in TEST_F() 48 ForEach(vars.AllVariables(), [&count, &v1, &v2, &v4, &v5](auto v) { in TEST_F() 50 EXPECT_TRUE(v == v1 || v == v2 || v == v4 || v == v5); in TEST_F()
|
| /arkcompiler/ets_runtime/test/moduletest/ictest/ |
| H A D | ictest.js | 37 const v2 = ("string").match(ArrayBuffer) 42 this.concat(ArrayBuffer, v2, ArrayBuffer); 43 return v2 112 let v2 = new c2(); 115 v2.y = 42;
|
| /arkcompiler/ets_runtime/test/moduletest/arraymap/ |
| H A D | arraymap.js | 48 const v2 = [65537,-1,4096,-9007199254740990,-268435456,6,-29705,128,-6]; 50 v2["pop"](); 53 let a = v2.map(f3());
|
| /arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldfix/coldfix-throwerror/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotfix/hotfix-throwerror/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotreload/hotreload-throwerror/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/11/coldfix/coldfix-throwerror/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/11/coldreload/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/11/hotreload/hotreload-throwerror/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldreload/modify-export-3/ |
| H A D | base.js | 17 function v2() { print("v2") } function 19 export {v1, v2}
|
| /arkcompiler/ets_frontend/es2panda/test/patch/11/coldfix/coldfix-throwerror/modify-export-1/ |
| H A D | base.js | 17 function v2() { print("v2") } function 21 v2 as base,
|
| /arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/modify-export-1/ |
| H A D | base_mod.js | 19 function v2() { print("v2") } function 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
| H A D | base.js | 17 function v2() { print("v2") } function 21 v2 as base,
|
| /arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/modify-export-2/ |
| H A D | base.js | 17 function v2() { print("v2") } function 21 v2 as base,
|
| /arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldfix/coldfix-throwerror/modify-export-1/ |
| H A D | base_mod.js | 19 function v2() { print("v2") } function 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
| H A D | base.js | 17 function v2() { print("v2") } function 21 v2 as base,
|
| /arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldfix/coldfix-throwerror/modify-export-2/ |
| H A D | base.js | 17 function v2() { print("v2") } function 21 v2 as base,
|
| /arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotfix/hotfix-throwerror/modify-export-1/ |
| H A D | base.js | 17 function v2() { print("v2") } function 21 v2 as base,
|
| H A D | base_mod.js | 19 function v2() { print("v2") } function 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|